diff --git a/DEPS b/DEPS index c9d9d8cf86ac2..a8a365a6e0094 100644 --- a/DEPS +++ b/DEPS @@ -51,7 +51,7 @@ vars = { 'dart_revision': '358d0d1aa3e7ebe550ebc343aa795c7f4c136342', # WARNING: DO NOT EDIT MANUALLY - # The lines between blank lines above and below are generated by a script. See create_updated_flutter_deps.py + # The lines between blank lines above and below are generated by a script. See ../tools/dart/create_updated_flutter_deps.py 'dart_binaryen_rev': '7769139efbe818c7ba36d1a382db5114ebee9df8', 'dart_boringssl_gen_rev': 'ced85ef0a00bbca77ce5a91261a5f2ae61b1e62f', 'dart_boringssl_rev': '87f316d7748268eb56f2dc147bd593254ae93198', diff --git a/ci/licenses.sh b/ci/licenses.sh index 87125c9afdb28..90053c9e74f17 100755 --- a/ci/licenses.sh +++ b/ci/licenses.sh @@ -35,14 +35,18 @@ PATH="$DART_BIN:$PATH" # Use: # env VERBOSE=1 ./ci/licenses.sh -# to turn on verbose progress report printing. +# to turn on verbose progress report printing. Set it to 2 to also output +# information about which patterns are taking the most time. QUIET="--quiet" if [[ "${VERBOSE}" == "1" ]]; then QUIET="" fi +if [[ "${VERBOSE}" == "2" ]]; then + QUIET="--verbose" +fi echo "Verifying license script is still happy..." -echo "Using pub from $(command -v pub), dart from $(command -v dart)" +echo "Using dart from: $(command -v dart)" untracked_files="$(cd "$SRC_DIR/flutter"; git status --ignored --short | grep -E "^!" | awk "{print\$2}")" untracked_count="$(echo "$untracked_files" | wc -l)" @@ -58,6 +62,12 @@ fi dart --version +# Runs the tests for the license script. +function run_tests() ( + cd "$SRC_DIR/flutter/tools/licenses" + find -name "*_test.dart" | xargs -n 1 dart --enable-asserts +) + # Collects the license information from the repo. # Runs in a subshell. function collect_licenses() ( @@ -117,11 +127,29 @@ function verify_licenses() ( exitStatus=1 fi + echo "Verifying excluded files list..." + if ! cmp -s "flutter/ci/licenses_golden/excluded_files" "out/license_script_output/excluded_files"; then + echo "============================= ERROR =============================" + echo "The license is excluding a different number of files than previously." + echo "This is only expected when new non-source files have been introduced." + echo "Verify that all the newly ignored files are definitely not shipped with" + echo "any binaries that we compile (including impellerc and Wasm)." + echo "If the changes look correct, update this file:" + echo " ci/licenses_golden/excluded_files" + echo "For more information, see the script in:" + echo " https://github.com/flutter/engine/tree/main/tools/licenses" + echo "" + diff -U 6 "flutter/ci/licenses_golden/excluded_files" "out/license_script_output/excluded_files" + echo "=================================================================" + echo "" + exitStatus=1 + fi + echo "Checking license count in licenses_flutter..." local actualLicenseCount actualLicenseCount="$(tail -n 1 flutter/ci/licenses_golden/licenses_flutter | tr -dc '0-9')" - local expectedLicenseCount=19 # When changing this number: Update the error message below as well describing all expected license types. + local expectedLicenseCount=19 # When changing this number: Update the error message below as well describing the newly expected license types. if [[ $actualLicenseCount -ne $expectedLicenseCount ]]; then echo "=============================== ERROR ===============================" @@ -145,4 +173,5 @@ function verify_licenses() ( return $exitStatus ) +run_tests verify_licenses diff --git a/ci/licenses_golden/excluded_files b/ci/licenses_golden/excluded_files new file mode 100644 index 0000000000000..21ca7e94381bd --- /dev/null +++ b/ci/licenses_golden/excluded_files @@ -0,0 +1,2913 @@ +../../../.clang-format +../../../.git +../../../.gitattributes +../../../.github +../../../.gitignore +../../../.gn +../../../.ycm_extra_conf.py +../../../AUTHORS +../../../CODEOWNERS +../../../README.md +../../../build +../../../build_overrides +../../../buildtools +../../../flutter/.ci.yaml +../../../flutter/.clang-format +../../../flutter/.clang-tidy +../../../flutter/.git +../../../flutter/.gitattributes +../../../flutter/.github +../../../flutter/.gitignore +../../../flutter/.style.yapf +../../../flutter/AUTHORS +../../../flutter/CONTRIBUTING.md +../../../flutter/DEPS +../../../flutter/Doxyfile +../../../flutter/README.md +../../../flutter/analysis_options.yaml +../../../flutter/build +../../../flutter/ci +../../../flutter/common/README.md +../../../flutter/display_list/display_list_canvas_unittests.cc +../../../flutter/display_list/display_list_color_filter_unittests.cc +../../../flutter/display_list/display_list_color_source_unittests.cc +../../../flutter/display_list/display_list_color_unittests.cc +../../../flutter/display_list/display_list_complexity_unittests.cc +../../../flutter/display_list/display_list_enum_unittests.cc +../../../flutter/display_list/display_list_image_filter_unittests.cc +../../../flutter/display_list/display_list_mask_filter_unittests.cc +../../../flutter/display_list/display_list_matrix_clip_tracker_unittests.cc +../../../flutter/display_list/display_list_paint_unittests.cc +../../../flutter/display_list/display_list_path_effect_unittests.cc +../../../flutter/display_list/display_list_unittests.cc +../../../flutter/display_list/display_list_utils_unittests.cc +../../../flutter/display_list/display_list_vertices_unittests.cc +../../../flutter/docs +../../../flutter/examples +../../../flutter/flow/README.md +../../../flutter/flow/diff_context_unittests.cc +../../../flutter/flow/embedded_view_params_unittests.cc +../../../flutter/flow/flow_run_all_unittests.cc +../../../flutter/flow/frame_timings_recorder_unittests.cc +../../../flutter/flow/gl_context_switch_unittests.cc +../../../flutter/flow/instrumentation_unittests.cc +../../../flutter/flow/layers/backdrop_filter_layer_unittests.cc +../../../flutter/flow/layers/checkerboard_layertree_unittests.cc +../../../flutter/flow/layers/clip_path_layer_unittests.cc +../../../flutter/flow/layers/clip_rect_layer_unittests.cc +../../../flutter/flow/layers/clip_rrect_layer_unittests.cc +../../../flutter/flow/layers/color_filter_layer_unittests.cc +../../../flutter/flow/layers/container_layer_unittests.cc +../../../flutter/flow/layers/display_list_layer_unittests.cc +../../../flutter/flow/layers/image_filter_layer_unittests.cc +../../../flutter/flow/layers/layer_state_stack_unittests.cc +../../../flutter/flow/layers/layer_tree_unittests.cc +../../../flutter/flow/layers/offscreen_surface_unittests.cc +../../../flutter/flow/layers/opacity_layer_unittests.cc +../../../flutter/flow/layers/performance_overlay_layer_unittests.cc +../../../flutter/flow/layers/physical_shape_layer_unittests.cc +../../../flutter/flow/layers/platform_view_layer_unittests.cc +../../../flutter/flow/layers/shader_mask_layer_unittests.cc +../../../flutter/flow/layers/texture_layer_unittests.cc +../../../flutter/flow/layers/transform_layer_unittests.cc +../../../flutter/flow/mutators_stack_unittests.cc +../../../flutter/flow/raster_cache_unittests.cc +../../../flutter/flow/rtree_unittests.cc +../../../flutter/flow/skia_gpu_object_unittests.cc +../../../flutter/flow/surface_frame_unittests.cc +../../../flutter/flow/testing +../../../flutter/flow/texture_unittests.cc +../../../flutter/flutter_frontend_server +../../../flutter/fml/ascii_trie_unittests.cc +../../../flutter/fml/backtrace_unittests.cc +../../../flutter/fml/base32_unittest.cc +../../../flutter/fml/command_line_unittest.cc +../../../flutter/fml/container_unittests.cc +../../../flutter/fml/endianness_unittests.cc +../../../flutter/fml/file_unittest.cc +../../../flutter/fml/hash_combine_unittests.cc +../../../flutter/fml/hex_codec_unittest.cc +../../../flutter/fml/logging_unittests.cc +../../../flutter/fml/mapping_unittests.cc +../../../flutter/fml/math_unittests.cc +../../../flutter/fml/memory/ref_counted_unittest.cc +../../../flutter/fml/memory/task_runner_checker_unittest.cc +../../../flutter/fml/memory/weak_ptr_unittest.cc +../../../flutter/fml/message_loop_impl_unittests.cc +../../../flutter/fml/message_loop_task_queues_merge_unmerge_unittests.cc +../../../flutter/fml/message_loop_task_queues_unittests.cc +../../../flutter/fml/message_loop_unittests.cc +../../../flutter/fml/paths_unittests.cc +../../../flutter/fml/platform/darwin/cf_utils_unittests.mm +../../../flutter/fml/platform/darwin/string_range_sanitization_unittests.mm +../../../flutter/fml/platform/win/file_win_unittests.cc +../../../flutter/fml/platform/win/wstring_conversion_unittests.cc +../../../flutter/fml/raster_thread_merger_unittests.cc +../../../flutter/fml/string_conversion_unittests.cc +../../../flutter/fml/synchronization/count_down_latch_unittests.cc +../../../flutter/fml/synchronization/semaphore_unittest.cc +../../../flutter/fml/synchronization/sync_switch_unittest.cc +../../../flutter/fml/synchronization/waitable_event_unittest.cc +../../../flutter/fml/task_source_unittests.cc +../../../flutter/fml/thread_local_unittests.cc +../../../flutter/fml/thread_unittests.cc +../../../flutter/fml/time/time_delta_unittest.cc +../../../flutter/fml/time/time_point_unittest.cc +../../../flutter/fml/time/time_unittest.cc +../../../flutter/impeller/.clang-format +../../../flutter/impeller/.gitignore +../../../flutter/impeller/README.md +../../../flutter/impeller/aiks/aiks_unittests.cc +../../../flutter/impeller/archivist/archivist_unittests.cc +../../../flutter/impeller/base/README.md +../../../flutter/impeller/base/base_unittests.cc +../../../flutter/impeller/blobcat/blobcat_unittests.cc +../../../flutter/impeller/compiler/README.md +../../../flutter/impeller/compiler/compiler_unittests.cc +../../../flutter/impeller/compiler/switches_unittests.cc +../../../flutter/impeller/display_list/display_list_unittests.cc +../../../flutter/impeller/docs +../../../flutter/impeller/entity/contents/filters/inputs/filter_input_unittests.cc +../../../flutter/impeller/entity/entity_unittests.cc +../../../flutter/impeller/fixtures +../../../flutter/impeller/geometry/README.md +../../../flutter/impeller/geometry/geometry_unittests.cc +../../../flutter/impeller/geometry/geometry_unittests.h +../../../flutter/impeller/image/README.md +../../../flutter/impeller/playground +../../../flutter/impeller/renderer/compute_unittests.cc +../../../flutter/impeller/renderer/device_buffer_unittests.cc +../../../flutter/impeller/renderer/host_buffer_unittests.cc +../../../flutter/impeller/renderer/pipeline_descriptor_unittests.cc +../../../flutter/impeller/renderer/renderer_unittests.cc +../../../flutter/impeller/runtime_stage/runtime_stage_unittests.cc +../../../flutter/impeller/scene/README.md +../../../flutter/impeller/scene/importer/importer_unittests.cc +../../../flutter/impeller/scene/scene_unittests.cc +../../../flutter/impeller/tessellator/dart/pubspec.yaml +../../../flutter/impeller/tessellator/tessellator_unittests.cc +../../../flutter/impeller/tools/build_metal_library.py +../../../flutter/impeller/tools/check_licenses.py +../../../flutter/impeller/tools/xxd.py +../../../flutter/impeller/typographer/typographer_unittests.cc +../../../flutter/lib/snapshot/libraries.json +../../../flutter/lib/snapshot/libraries.yaml +../../../flutter/lib/snapshot/pubspec.yaml +../../../flutter/lib/ui/analysis_options.yaml +../../../flutter/lib/ui/compositing/scene_builder_unittests.cc +../../../flutter/lib/ui/fixtures +../../../flutter/lib/ui/hooks_unittests.cc +../../../flutter/lib/ui/painting/image_decoder_unittests.cc +../../../flutter/lib/ui/painting/image_dispose_unittests.cc +../../../flutter/lib/ui/painting/image_encoding_unittests.cc +../../../flutter/lib/ui/painting/image_generator_registry_unittests.cc +../../../flutter/lib/ui/painting/paint_unittests.cc +../../../flutter/lib/ui/painting/path_unittests.cc +../../../flutter/lib/ui/painting/single_frame_codec_unittests.cc +../../../flutter/lib/ui/semantics/semantics_update_builder_unittests.cc +../../../flutter/lib/ui/window/platform_configuration_unittests.cc +../../../flutter/lib/ui/window/platform_message_response_dart_port_unittests.cc +../../../flutter/lib/ui/window/platform_message_response_dart_unittests.cc +../../../flutter/lib/ui/window/pointer_data_packet_converter_unittests.cc +../../../flutter/lib/ui/window/pointer_data_packet_unittests.cc +../../../flutter/lib/web_ui/.gitignore +../../../flutter/lib/web_ui/CODE_CONVENTIONS.md +../../../flutter/lib/web_ui/README.md +../../../flutter/lib/web_ui/analysis_options.yaml +../../../flutter/lib/web_ui/dart_test_chrome.yaml +../../../flutter/lib/web_ui/dart_test_edge.yaml +../../../flutter/lib/web_ui/dart_test_firefox.yaml +../../../flutter/lib/web_ui/dart_test_safari.yaml +../../../flutter/lib/web_ui/dev +../../../flutter/lib/web_ui/pubspec.yaml +../../../flutter/lib/web_ui/test +../../../flutter/prebuilts +../../../flutter/runtime/dart_isolate_unittests.cc +../../../flutter/runtime/dart_lifecycle_unittests.cc +../../../flutter/runtime/dart_plugin_registrant_unittests.cc +../../../flutter/runtime/dart_service_isolate_unittests.cc +../../../flutter/runtime/dart_vm_unittests.cc +../../../flutter/runtime/fixtures +../../../flutter/runtime/no_dart_plugin_registrant_unittests.cc +../../../flutter/runtime/type_conversions_unittests.cc +../../../flutter/shell/common/animator_unittests.cc +../../../flutter/shell/common/canvas_spy_unittests.cc +../../../flutter/shell/common/context_options_unittests.cc +../../../flutter/shell/common/engine_unittests.cc +../../../flutter/shell/common/fixtures +../../../flutter/shell/common/input_events_unittests.cc +../../../flutter/shell/common/persistent_cache_unittests.cc +../../../flutter/shell/common/pipeline_unittests.cc +../../../flutter/shell/common/rasterizer_unittests.cc +../../../flutter/shell/common/resource_cache_limit_calculator_unittests.cc +../../../flutter/shell/common/shell_fuchsia_unittests.cc +../../../flutter/shell/common/shell_io_manager_unittests.cc +../../../flutter/shell/common/shell_unittests.cc +../../../flutter/shell/common/switches_unittests.cc +../../../flutter/shell/common/variable_refresh_rate_display_unittests.cc +../../../flutter/shell/common/vsync_waiter_unittests.cc +../../../flutter/shell/platform/android/.gitignore +../../../flutter/shell/platform/android/android_context_gl_unittests.cc +../../../flutter/shell/platform/android/android_shell_holder_unittests.cc +../../../flutter/shell/platform/android/apk_asset_provider_unittests.cc +../../../flutter/shell/platform/android/external_view_embedder/external_view_embedder_unittests.cc +../../../flutter/shell/platform/android/external_view_embedder/surface_pool_unittests.cc +../../../flutter/shell/platform/android/flutter_shell_native_unittests.cc +../../../flutter/shell/platform/android/jni/jni_mock_unittest.cc +../../../flutter/shell/platform/android/platform_view_android_delegate/platform_view_android_delegate_unittests.cc +../../../flutter/shell/platform/android/test +../../../flutter/shell/platform/android/test_runner +../../../flutter/shell/platform/common/accessibility_bridge_unittests.cc +../../../flutter/shell/platform/common/client_wrapper/README +../../../flutter/shell/platform/common/client_wrapper/basic_message_channel_unittests.cc +../../../flutter/shell/platform/common/client_wrapper/encodable_value_unittests.cc +../../../flutter/shell/platform/common/client_wrapper/event_channel_unittests.cc +../../../flutter/shell/platform/common/client_wrapper/method_call_unittests.cc +../../../flutter/shell/platform/common/client_wrapper/method_channel_unittests.cc +../../../flutter/shell/platform/common/client_wrapper/method_result_functions_unittests.cc +../../../flutter/shell/platform/common/client_wrapper/plugin_registrar_unittests.cc +../../../flutter/shell/platform/common/client_wrapper/standard_message_codec_unittests.cc +../../../flutter/shell/platform/common/client_wrapper/standard_method_codec_unittests.cc +../../../flutter/shell/platform/common/client_wrapper/testing +../../../flutter/shell/platform/common/client_wrapper/texture_registrar_unittests.cc +../../../flutter/shell/platform/common/engine_switches_unittests.cc +../../../flutter/shell/platform/common/flutter_platform_node_delegate_unittests.cc +../../../flutter/shell/platform/common/geometry_unittests.cc +../../../flutter/shell/platform/common/incoming_message_dispatcher_unittests.cc +../../../flutter/shell/platform/common/json_message_codec_unittests.cc +../../../flutter/shell/platform/common/json_method_codec_unittests.cc +../../../flutter/shell/platform/common/path_utils_unittests.cc +../../../flutter/shell/platform/common/text_editing_delta_unittests.cc +../../../flutter/shell/platform/common/text_input_model_unittests.cc +../../../flutter/shell/platform/common/text_range_unittests.cc +../../../flutter/shell/platform/darwin/Doxyfile +../../../flutter/shell/platform/darwin/common/framework/Source/flutter_codecs_unittest.mm +../../../flutter/shell/platform/darwin/common/framework/Source/flutter_standard_codec_unittest.mm +../../../flutter/shell/platform/darwin/macos/framework/Source/fixtures +../../../flutter/shell/platform/embedder/fixtures +../../../flutter/shell/platform/embedder/platform_view_embedder_unittests.cc +../../../flutter/shell/platform/embedder/tests +../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/README.md +../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/analysis_options.yaml +../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/pubspec.yaml +../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/README.md +../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/analysis_options.yaml +../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/pubspec.yaml +../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/test +../../../flutter/shell/platform/fuchsia/dart-pkg/zircon_ffi/pubspec.yaml +../../../flutter/shell/platform/fuchsia/dart_runner/.gitignore +../../../flutter/shell/platform/fuchsia/dart_runner/README.md +../../../flutter/shell/platform/fuchsia/dart_runner/embedder/pubspec.yaml +../../../flutter/shell/platform/fuchsia/dart_runner/kernel/libraries.json +../../../flutter/shell/platform/fuchsia/dart_runner/kernel/libraries.yaml +../../../flutter/shell/platform/fuchsia/dart_runner/tests +../../../flutter/shell/platform/fuchsia/dart_runner/vmservice/analysis_options.yaml +../../../flutter/shell/platform/fuchsia/dart_runner/vmservice/pubspec.yaml +../../../flutter/shell/platform/fuchsia/flutter/README.md +../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge_unittest.cc +../../../flutter/shell/platform/fuchsia/flutter/build/asset_package.py +../../../flutter/shell/platform/fuchsia/flutter/build/gen_debug_wrapper_main.py +../../../flutter/shell/platform/fuchsia/flutter/component_v1_unittest.cc +../../../flutter/shell/platform/fuchsia/flutter/component_v2_unittest.cc +../../../flutter/shell/platform/fuchsia/flutter/focus_delegate_unittests.cc +../../../flutter/shell/platform/fuchsia/flutter/fuchsia_intl_unittest.cc +../../../flutter/shell/platform/fuchsia/flutter/kernel/analysis_options.yaml +../../../flutter/shell/platform/fuchsia/flutter/kernel/libraries.json +../../../flutter/shell/platform/fuchsia/flutter/kernel/libraries.yaml +../../../flutter/shell/platform/fuchsia/flutter/kernel/pubspec.yaml +../../../flutter/shell/platform/fuchsia/flutter/keyboard_unittest.cc +../../../flutter/shell/platform/fuchsia/flutter/platform_view_unittest.cc +../../../flutter/shell/platform/fuchsia/flutter/pointer_delegate_unittests.cc +../../../flutter/shell/platform/fuchsia/flutter/pointer_injector_delegate_unittest.cc +../../../flutter/shell/platform/fuchsia/flutter/runner_tzdata_missing_unittest.cc +../../../flutter/shell/platform/fuchsia/flutter/runner_tzdata_unittest.cc +../../../flutter/shell/platform/fuchsia/flutter/tests +../../../flutter/shell/platform/fuchsia/flutter/text_delegate_unittests.cc +../../../flutter/shell/platform/fuchsia/flutter/vsync_waiter_unittest.cc +../../../flutter/shell/platform/fuchsia/runtime/dart/profiler_symbols/analysis_options.yaml +../../../flutter/shell/platform/fuchsia/runtime/dart/profiler_symbols/pubspec.yaml +../../../flutter/shell/platform/fuchsia/runtime/dart/utils/build_info_unittests.cc +../../../flutter/shell/platform/fuchsia/unit_tests.md +../../../flutter/shell/platform/glfw/client_wrapper/flutter_engine_unittests.cc +../../../flutter/shell/platform/glfw/client_wrapper/flutter_window_controller_unittests.cc +../../../flutter/shell/platform/glfw/client_wrapper/flutter_window_unittests.cc +../../../flutter/shell/platform/glfw/client_wrapper/plugin_registrar_glfw_unittests.cc +../../../flutter/shell/platform/glfw/client_wrapper/testing +../../../flutter/shell/platform/linux/testing +../../../flutter/shell/platform/windows/accessibility_bridge_windows_unittests.cc +../../../flutter/shell/platform/windows/client_wrapper/dart_project_unittests.cc +../../../flutter/shell/platform/windows/client_wrapper/flutter_engine_unittests.cc +../../../flutter/shell/platform/windows/client_wrapper/flutter_view_controller_unittests.cc +../../../flutter/shell/platform/windows/client_wrapper/flutter_view_unittests.cc +../../../flutter/shell/platform/windows/client_wrapper/plugin_registrar_windows_unittests.cc +../../../flutter/shell/platform/windows/client_wrapper/testing +../../../flutter/shell/platform/windows/cursor_handler_unittests.cc +../../../flutter/shell/platform/windows/direct_manipulation_unittests.cc +../../../flutter/shell/platform/windows/dpi_utils_unittests.cc +../../../flutter/shell/platform/windows/fixtures +../../../flutter/shell/platform/windows/flutter_project_bundle_unittests.cc +../../../flutter/shell/platform/windows/flutter_window_unittests.cc +../../../flutter/shell/platform/windows/flutter_windows_engine_unittests.cc +../../../flutter/shell/platform/windows/flutter_windows_texture_registrar_unittests.cc +../../../flutter/shell/platform/windows/flutter_windows_unittests.cc +../../../flutter/shell/platform/windows/flutter_windows_view_unittests.cc +../../../flutter/shell/platform/windows/keyboard_key_channel_handler_unittests.cc +../../../flutter/shell/platform/windows/keyboard_key_embedder_handler_unittests.cc +../../../flutter/shell/platform/windows/keyboard_key_handler_unittests.cc +../../../flutter/shell/platform/windows/keyboard_unittests.cc +../../../flutter/shell/platform/windows/keyboard_utils_unittests.cc +../../../flutter/shell/platform/windows/platform_handler_unittests.cc +../../../flutter/shell/platform/windows/sequential_id_generator_unittests.cc +../../../flutter/shell/platform/windows/settings_plugin_unittests.cc +../../../flutter/shell/platform/windows/system_utils_unittests.cc +../../../flutter/shell/platform/windows/task_runner_unittests.cc +../../../flutter/shell/platform/windows/testing +../../../flutter/shell/platform/windows/text_input_plugin_unittest.cc +../../../flutter/shell/platform/windows/window_proc_delegate_manager_unittests.cc +../../../flutter/shell/platform/windows/window_unittests.cc +../../../flutter/shell/profiling/sampling_profiler_unittest.cc +../../../flutter/shell/testing +../../../flutter/shell/vmservice/.dart_tool +../../../flutter/shell/vmservice/pubspec.lock +../../../flutter/shell/vmservice/pubspec.yaml +../../../flutter/sky/packages/sky_engine/.gitignore +../../../flutter/sky/packages/sky_engine/LICENSE +../../../flutter/sky/packages/sky_engine/README.md +../../../flutter/sky/packages/sky_engine/lib/_embedder.yaml +../../../flutter/sky/packages/sky_engine/pubspec.yaml +../../../flutter/sky/tools/create_full_ios_framework.py +../../../flutter/sky/tools/create_ios_framework.py +../../../flutter/sky/tools/create_macos_framework.py +../../../flutter/sky/tools/create_macos_gen_snapshots.py +../../../flutter/sky/tools/create_xcframework.py +../../../flutter/sky/tools/dist_dart_pkg.py +../../../flutter/sky/tools/install_framework_headers.py +../../../flutter/sky/tools/objcopy.py +../../../flutter/sky/tools/roll/patch.py +../../../flutter/sky/tools/roll/roll.py +../../../flutter/sky/tools/roll/utils.py +../../../flutter/testing +../../../flutter/third_party/accessibility/README.md +../../../flutter/third_party/accessibility/ax/ax_enum_util_unittest.cc +../../../flutter/third_party/accessibility/ax/ax_event_generator_unittest.cc +../../../flutter/third_party/accessibility/ax/ax_node_data_unittest.cc +../../../flutter/third_party/accessibility/ax/ax_node_position_unittest.cc +../../../flutter/third_party/accessibility/ax/ax_range_unittest.cc +../../../flutter/third_party/accessibility/ax/ax_role_properties_unittest.cc +../../../flutter/third_party/accessibility/ax/ax_table_info_unittest.cc +../../../flutter/third_party/accessibility/ax/ax_tree_unittest.cc +../../../flutter/third_party/accessibility/ax/platform/ax_fragment_root_win_unittest.cc +../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_base_unittest.cc +../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_mac_unittest.h +../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_mac_unittest.mm +../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_unittest.cc +../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_unittest.h +../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_win_unittest.cc +../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_win_unittest.h +../../../flutter/third_party/accessibility/ax/platform/ax_unique_id_unittest.cc +../../../flutter/third_party/accessibility/base/logging_unittests.cc +../../../flutter/third_party/accessibility/base/numerics/README.md +../../../flutter/third_party/accessibility/base/string_utils_unittest.cc +../../../flutter/third_party/accessibility/base/test +../../../flutter/third_party/accessibility/base/win/display_unittest.cc +../../../flutter/third_party/accessibility/base/win/enum_variant_unittest.cc +../../../flutter/third_party/accessibility/base/win/scoped_bstr_unittest.cc +../../../flutter/third_party/accessibility/base/win/scoped_safearray_unittest.cc +../../../flutter/third_party/accessibility/base/win/scoped_variant_unittest.cc +../../../flutter/third_party/accessibility/base/win/variant_vector_unittest.cc +../../../flutter/third_party/accessibility/gfx/geometry/insets_unittest.cc +../../../flutter/third_party/accessibility/gfx/geometry/point_unittest.cc +../../../flutter/third_party/accessibility/gfx/geometry/rect_unittest.cc +../../../flutter/third_party/accessibility/gfx/geometry/size_unittest.cc +../../../flutter/third_party/accessibility/gfx/geometry/vector2d_unittest.cc +../../../flutter/third_party/accessibility/gfx/range/range_unittest.cc +../../../flutter/third_party/accessibility/gfx/test +../../../flutter/third_party/gn +../../../flutter/third_party/ninja +../../../flutter/third_party/test_shaders +../../../flutter/third_party/tonic/.clang-format +../../../flutter/third_party/tonic/AUTHORS +../../../flutter/third_party/tonic/PATENTS +../../../flutter/third_party/tonic/README.md +../../../flutter/third_party/tonic/filesystem/README.md +../../../flutter/third_party/tonic/filesystem/tests +../../../flutter/third_party/tonic/tests +../../../flutter/third_party/txt/.clang-format +../../../flutter/third_party/txt/.gitattributes +../../../flutter/third_party/txt/.gitignore +../../../flutter/third_party/txt/PATENTS +../../../flutter/third_party/txt/tests +../../../flutter/third_party/txt/third_party/fonts +../../../flutter/third_party/web_locale_keymap/CHANGELOG.md +../../../flutter/third_party/web_locale_keymap/README.md +../../../flutter/third_party/web_locale_keymap/pubspec.yaml +../../../flutter/third_party/web_locale_keymap/test +../../../flutter/third_party/web_unicode/README.md +../../../flutter/third_party/web_unicode/pubspec.yaml +../../../flutter/tools +../../../flutter/tools/licenses/.dart_tool +../../../flutter/tools/licenses/.gitignore +../../../flutter/tools/licenses/README.md +../../../flutter/tools/licenses/analysis_options.yaml +../../../flutter/tools/licenses/data +../../../flutter/tools/licenses/lib/README +../../../flutter/tools/licenses/pubspec.lock +../../../flutter/tools/licenses/pubspec.yaml +../../../flutter/tools/licenses/test +../../../flutter/web_sdk +../../../fuchsia/sdk/linux/.build-id +../../../fuchsia/sdk/linux/.versions +../../../fuchsia/sdk/linux/AUTHORS +../../../fuchsia/sdk/linux/PATENTS +../../../fuchsia/sdk/linux/README.md +../../../fuchsia/sdk/linux/arch/arm64/sysroot/dist/lib/asan-ubsan/ld.so.1 +../../../fuchsia/sdk/linux/arch/arm64/sysroot/dist/lib/asan/ld.so.1 +../../../fuchsia/sdk/linux/arch/arm64/sysroot/dist/lib/ld.so.1 +../../../fuchsia/sdk/linux/arch/x64/sysroot/dist/lib/asan-ubsan/ld.so.1 +../../../fuchsia/sdk/linux/arch/x64/sysroot/dist/lib/asan/ld.so.1 +../../../fuchsia/sdk/linux/arch/x64/sysroot/dist/lib/ld.so.1 +../../../fuchsia/sdk/linux/dart/fidl/meta.json +../../../fuchsia/sdk/linux/dart/fuchsia/meta.json +../../../fuchsia/sdk/linux/dart/fuchsia_component_test/meta.json +../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/testing +../../../fuchsia/sdk/linux/dart/fuchsia_inspect/meta.json +../../../fuchsia/sdk/linux/dart/fuchsia_logger/meta.json +../../../fuchsia/sdk/linux/dart/fuchsia_scenic/meta.json +../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/meta.json +../../../fuchsia/sdk/linux/dart/fuchsia_services/meta.json +../../../fuchsia/sdk/linux/dart/fuchsia_vfs/meta.json +../../../fuchsia/sdk/linux/dart/fuchsia_view/meta.json +../../../fuchsia/sdk/linux/dart/sl4f/meta.json +../../../fuchsia/sdk/linux/dart/zircon/meta.json +../../../fuchsia/sdk/linux/data/config/symbol-index/meta.json +../../../fuchsia/sdk/linux/docs +../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.gesture/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.semantics/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.virtualkeyboard/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.audio.effects/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.auth.oldtokens/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.auth/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.a2dp/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.fastpair/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.hfp/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo.test/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.camera/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.camera2.hal/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.camera2/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.castauth/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.castconfig/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.castremotecontrol/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.castsetup/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.castsysteminfo/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.castwindow/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.component.runner/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.component.test/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.component.types/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.component/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.data/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.debugdata/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.developer.tiles/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics.types/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.driver.test/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.element/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.factory.wlan/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.factory/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.agis/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.magma/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.adc/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.light/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.power.statecontrol/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.radar/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.hwinfo/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.images/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.input.virtualkeyboard/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.input/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.inspect/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.intl/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.io/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ldsvc/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.legacymetrics/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.location.namedplace/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.location.position/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.location.sensor/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.location/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.logger/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.bootstrap/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.thread/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.math/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.media.sounds/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.media.target/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.media/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.mediacodec/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.mem/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.memorypressure/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.metrics/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.migration/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.modular/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.net.http/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.net.interfaces/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.net.reachability/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.net.routes/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.net/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.power.clientlevel/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.power.profile/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.power.systemmode/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.process.lifecycle/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.process/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.recovery.ui/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.recovery/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.scenic.scheduling/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.session/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.settings.policy/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.settings/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.sys.test/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.sys/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.sysinfo/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.test/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.thermal/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.perfetto/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.provider/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity.control/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.brightness/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.observation.geometry/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer.augment/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.scene/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.types/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.ultrasound/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.unknown/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.update.channel/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.update.channelcontrol/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.update.config/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.update/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.url/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.version/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.weave/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.web/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.common/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedclient/meta.json +../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedconfiguration/meta.json +../../../fuchsia/sdk/linux/fidl/zx/meta.json +../../../fuchsia/sdk/linux/meta +../../../fuchsia/sdk/linux/pkg/async-cpp/meta.json +../../../fuchsia/sdk/linux/pkg/async-default/meta.json +../../../fuchsia/sdk/linux/pkg/async-loop-cpp/meta.json +../../../fuchsia/sdk/linux/pkg/async-loop-default/meta.json +../../../fuchsia/sdk/linux/pkg/async-loop-testing/include/lib/async-loop/testing +../../../fuchsia/sdk/linux/pkg/async-loop-testing/meta.json +../../../fuchsia/sdk/linux/pkg/async-loop/meta.json +../../../fuchsia/sdk/linux/pkg/async-testing/meta.json +../../../fuchsia/sdk/linux/pkg/async/meta.json +../../../fuchsia/sdk/linux/pkg/fdio/meta.json +../../../fuchsia/sdk/linux/pkg/fidl/meta.json +../../../fuchsia/sdk/linux/pkg/fidl_base/meta.json +../../../fuchsia/sdk/linux/pkg/fidl_cpp/meta.json +../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/meta.json +../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/meta.json +../../../fuchsia/sdk/linux/pkg/fidl_cpp_hlcpp_conversion/meta.json +../../../fuchsia/sdk/linux/pkg/fidl_cpp_natural_ostream/meta.json +../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/meta.json +../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/meta.json +../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/meta.json +../../../fuchsia/sdk/linux/pkg/fit-promise/meta.json +../../../fuchsia/sdk/linux/pkg/fit/meta.json +../../../fuchsia/sdk/linux/pkg/images_cpp/meta.json +../../../fuchsia/sdk/linux/pkg/inspect/meta.json +../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/meta.json +../../../fuchsia/sdk/linux/pkg/media_cpp/meta.json +../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/meta.json +../../../fuchsia/sdk/linux/pkg/memfs/meta.json +../../../fuchsia/sdk/linux/pkg/modular_cpp/meta.json +../../../fuchsia/sdk/linux/pkg/scenic_cpp/meta.json +../../../fuchsia/sdk/linux/pkg/scenic_cpp_testing/include/lib/ui/scenic/cpp/testing +../../../fuchsia/sdk/linux/pkg/scenic_cpp_testing/meta.json +../../../fuchsia/sdk/linux/pkg/stdcompat/meta.json +../../../fuchsia/sdk/linux/pkg/svc/meta.json +../../../fuchsia/sdk/linux/pkg/sync/meta.json +../../../fuchsia/sdk/linux/pkg/sys/testing +../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/include/lib/sys/component/cpp/testing +../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/meta.json +../../../fuchsia/sdk/linux/pkg/sys_cpp/meta.json +../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/include/lib/sys/cpp/testing +../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/meta.json +../../../fuchsia/sdk/linux/pkg/sys_inspect_cpp/meta.json +../../../fuchsia/sdk/linux/pkg/sys_service_cpp/meta.json +../../../fuchsia/sdk/linux/pkg/syslog/meta.json +../../../fuchsia/sdk/linux/pkg/syslog_structured_backend/meta.json +../../../fuchsia/sdk/linux/pkg/sysroot/meta.json +../../../fuchsia/sdk/linux/pkg/trace-engine/meta.json +../../../fuchsia/sdk/linux/pkg/trace-provider-so/meta.json +../../../fuchsia/sdk/linux/pkg/trace/meta.json +../../../fuchsia/sdk/linux/pkg/utf-utils/meta.json +../../../fuchsia/sdk/linux/pkg/vfs_cpp/meta.json +../../../fuchsia/sdk/linux/pkg/vulkan/meta.json +../../../fuchsia/sdk/linux/pkg/vulkan_layers/meta.json +../../../fuchsia/sdk/linux/pkg/zx/meta.json +../../../fuchsia/sdk/linux/tools +../../../fuchsia/sdk/linux/version_history.json +../../../gpu/README.md +../../../out +../../../third_party/abseil-cpp/.git +../../../third_party/abseil-cpp/.github +../../../third_party/abseil-cpp/ABSEIL_ISSUE_TEMPLATE.md +../../../third_party/abseil-cpp/AUTHORS +../../../third_party/abseil-cpp/BUILD.bazel +../../../third_party/abseil-cpp/CMake +../../../third_party/abseil-cpp/CMakeLists.txt +../../../third_party/abseil-cpp/CONTRIBUTING.md +../../../third_party/abseil-cpp/DIR_METADATA +../../../third_party/abseil-cpp/FAQ.md +../../../third_party/abseil-cpp/OWNERS +../../../third_party/abseil-cpp/README.chromium +../../../third_party/abseil-cpp/README.md +../../../third_party/abseil-cpp/UPGRADES.md +../../../third_party/abseil-cpp/WORKSPACE +../../../third_party/abseil-cpp/absl/BUILD.bazel +../../../third_party/abseil-cpp/absl/CMakeLists.txt +../../../third_party/abseil-cpp/absl/abseil.podspec.gen.py +../../../third_party/abseil-cpp/absl/algorithm/BUILD.bazel +../../../third_party/abseil-cpp/absl/algorithm/CMakeLists.txt +../../../third_party/abseil-cpp/absl/algorithm/algorithm_test.cc +../../../third_party/abseil-cpp/absl/algorithm/container_test.cc +../../../third_party/abseil-cpp/absl/base/BUILD.bazel +../../../third_party/abseil-cpp/absl/base/CMakeLists.txt +../../../third_party/abseil-cpp/absl/base/bit_cast_test.cc +../../../third_party/abseil-cpp/absl/base/call_once_test.cc +../../../third_party/abseil-cpp/absl/base/config_test.cc +../../../third_party/abseil-cpp/absl/base/exception_safety_testing_test.cc +../../../third_party/abseil-cpp/absl/base/inline_variable_test.cc +../../../third_party/abseil-cpp/absl/base/internal/atomic_hook_test.cc +../../../third_party/abseil-cpp/absl/base/internal/cmake_thread_test.cc +../../../third_party/abseil-cpp/absl/base/internal/endian_test.cc +../../../third_party/abseil-cpp/absl/base/internal/errno_saver_test.cc +../../../third_party/abseil-cpp/absl/base/internal/fast_type_id_test.cc +../../../third_party/abseil-cpp/absl/base/internal/low_level_alloc_test.cc +../../../third_party/abseil-cpp/absl/base/internal/prefetch_test.cc +../../../third_party/abseil-cpp/absl/base/internal/scoped_set_env_test.cc +../../../third_party/abseil-cpp/absl/base/internal/strerror_test.cc +../../../third_party/abseil-cpp/absl/base/internal/sysinfo_test.cc +../../../third_party/abseil-cpp/absl/base/internal/thread_identity_test.cc +../../../third_party/abseil-cpp/absl/base/internal/unique_small_name_test.cc +../../../third_party/abseil-cpp/absl/base/invoke_test.cc +../../../third_party/abseil-cpp/absl/base/log_severity_test.cc +../../../third_party/abseil-cpp/absl/base/optimization_test.cc +../../../third_party/abseil-cpp/absl/base/raw_logging_test.cc +../../../third_party/abseil-cpp/absl/base/throw_delegate_test.cc +../../../third_party/abseil-cpp/absl/cleanup/BUILD.bazel +../../../third_party/abseil-cpp/absl/cleanup/CMakeLists.txt +../../../third_party/abseil-cpp/absl/cleanup/cleanup_test.cc +../../../third_party/abseil-cpp/absl/container/BUILD.bazel +../../../third_party/abseil-cpp/absl/container/CMakeLists.txt +../../../third_party/abseil-cpp/absl/container/btree_test.cc +../../../third_party/abseil-cpp/absl/container/btree_test.h +../../../third_party/abseil-cpp/absl/container/fixed_array_exception_safety_test.cc +../../../third_party/abseil-cpp/absl/container/fixed_array_test.cc +../../../third_party/abseil-cpp/absl/container/flat_hash_map_test.cc +../../../third_party/abseil-cpp/absl/container/flat_hash_set_test.cc +../../../third_party/abseil-cpp/absl/container/inlined_vector_exception_safety_test.cc +../../../third_party/abseil-cpp/absl/container/inlined_vector_test.cc +../../../third_party/abseil-cpp/absl/container/internal/compressed_tuple_test.cc +../../../third_party/abseil-cpp/absl/container/internal/container_memory_test.cc +../../../third_party/abseil-cpp/absl/container/internal/hash_function_defaults_test.cc +../../../third_party/abseil-cpp/absl/container/internal/hash_policy_testing_test.cc +../../../third_party/abseil-cpp/absl/container/internal/hash_policy_traits_test.cc +../../../third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_test.cc +../../../third_party/abseil-cpp/absl/container/internal/layout_test.cc +../../../third_party/abseil-cpp/absl/container/internal/node_slot_policy_test.cc +../../../third_party/abseil-cpp/absl/container/internal/raw_hash_set_allocator_test.cc +../../../third_party/abseil-cpp/absl/container/internal/raw_hash_set_test.cc +../../../third_party/abseil-cpp/absl/container/internal/test_instance_tracker_test.cc +../../../third_party/abseil-cpp/absl/container/internal/unordered_map_constructor_test.h +../../../third_party/abseil-cpp/absl/container/internal/unordered_map_lookup_test.h +../../../third_party/abseil-cpp/absl/container/internal/unordered_map_members_test.h +../../../third_party/abseil-cpp/absl/container/internal/unordered_map_modifiers_test.h +../../../third_party/abseil-cpp/absl/container/internal/unordered_map_test.cc +../../../third_party/abseil-cpp/absl/container/internal/unordered_set_constructor_test.h +../../../third_party/abseil-cpp/absl/container/internal/unordered_set_lookup_test.h +../../../third_party/abseil-cpp/absl/container/internal/unordered_set_members_test.h +../../../third_party/abseil-cpp/absl/container/internal/unordered_set_modifiers_test.h +../../../third_party/abseil-cpp/absl/container/internal/unordered_set_test.cc +../../../third_party/abseil-cpp/absl/container/node_hash_map_test.cc +../../../third_party/abseil-cpp/absl/container/node_hash_set_test.cc +../../../third_party/abseil-cpp/absl/container/sample_element_size_test.cc +../../../third_party/abseil-cpp/absl/copts/AbseilConfigureCopts.cmake +../../../third_party/abseil-cpp/absl/copts/GENERATED_AbseilCopts.cmake +../../../third_party/abseil-cpp/absl/copts/GENERATED_copts.bzl +../../../third_party/abseil-cpp/absl/copts/configure_copts.bzl +../../../third_party/abseil-cpp/absl/copts/copts.py +../../../third_party/abseil-cpp/absl/copts/generate_copts.py +../../../third_party/abseil-cpp/absl/debugging/BUILD.bazel +../../../third_party/abseil-cpp/absl/debugging/CMakeLists.txt +../../../third_party/abseil-cpp/absl/debugging/failure_signal_handler_test.cc +../../../third_party/abseil-cpp/absl/debugging/internal/demangle_test.cc +../../../third_party/abseil-cpp/absl/debugging/internal/stack_consumption_test.cc +../../../third_party/abseil-cpp/absl/debugging/leak_check_fail_test.cc +../../../third_party/abseil-cpp/absl/debugging/leak_check_test.cc +../../../third_party/abseil-cpp/absl/debugging/symbolize_test.cc +../../../third_party/abseil-cpp/absl/flags/BUILD.bazel +../../../third_party/abseil-cpp/absl/flags/CMakeLists.txt +../../../third_party/abseil-cpp/absl/flags/commandlineflag_test.cc +../../../third_party/abseil-cpp/absl/flags/config_test.cc +../../../third_party/abseil-cpp/absl/flags/flag_test.cc +../../../third_party/abseil-cpp/absl/flags/internal/path_util_test.cc +../../../third_party/abseil-cpp/absl/flags/internal/program_name_test.cc +../../../third_party/abseil-cpp/absl/flags/internal/sequence_lock_test.cc +../../../third_party/abseil-cpp/absl/flags/internal/usage_test.cc +../../../third_party/abseil-cpp/absl/flags/marshalling_test.cc +../../../third_party/abseil-cpp/absl/flags/parse_test.cc +../../../third_party/abseil-cpp/absl/flags/reflection_test.cc +../../../third_party/abseil-cpp/absl/flags/usage_config_test.cc +../../../third_party/abseil-cpp/absl/functional/BUILD.bazel +../../../third_party/abseil-cpp/absl/functional/CMakeLists.txt +../../../third_party/abseil-cpp/absl/functional/any_invocable_test.cc +../../../third_party/abseil-cpp/absl/functional/bind_front_test.cc +../../../third_party/abseil-cpp/absl/functional/function_ref_test.cc +../../../third_party/abseil-cpp/absl/hash/BUILD.bazel +../../../third_party/abseil-cpp/absl/hash/CMakeLists.txt +../../../third_party/abseil-cpp/absl/hash/hash_test.cc +../../../third_party/abseil-cpp/absl/hash/internal/city_test.cc +../../../third_party/abseil-cpp/absl/hash/internal/low_level_hash_test.cc +../../../third_party/abseil-cpp/absl/memory/BUILD.bazel +../../../third_party/abseil-cpp/absl/memory/CMakeLists.txt +../../../third_party/abseil-cpp/absl/memory/memory_exception_safety_test.cc +../../../third_party/abseil-cpp/absl/memory/memory_test.cc +../../../third_party/abseil-cpp/absl/meta/BUILD.bazel +../../../third_party/abseil-cpp/absl/meta/CMakeLists.txt +../../../third_party/abseil-cpp/absl/meta/type_traits_test.cc +../../../third_party/abseil-cpp/absl/numeric/BUILD.bazel +../../../third_party/abseil-cpp/absl/numeric/CMakeLists.txt +../../../third_party/abseil-cpp/absl/numeric/bits_test.cc +../../../third_party/abseil-cpp/absl/numeric/int128_stream_test.cc +../../../third_party/abseil-cpp/absl/numeric/int128_test.cc +../../../third_party/abseil-cpp/absl/profiling/BUILD.bazel +../../../third_party/abseil-cpp/absl/profiling/CMakeLists.txt +../../../third_party/abseil-cpp/absl/profiling/internal/exponential_biased_test.cc +../../../third_party/abseil-cpp/absl/profiling/internal/periodic_sampler_test.cc +../../../third_party/abseil-cpp/absl/profiling/internal/sample_recorder_test.cc +../../../third_party/abseil-cpp/absl/random/BUILD.bazel +../../../third_party/abseil-cpp/absl/random/CMakeLists.txt +../../../third_party/abseil-cpp/absl/random/bernoulli_distribution_test.cc +../../../third_party/abseil-cpp/absl/random/beta_distribution_test.cc +../../../third_party/abseil-cpp/absl/random/bit_gen_ref_test.cc +../../../third_party/abseil-cpp/absl/random/discrete_distribution_test.cc +../../../third_party/abseil-cpp/absl/random/distributions_test.cc +../../../third_party/abseil-cpp/absl/random/examples_test.cc +../../../third_party/abseil-cpp/absl/random/exponential_distribution_test.cc +../../../third_party/abseil-cpp/absl/random/gaussian_distribution_test.cc +../../../third_party/abseil-cpp/absl/random/generators_test.cc +../../../third_party/abseil-cpp/absl/random/internal/BUILD.bazel +../../../third_party/abseil-cpp/absl/random/internal/chi_square_test.cc +../../../third_party/abseil-cpp/absl/random/internal/distribution_test_util_test.cc +../../../third_party/abseil-cpp/absl/random/internal/explicit_seed_seq_test.cc +../../../third_party/abseil-cpp/absl/random/internal/fast_uniform_bits_test.cc +../../../third_party/abseil-cpp/absl/random/internal/fastmath_test.cc +../../../third_party/abseil-cpp/absl/random/internal/generate_real_test.cc +../../../third_party/abseil-cpp/absl/random/internal/iostream_state_saver_test.cc +../../../third_party/abseil-cpp/absl/random/internal/nanobenchmark_test.cc +../../../third_party/abseil-cpp/absl/random/internal/nonsecure_base_test.cc +../../../third_party/abseil-cpp/absl/random/internal/pcg_engine_test.cc +../../../third_party/abseil-cpp/absl/random/internal/pool_urbg_test.cc +../../../third_party/abseil-cpp/absl/random/internal/randen_engine_test.cc +../../../third_party/abseil-cpp/absl/random/internal/randen_hwaes_test.cc +../../../third_party/abseil-cpp/absl/random/internal/randen_slow_test.cc +../../../third_party/abseil-cpp/absl/random/internal/randen_test.cc +../../../third_party/abseil-cpp/absl/random/internal/salted_seed_seq_test.cc +../../../third_party/abseil-cpp/absl/random/internal/seed_material_test.cc +../../../third_party/abseil-cpp/absl/random/internal/traits_test.cc +../../../third_party/abseil-cpp/absl/random/internal/uniform_helper_test.cc +../../../third_party/abseil-cpp/absl/random/internal/wide_multiply_test.cc +../../../third_party/abseil-cpp/absl/random/log_uniform_int_distribution_test.cc +../../../third_party/abseil-cpp/absl/random/mock_distributions_test.cc +../../../third_party/abseil-cpp/absl/random/mocking_bit_gen_test.cc +../../../third_party/abseil-cpp/absl/random/poisson_distribution_test.cc +../../../third_party/abseil-cpp/absl/random/seed_sequences_test.cc +../../../third_party/abseil-cpp/absl/random/uniform_int_distribution_test.cc +../../../third_party/abseil-cpp/absl/random/uniform_real_distribution_test.cc +../../../third_party/abseil-cpp/absl/random/zipf_distribution_test.cc +../../../third_party/abseil-cpp/absl/status/BUILD.bazel +../../../third_party/abseil-cpp/absl/status/CMakeLists.txt +../../../third_party/abseil-cpp/absl/status/status_test.cc +../../../third_party/abseil-cpp/absl/status/statusor_test.cc +../../../third_party/abseil-cpp/absl/strings/BUILD.bazel +../../../third_party/abseil-cpp/absl/strings/CMakeLists.txt +../../../third_party/abseil-cpp/absl/strings/ascii_test.cc +../../../third_party/abseil-cpp/absl/strings/charconv_test.cc +../../../third_party/abseil-cpp/absl/strings/cord_buffer_test.cc +../../../third_party/abseil-cpp/absl/strings/cord_ring_reader_test.cc +../../../third_party/abseil-cpp/absl/strings/cord_ring_test.cc +../../../third_party/abseil-cpp/absl/strings/cord_test.cc +../../../third_party/abseil-cpp/absl/strings/cordz_test.cc +../../../third_party/abseil-cpp/absl/strings/escaping_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/char_map_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/charconv_bigint_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/charconv_parse_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/cord_data_edge_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_crc_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/cordz_functions_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/cordz_handle_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/cordz_info_statistics_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/cordz_info_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/cordz_sample_token_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/cordz_update_scope_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/memutil_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/ostringstream_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/pow10_helper_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/resize_uninitialized_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/str_format/arg_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/str_format/bind_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/str_format/checker_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/str_format/convert_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/str_format/extension_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/str_format/output_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/str_format/parser_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/string_constant_test.cc +../../../third_party/abseil-cpp/absl/strings/internal/utf8_test.cc +../../../third_party/abseil-cpp/absl/strings/match_test.cc +../../../third_party/abseil-cpp/absl/strings/numbers_test.cc +../../../third_party/abseil-cpp/absl/strings/str_cat_test.cc +../../../third_party/abseil-cpp/absl/strings/str_format_test.cc +../../../third_party/abseil-cpp/absl/strings/str_join_test.cc +../../../third_party/abseil-cpp/absl/strings/str_replace_test.cc +../../../third_party/abseil-cpp/absl/strings/str_split_test.cc +../../../third_party/abseil-cpp/absl/strings/string_view_test.cc +../../../third_party/abseil-cpp/absl/strings/strip_test.cc +../../../third_party/abseil-cpp/absl/strings/substitute_test.cc +../../../third_party/abseil-cpp/absl/synchronization/BUILD.bazel +../../../third_party/abseil-cpp/absl/synchronization/CMakeLists.txt +../../../third_party/abseil-cpp/absl/synchronization/barrier_test.cc +../../../third_party/abseil-cpp/absl/synchronization/blocking_counter_test.cc +../../../third_party/abseil-cpp/absl/synchronization/internal/graphcycles_test.cc +../../../third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem_test.cc +../../../third_party/abseil-cpp/absl/synchronization/lifetime_test.cc +../../../third_party/abseil-cpp/absl/synchronization/mutex_test.cc +../../../third_party/abseil-cpp/absl/synchronization/notification_test.cc +../../../third_party/abseil-cpp/absl/time/BUILD.bazel +../../../third_party/abseil-cpp/absl/time/CMakeLists.txt +../../../third_party/abseil-cpp/absl/time/civil_time_test.cc +../../../third_party/abseil-cpp/absl/time/clock_test.cc +../../../third_party/abseil-cpp/absl/time/duration_test.cc +../../../third_party/abseil-cpp/absl/time/format_test.cc +../../../third_party/abseil-cpp/absl/time/internal/cctz/BUILD.bazel +../../../third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_test.cc +../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format_test.cc +../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup_test.cc +../../../third_party/abseil-cpp/absl/time/internal/cctz/testdata +../../../third_party/abseil-cpp/absl/time/time_test.cc +../../../third_party/abseil-cpp/absl/time/time_zone_test.cc +../../../third_party/abseil-cpp/absl/types/BUILD.bazel +../../../third_party/abseil-cpp/absl/types/CMakeLists.txt +../../../third_party/abseil-cpp/absl/types/any_exception_safety_test.cc +../../../third_party/abseil-cpp/absl/types/any_test.cc +../../../third_party/abseil-cpp/absl/types/compare_test.cc +../../../third_party/abseil-cpp/absl/types/internal/conformance_testing_test.cc +../../../third_party/abseil-cpp/absl/types/optional_exception_safety_test.cc +../../../third_party/abseil-cpp/absl/types/optional_test.cc +../../../third_party/abseil-cpp/absl/types/span_test.cc +../../../third_party/abseil-cpp/absl/types/variant_exception_safety_test.cc +../../../third_party/abseil-cpp/absl/types/variant_test.cc +../../../third_party/abseil-cpp/absl/utility/BUILD.bazel +../../../third_party/abseil-cpp/absl/utility/CMakeLists.txt +../../../third_party/abseil-cpp/absl/utility/utility_test.cc +../../../third_party/abseil-cpp/absl_hardening_test.cc +../../../third_party/abseil-cpp/conanfile.py +../../../third_party/abseil-cpp/create_lts.py +../../../third_party/abseil-cpp/generate_def_files.py +../../../third_party/abseil-cpp/roll_abseil.py +../../../third_party/android_embedding_dependencies +../../../third_party/android_tools +../../../third_party/angle/.clang-format +../../../third_party/angle/.git +../../../third_party/angle/.gitattributes +../../../third_party/angle/.gitignore +../../../third_party/angle/.gn +../../../third_party/angle/.style.yapf +../../../third_party/angle/.vpython +../../../third_party/angle/.vpython3 +../../../third_party/angle/.yapfignore +../../../third_party/angle/AUTHORS +../../../third_party/angle/Android.mk +../../../third_party/angle/CONTRIBUTORS +../../../third_party/angle/DEPS +../../../third_party/angle/DIR_METADATA +../../../third_party/angle/OWNERS +../../../third_party/angle/PRESUBMIT.py +../../../third_party/angle/README.chromium +../../../third_party/angle/README.md +../../../third_party/angle/WATCHLISTS +../../../third_party/angle/additional_readme_paths.json +../../../third_party/angle/android +../../../third_party/angle/codereview.settings +../../../third_party/angle/doc +../../../third_party/angle/extensions +../../../third_party/angle/include/CL/.clang-format +../../../third_party/angle/include/CL/README.md +../../../third_party/angle/include/EGL/.clang-format +../../../third_party/angle/include/GLES/.clang-format +../../../third_party/angle/include/GLES/README.md +../../../third_party/angle/include/GLES2/.clang-format +../../../third_party/angle/include/GLES3/.clang-format +../../../third_party/angle/include/GLX/.clang-format +../../../third_party/angle/include/KHR/.clang-format +../../../third_party/angle/include/WGL/.clang-format +../../../third_party/angle/include/platform/gen_features.py +../../../third_party/angle/infra +../../../third_party/angle/samples +../../../third_party/angle/scripts +../../../third_party/angle/src/commit_id.py +../../../third_party/angle/src/common/CircularBuffer_unittest.cpp +../../../third_party/angle/src/common/FastVector_unittest.cpp +../../../third_party/angle/src/common/FixedVector_unittest.cpp +../../../third_party/angle/src/common/Float16ToFloat32.py +../../../third_party/angle/src/common/Optional_unittest.cpp +../../../third_party/angle/src/common/PoolAlloc_unittest.cpp +../../../third_party/angle/src/common/aligned_memory_unittest.cpp +../../../third_party/angle/src/common/angleutils_unittest.cpp +../../../third_party/angle/src/common/bitset_utils_unittest.cpp +../../../third_party/angle/src/common/fuchsia_egl/OWNERS +../../../third_party/angle/src/common/gen_packed_gl_enums.py +../../../third_party/angle/src/common/gen_uniform_type_table.py +../../../third_party/angle/src/common/hash_utils_unittest.cpp +../../../third_party/angle/src/common/mathutil_unittest.cpp +../../../third_party/angle/src/common/matrix_utils_unittest.cpp +../../../third_party/angle/src/common/serializer/JsonSerializer_unittest.cpp +../../../third_party/angle/src/common/spirv/gen_spirv_builder_and_parser.py +../../../third_party/angle/src/common/string_utils_unittest.cpp +../../../third_party/angle/src/common/system_utils_unittest.cpp +../../../third_party/angle/src/common/third_party/base/README.angle +../../../third_party/angle/src/common/third_party/base/anglebase/numerics/OWNERS +../../../third_party/angle/src/common/third_party/smhasher/README.angle +../../../third_party/angle/src/common/third_party/xxhash/README.chromium +../../../third_party/angle/src/common/third_party/xxhash/README.md +../../../third_party/angle/src/common/utilities_unittest.cpp +../../../third_party/angle/src/common/vector_utils_unittest.cpp +../../../third_party/angle/src/compiler/generate_parser_tools.py +../../../third_party/angle/src/compiler/preprocessor/generate_parser.py +../../../third_party/angle/src/compiler/translator/gen_builtin_symbols.py +../../../third_party/angle/src/compiler/translator/gen_emulated_builtin_function_tables.py +../../../third_party/angle/src/compiler/translator/generate_parser.py +../../../third_party/angle/src/compiler/translator/span_unittest.cpp +../../../third_party/angle/src/feature_support_util/OWNERS +../../../third_party/angle/src/feature_support_util/feature_support_util_unittest.cpp +../../../third_party/angle/src/gpu_info_util/SystemInfo_unittest.cpp +../../../third_party/angle/src/libANGLE/BinaryStream_unittest.cpp +../../../third_party/angle/src/libANGLE/BlobCache_unittest.cpp +../../../third_party/angle/src/libANGLE/Config_unittest.cpp +../../../third_party/angle/src/libANGLE/Fence_unittest.cpp +../../../third_party/angle/src/libANGLE/HandleAllocator_unittest.cpp +../../../third_party/angle/src/libANGLE/ImageIndexIterator_unittest.cpp +../../../third_party/angle/src/libANGLE/Image_unittest.cpp +../../../third_party/angle/src/libANGLE/Observer_unittest.cpp +../../../third_party/angle/src/libANGLE/Program_unittest.cpp +../../../third_party/angle/src/libANGLE/ResourceManager_unittest.cpp +../../../third_party/angle/src/libANGLE/ResourceMap_unittest.cpp +../../../third_party/angle/src/libANGLE/SizedMRUCache_unittest.cpp +../../../third_party/angle/src/libANGLE/Surface_unittest.cpp +../../../third_party/angle/src/libANGLE/TransformFeedback_unittest.cpp +../../../third_party/angle/src/libANGLE/VaryingPacking_unittest.cpp +../../../third_party/angle/src/libANGLE/VertexArray_unittest.cpp +../../../third_party/angle/src/libANGLE/WorkerThread_unittest.cpp +../../../third_party/angle/src/libANGLE/angletypes_unittest.cpp +../../../third_party/angle/src/libANGLE/capture/OWNERS +../../../third_party/angle/src/libANGLE/gen_copy_conversion_table.py +../../../third_party/angle/src/libANGLE/gen_extensions.py +../../../third_party/angle/src/libANGLE/gen_format_map.py +../../../third_party/angle/src/libANGLE/gen_overlay_fonts.py +../../../third_party/angle/src/libANGLE/gen_overlay_widgets.py +../../../third_party/angle/src/libANGLE/renderer/README.md +../../../third_party/angle/src/libANGLE/renderer/angle_format.py +../../../third_party/angle/src/libANGLE/renderer/d3d/OWNERS +../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/FormatTables.md +../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/UniformBlockToStructuredBufferTranslation.md +../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/gen_blit11helper.py +../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/gen_texture_format_table.py +../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/CoreWindowNativeWindow_unittest.cpp +../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/SwapChainPanelNativeWindow_unittest.cpp +../../../third_party/angle/src/libANGLE/renderer/gen_angle_format_table.py +../../../third_party/angle/src/libANGLE/renderer/gen_dxgi_format_table.py +../../../third_party/angle/src/libANGLE/renderer/gen_dxgi_support_tables.py +../../../third_party/angle/src/libANGLE/renderer/gen_load_functions_table.py +../../../third_party/angle/src/libANGLE/renderer/gl/DisplayGL_unittest.cpp +../../../third_party/angle/src/libANGLE/renderer/gl/FeatureSupportGL.md +../../../third_party/angle/src/libANGLE/renderer/gl/OWNERS +../../../third_party/angle/src/libANGLE/renderer/gl/generate_gl_dispatch_table.py +../../../third_party/angle/src/libANGLE/renderer/metal/doc +../../../third_party/angle/src/libANGLE/renderer/metal/gen_mtl_format_table.py +../../../third_party/angle/src/libANGLE/renderer/metal/shaders/create_mtl_internal_shaders.py +../../../third_party/angle/src/libANGLE/renderer/metal/shaders/gen_mtl_internal_shaders.py +../../../third_party/angle/src/libANGLE/renderer/serial_utils_unittest.cpp +../../../third_party/angle/src/libANGLE/renderer/vulkan/OWNERS +../../../third_party/angle/src/libANGLE/renderer/vulkan/README.md +../../../third_party/angle/src/libANGLE/renderer/vulkan/doc +../../../third_party/angle/src/libANGLE/renderer/vulkan/fuchsia/OWNERS +../../../third_party/angle/src/libANGLE/renderer/vulkan/gen_vk_format_table.py +../../../third_party/angle/src/libANGLE/renderer/vulkan/gen_vk_internal_shaders.py +../../../third_party/angle/src/libANGLE/renderer/vulkan/gen_vk_mandatory_format_support_table.py +../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/README.md +../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/third_party/.clang-format +../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/third_party/ffx_spd/README.chromium +../../../third_party/angle/src/tests +../../../third_party/angle/src/third_party/ceval/.clang-format +../../../third_party/angle/src/third_party/ceval/README.chromium +../../../third_party/angle/src/third_party/ceval/README.md +../../../third_party/angle/src/third_party/ceval/package.json +../../../third_party/angle/src/third_party/libXNVCtrl/README.chromium +../../../third_party/angle/src/third_party/volk +../../../third_party/angle/third_party +../../../third_party/angle/tools +../../../third_party/angle/util +../../../third_party/benchmark +../../../third_party/boringssl/.git +../../../third_party/boringssl/.gitignore +../../../third_party/boringssl/README +../../../third_party/boringssl/codereview.settings +../../../third_party/boringssl/ios-aarch64/crypto/test +../../../third_party/boringssl/ios-arm/crypto/test +../../../third_party/boringssl/linux-aarch64/crypto/test +../../../third_party/boringssl/linux-arm/crypto/test +../../../third_party/boringssl/linux-ppc64le/crypto/test +../../../third_party/boringssl/linux-x86/crypto/test +../../../third_party/boringssl/linux-x86_64/crypto/test +../../../third_party/boringssl/mac-x86/crypto/test +../../../third_party/boringssl/mac-x86_64/crypto/test +../../../third_party/boringssl/src/.clang-format +../../../third_party/boringssl/src/.git +../../../third_party/boringssl/src/.github +../../../third_party/boringssl/src/.gitignore +../../../third_party/boringssl/src/API-CONVENTIONS.md +../../../third_party/boringssl/src/BREAKING-CHANGES.md +../../../third_party/boringssl/src/BUILDING.md +../../../third_party/boringssl/src/CMakeLists.txt +../../../third_party/boringssl/src/CONTRIBUTING.md +../../../third_party/boringssl/src/FUZZING.md +../../../third_party/boringssl/src/INCORPORATING.md +../../../third_party/boringssl/src/PORTING.md +../../../third_party/boringssl/src/README.md +../../../third_party/boringssl/src/SANDBOXING.md +../../../third_party/boringssl/src/STYLE.md +../../../third_party/boringssl/src/codereview.settings +../../../third_party/boringssl/src/crypto/CMakeLists.txt +../../../third_party/boringssl/src/crypto/abi_self_test.cc +../../../third_party/boringssl/src/crypto/asn1/asn1_test.cc +../../../third_party/boringssl/src/crypto/base64/base64_test.cc +../../../third_party/boringssl/src/crypto/bio/bio_test.cc +../../../third_party/boringssl/src/crypto/blake2/blake2_test.cc +../../../third_party/boringssl/src/crypto/buf/buf_test.cc +../../../third_party/boringssl/src/crypto/bytestring/bytestring_test.cc +../../../third_party/boringssl/src/crypto/chacha/chacha_test.cc +../../../third_party/boringssl/src/crypto/cipher_extra/aead_test.cc +../../../third_party/boringssl/src/crypto/cipher_extra/cipher_test.cc +../../../third_party/boringssl/src/crypto/cipher_extra/test +../../../third_party/boringssl/src/crypto/cmac/cmac_test.cc +../../../third_party/boringssl/src/crypto/compiler_test.cc +../../../third_party/boringssl/src/crypto/conf/conf_test.cc +../../../third_party/boringssl/src/crypto/constant_time_test.cc +../../../third_party/boringssl/src/crypto/cpu-arm-linux_test.cc +../../../third_party/boringssl/src/crypto/crypto_test.cc +../../../third_party/boringssl/src/crypto/curve25519/ed25519_test.cc +../../../third_party/boringssl/src/crypto/curve25519/make_curve25519_tables.py +../../../third_party/boringssl/src/crypto/curve25519/spake25519_test.cc +../../../third_party/boringssl/src/crypto/curve25519/x25519_test.cc +../../../third_party/boringssl/src/crypto/dh_extra/dh_test.cc +../../../third_party/boringssl/src/crypto/digest_extra/digest_test.cc +../../../third_party/boringssl/src/crypto/dsa/dsa_test.cc +../../../third_party/boringssl/src/crypto/ecdh_extra/ecdh_test.cc +../../../third_party/boringssl/src/crypto/err/err_data_generate.go +../../../third_party/boringssl/src/crypto/err/err_test.cc +../../../third_party/boringssl/src/crypto/evp/evp_extra_test.cc +../../../third_party/boringssl/src/crypto/evp/evp_test.cc +../../../third_party/boringssl/src/crypto/evp/pbkdf_test.cc +../../../third_party/boringssl/src/crypto/evp/scrypt_test.cc +../../../third_party/boringssl/src/crypto/fipsmodule/CMakeLists.txt +../../../third_party/boringssl/src/crypto/fipsmodule/FIPS.md +../../../third_party/boringssl/src/crypto/fipsmodule/aes/aes_test.cc +../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn_test.cc +../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn_test_to_fuzzer.go +../../../third_party/boringssl/src/crypto/fipsmodule/bn/check_bn_tests.go +../../../third_party/boringssl/src/crypto/fipsmodule/ec/asm/p256_beeu-x86_64-asm.pl +../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_test.cc +../../../third_party/boringssl/src/crypto/fipsmodule/ec/make_ec_scalar_base_mult_tests.go +../../../third_party/boringssl/src/crypto/fipsmodule/ec/make_p256-x86_64-tests.go +../../../third_party/boringssl/src/crypto/fipsmodule/ec/make_tables.go +../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64_test.cc +../../../third_party/boringssl/src/crypto/fipsmodule/ecdsa/ecdsa_test.cc +../../../third_party/boringssl/src/crypto/fipsmodule/md5/md5_test.cc +../../../third_party/boringssl/src/crypto/fipsmodule/modes/gcm_test.cc +../../../third_party/boringssl/src/crypto/fipsmodule/rand/ctrdrbg_test.cc +../../../third_party/boringssl/src/crypto/fipsmodule/rand/fork_detect_test.cc +../../../third_party/boringssl/src/crypto/fipsmodule/rand/urandom_test.cc +../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha_test.cc +../../../third_party/boringssl/src/crypto/hkdf/hkdf_test.cc +../../../third_party/boringssl/src/crypto/hmac_extra/hmac_test.cc +../../../third_party/boringssl/src/crypto/hpke/hpke_test.cc +../../../third_party/boringssl/src/crypto/hpke/translate_test_vectors.py +../../../third_party/boringssl/src/crypto/hrss/hrss_test.cc +../../../third_party/boringssl/src/crypto/impl_dispatch_test.cc +../../../third_party/boringssl/src/crypto/lhash/lhash_test.cc +../../../third_party/boringssl/src/crypto/obj/README +../../../third_party/boringssl/src/crypto/obj/obj_test.cc +../../../third_party/boringssl/src/crypto/pem/pem_test.cc +../../../third_party/boringssl/src/crypto/perlasm/readme +../../../third_party/boringssl/src/crypto/pkcs7/pkcs7_test.cc +../../../third_party/boringssl/src/crypto/pkcs8/pkcs12_test.cc +../../../third_party/boringssl/src/crypto/pkcs8/pkcs8_test.cc +../../../third_party/boringssl/src/crypto/pkcs8/test +../../../third_party/boringssl/src/crypto/poly1305/poly1305_test.cc +../../../third_party/boringssl/src/crypto/pool/pool_test.cc +../../../third_party/boringssl/src/crypto/rand_extra/rand_test.cc +../../../third_party/boringssl/src/crypto/refcount_test.cc +../../../third_party/boringssl/src/crypto/rsa_extra/rsa_test.cc +../../../third_party/boringssl/src/crypto/self_test.cc +../../../third_party/boringssl/src/crypto/siphash/siphash_test.cc +../../../third_party/boringssl/src/crypto/stack/stack_test.cc +../../../third_party/boringssl/src/crypto/test +../../../third_party/boringssl/src/crypto/thread_test.cc +../../../third_party/boringssl/src/crypto/trust_token/trust_token_test.cc +../../../third_party/boringssl/src/crypto/x509/test +../../../third_party/boringssl/src/crypto/x509/x509_test.cc +../../../third_party/boringssl/src/crypto/x509/x509_time_test.cc +../../../third_party/boringssl/src/crypto/x509v3/tab_test.cc +../../../third_party/boringssl/src/crypto/x509v3/v3name_test.cc +../../../third_party/boringssl/src/decrepit/CMakeLists.txt +../../../third_party/boringssl/src/decrepit/blowfish/blowfish_test.cc +../../../third_party/boringssl/src/decrepit/cast/cast_test.cc +../../../third_party/boringssl/src/decrepit/cfb/cfb_test.cc +../../../third_party/boringssl/src/decrepit/evp/evp_test.cc +../../../third_party/boringssl/src/decrepit/ripemd/ripemd_test.cc +../../../third_party/boringssl/src/decrepit/xts/xts_test.cc +../../../third_party/boringssl/src/fuzz +../../../third_party/boringssl/src/sources.cmake +../../../third_party/boringssl/src/ssl/CMakeLists.txt +../../../third_party/boringssl/src/ssl/span_test.cc +../../../third_party/boringssl/src/ssl/ssl_c_test.c +../../../third_party/boringssl/src/ssl/ssl_test.cc +../../../third_party/boringssl/src/ssl/test +../../../third_party/boringssl/src/third_party/fiat/METADATA +../../../third_party/boringssl/src/third_party/fiat/README.chromium +../../../third_party/boringssl/src/third_party/fiat/README.md +../../../third_party/boringssl/src/third_party/googletest +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/METADATA +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aead_aes_siv_cmac_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aegis128L_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aegis128_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aegis256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_cbc_pkcs5_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_cbc_pkcs5_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_ccm_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_cmac_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_cmac_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_eax_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_gcm_siv_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_gcm_siv_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_gcm_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_gcm_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_siv_cmac_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/chacha20_poly1305_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/chacha20_poly1305_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_2048_224_sha224_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_2048_224_sha224_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_2048_224_sha256_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_2048_224_sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_2048_256_sha256_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_2048_256_sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_3072_256_sha256_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_3072_256_sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_brainpoolP224r1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_brainpoolP256r1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_brainpoolP320r1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_brainpoolP384r1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_brainpoolP512r1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp224r1_ecpoint_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp224r1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp224r1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp256k1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp256r1_ecpoint_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp256r1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp256r1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp384r1_ecpoint_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp384r1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp384r1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp521r1_ecpoint_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp521r1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp521r1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_webcrypto_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP224r1_sha224_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP224r1_sha224_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP256r1_sha256_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP256r1_sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP320r1_sha384_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP320r1_sha384_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP384r1_sha384_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP384r1_sha384_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP512r1_sha512_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP512r1_sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha3_224_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha3_256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha3_512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha512_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha512_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha256_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha3_256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha3_512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha512_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha3_256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha3_512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha512_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha512_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha3_384_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha3_512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp521r1_sha3_512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_p1363_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_webcrypto_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ed448_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/eddsa_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/eddsa_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/gmac_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hkdf_sha1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hkdf_sha1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hkdf_sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hkdf_sha256_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hkdf_sha384_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hkdf_sha384_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hkdf_sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hkdf_sha512_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha224_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha224_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha256_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha384_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha384_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha3_224_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha3_256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha3_384_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha3_512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha512_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/kw_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/kw_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/kwp_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/kwp_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/primality_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/primality_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha1_mgf1sha1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha1_mgf1sha1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha224_mgf1sha1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha224_mgf1sha1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha224_mgf1sha224_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha224_mgf1sha224_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha256_mgf1sha1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha256_mgf1sha1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha256_mgf1sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha256_mgf1sha256_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha384_mgf1sha1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha384_mgf1sha1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha384_mgf1sha384_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha384_mgf1sha384_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha512_mgf1sha1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha512_mgf1sha1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha512_mgf1sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha512_mgf1sha512_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha256_mgf1sha1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha256_mgf1sha1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha256_mgf1sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha256_mgf1sha256_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha512_mgf1sha1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha512_mgf1sha1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha512_mgf1sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha512_mgf1sha512_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha256_mgf1sha1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha256_mgf1sha1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha256_mgf1sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha256_mgf1sha256_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha512_mgf1sha1_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha512_mgf1sha1_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha512_mgf1sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha512_mgf1sha512_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_misc_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_misc_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pkcs1_2048_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pkcs1_2048_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pkcs1_3072_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pkcs1_3072_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pkcs1_4096_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pkcs1_4096_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_2048_sha1_mgf1_20_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_2048_sha1_mgf1_20_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_2048_sha256_mgf1_0_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_2048_sha256_mgf1_0_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_2048_sha256_mgf1_32_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_2048_sha256_mgf1_32_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_2048_sha512_256_mgf1_28_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_2048_sha512_256_mgf1_32_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_3072_sha256_mgf1_32_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_3072_sha256_mgf1_32_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_4096_sha256_mgf1_32_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_4096_sha256_mgf1_32_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_4096_sha512_mgf1_32_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_4096_sha512_mgf1_32_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_misc_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_misc_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_sig_gen_misc_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_sig_gen_misc_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha224_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha224_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha256_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha384_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha384_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha3_224_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha3_256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha3_384_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha3_512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha512_224_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha512_256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha512_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha256_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha384_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha384_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha3_256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha3_384_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha3_512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha512_256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha512_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_4096_sha384_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_4096_sha384_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_4096_sha512_256_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_4096_sha512_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_4096_sha512_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/vmac_128_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/vmac_64_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x25519_asn_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x25519_jwk_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x25519_pem_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x25519_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x25519_test.txt +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x448_asn_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x448_jwk_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x448_pem_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x448_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/xchacha20_poly1305_test.json +../../../third_party/boringssl/src/third_party/wycheproof_testvectors/xchacha20_poly1305_test.txt +../../../third_party/boringssl/src/tool/CMakeLists.txt +../../../third_party/boringssl/src/util +../../../third_party/boringssl/win-aarch64/crypto/test +../../../third_party/boringssl/win-x86/crypto/test +../../../third_party/boringssl/win-x86_64/crypto/test +../../../third_party/colorama/src/.git +../../../third_party/colorama/src/.gitignore +../../../third_party/colorama/src/CHANGELOG.rst +../../../third_party/colorama/src/MANIFEST.in +../../../third_party/colorama/src/Makefile +../../../third_party/colorama/src/README.txt +../../../third_party/colorama/src/colorama/__init__.py +../../../third_party/colorama/src/colorama/ansi.py +../../../third_party/colorama/src/colorama/ansitowin32.py +../../../third_party/colorama/src/colorama/initialise.py +../../../third_party/colorama/src/colorama/tests +../../../third_party/colorama/src/colorama/win32.py +../../../third_party/colorama/src/colorama/winterm.py +../../../third_party/colorama/src/demos +../../../third_party/colorama/src/requirements-dev.txt +../../../third_party/colorama/src/requirements.txt +../../../third_party/colorama/src/screenshots +../../../third_party/colorama/src/setup.py +../../../third_party/dart/.clang-format +../../../third_party/dart/.dart_tool +../../../third_party/dart/.git +../../../third_party/dart/.gitattributes +../../../third_party/dart/.gitconfig +../../../third_party/dart/.github +../../../third_party/dart/.gitignore +../../../third_party/dart/.gn +../../../third_party/dart/.mailmap +../../../third_party/dart/.style.yapf +../../../third_party/dart/.vpython +../../../third_party/dart/AUTHORS +../../../third_party/dart/CHANGELOG.md +../../../third_party/dart/CONTRIBUTING.md +../../../third_party/dart/DEPS +../../../third_party/dart/OWNERS +../../../third_party/dart/PATENT_GRANT +../../../third_party/dart/PRESUBMIT.py +../../../third_party/dart/README.dart-sdk +../../../third_party/dart/README.md +../../../third_party/dart/SECURITY.md +../../../third_party/dart/WATCHLISTS +../../../third_party/dart/benchmarks +../../../third_party/dart/build +../../../third_party/dart/codereview.settings +../../../third_party/dart/docs +../../../third_party/dart/pkg +../../../third_party/dart/runtime/.clang-tidy +../../../third_party/dart/runtime/.gitignore +../../../third_party/dart/runtime/CPPLINT.cfg +../../../third_party/dart/runtime/OWNERS +../../../third_party/dart/runtime/PRESUBMIT.py +../../../third_party/dart/runtime/bin/abstract_socket_test.cc +../../../third_party/dart/runtime/bin/crypto_test.cc +../../../third_party/dart/runtime/bin/directory_test.cc +../../../third_party/dart/runtime/bin/entrypoints_verification_test.cc +../../../third_party/dart/runtime/bin/eventhandler_test.cc +../../../third_party/dart/runtime/bin/ffi_test +../../../third_party/dart/runtime/bin/file_test.cc +../../../third_party/dart/runtime/bin/hashmap_test.cc +../../../third_party/dart/runtime/bin/priority_heap_test.cc +../../../third_party/dart/runtime/bin/process_test.cc +../../../third_party/dart/runtime/bin/secure_socket_utils_test.cc +../../../third_party/dart/runtime/bin/snapshot_utils_test.cc +../../../third_party/dart/runtime/codereview.settings +../../../third_party/dart/runtime/docs +../../../third_party/dart/runtime/observatory/.gitignore +../../../third_party/dart/runtime/observatory/HACKING.md +../../../third_party/dart/runtime/observatory/analysis_options.yaml +../../../third_party/dart/runtime/observatory/lib/src/elements/css/shared.css +../../../third_party/dart/runtime/observatory/pubspec.yaml +../../../third_party/dart/runtime/observatory/tests +../../../third_party/dart/runtime/observatory/update_sources.py +../../../third_party/dart/runtime/observatory/web/third_party/README.md +../../../third_party/dart/runtime/observatory_2/.gitignore +../../../third_party/dart/runtime/observatory_2/HACKING.md +../../../third_party/dart/runtime/observatory_2/analysis_options.yaml +../../../third_party/dart/runtime/observatory_2/lib/src/elements/css/shared.css +../../../third_party/dart/runtime/observatory_2/pubspec.yaml +../../../third_party/dart/runtime/observatory_2/tests +../../../third_party/dart/runtime/observatory_2/update_sources.py +../../../third_party/dart/runtime/observatory_2/web/third_party/README.md +../../../third_party/dart/runtime/tests +../../../third_party/dart/runtime/third_party/binary_size +../../../third_party/dart/runtime/third_party/d3 +../../../third_party/dart/runtime/third_party/double-conversion/.gitignore +../../../third_party/dart/runtime/third_party/double-conversion/AUTHORS +../../../third_party/dart/runtime/third_party/double-conversion/Changelog +../../../third_party/dart/runtime/third_party/double-conversion/README +../../../third_party/dart/runtime/third_party/double-conversion/README.dart +../../../third_party/dart/runtime/tools/.gitignore +../../../third_party/dart/runtime/tools/android_finder.py +../../../third_party/dart/runtime/tools/benchmark.py +../../../third_party/dart/runtime/tools/bin_to_assembly.py +../../../third_party/dart/runtime/tools/bin_to_coff.py +../../../third_party/dart/runtime/tools/compiler_layering_check.py +../../../third_party/dart/runtime/tools/create_archive.py +../../../third_party/dart/runtime/tools/create_snapshot_bin.py +../../../third_party/dart/runtime/tools/create_snapshot_file.py +../../../third_party/dart/runtime/tools/create_string_literal.py +../../../third_party/dart/runtime/tools/dartfuzz/README.md +../../../third_party/dart/runtime/tools/dartfuzz/README_minimize.md +../../../third_party/dart/runtime/tools/dartfuzz/analysis_options.yaml +../../../third_party/dart/runtime/tools/dartfuzz/collect_data.py +../../../third_party/dart/runtime/tools/dartfuzz/dartfuzz_test.dart +../../../third_party/dart/runtime/tools/dartfuzz/minimize.py +../../../third_party/dart/runtime/tools/dartfuzz/pubspec.yaml +../../../third_party/dart/runtime/tools/dartfuzz/update_spreadsheet.py +../../../third_party/dart/runtime/tools/embedder_layering_check.py +../../../third_party/dart/runtime/tools/gen_library_src_paths.py +../../../third_party/dart/runtime/tools/graphexplorer/graphexplorer.css +../../../third_party/dart/runtime/tools/heapsnapshot/CHANGELOG.md +../../../third_party/dart/runtime/tools/heapsnapshot/README +../../../third_party/dart/runtime/tools/heapsnapshot/pubspec.yaml +../../../third_party/dart/runtime/tools/heapsnapshot/test +../../../third_party/dart/runtime/tools/utils.py +../../../third_party/dart/runtime/tools/valgrind.py +../../../third_party/dart/runtime/tools/wiki/CustomShellSessionPygmentsLexer/custom_shell_session/__init__.py +../../../third_party/dart/runtime/tools/wiki/CustomShellSessionPygmentsLexer/custom_shell_session/lexer.py +../../../third_party/dart/runtime/tools/wiki/CustomShellSessionPygmentsLexer/setup.py +../../../third_party/dart/runtime/tools/wiki/README.md +../../../third_party/dart/runtime/tools/wiki/build/build.py +../../../third_party/dart/runtime/tools/wiki/build/xrefs.py +../../../third_party/dart/runtime/tools/wiki/xref_extractor/.gitignore +../../../third_party/dart/runtime/tools/wiki/xref_extractor/README.md +../../../third_party/dart/runtime/tools/wiki/xref_extractor/analysis_options.yaml +../../../third_party/dart/runtime/tools/wiki/xref_extractor/pubspec.yaml +../../../third_party/dart/runtime/vm/allocation_test.cc +../../../third_party/dart/runtime/vm/assert_test.cc +../../../third_party/dart/runtime/vm/atomic_test.cc +../../../third_party/dart/runtime/vm/base64_test.cc +../../../third_party/dart/runtime/vm/benchmark_test.cc +../../../third_party/dart/runtime/vm/benchmark_test.h +../../../third_party/dart/runtime/vm/bit_set_test.cc +../../../third_party/dart/runtime/vm/bit_vector_test.cc +../../../third_party/dart/runtime/vm/bitfield_test.cc +../../../third_party/dart/runtime/vm/bitmap_test.cc +../../../third_party/dart/runtime/vm/boolfield_test.cc +../../../third_party/dart/runtime/vm/catch_entry_moves_test.cc +../../../third_party/dart/runtime/vm/class_finalizer_test.cc +../../../third_party/dart/runtime/vm/code_descriptors_test.cc +../../../third_party/dart/runtime/vm/code_patcher_arm64_test.cc +../../../third_party/dart/runtime/vm/code_patcher_arm_test.cc +../../../third_party/dart/runtime/vm/code_patcher_ia32_test.cc +../../../third_party/dart/runtime/vm/code_patcher_riscv_test.cc +../../../third_party/dart/runtime/vm/code_patcher_x64_test.cc +../../../third_party/dart/runtime/vm/compiler/README.md +../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier_test.cc +../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm64_test.cc +../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm_test.cc +../../../third_party/dart/runtime/vm/compiler/assembler/assembler_ia32_test.cc +../../../third_party/dart/runtime/vm/compiler/assembler/assembler_riscv_test.cc +../../../third_party/dart/runtime/vm/compiler/assembler/assembler_test.cc +../../../third_party/dart/runtime/vm/compiler/assembler/assembler_x64_test.cc +../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/bce_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/constant_propagator_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/il_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/inliner_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/locations_helpers_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/loops_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/range_analysis_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/reachability_fence_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/redundancy_elimination_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/slot_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/type_propagator_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/typed_data_aot_test.cc +../../../third_party/dart/runtime/vm/compiler/backend/yield_position_test.cc +../../../third_party/dart/runtime/vm/compiler/cha_test.cc +../../../third_party/dart/runtime/vm/compiler/ffi/README.md +../../../third_party/dart/runtime/vm/compiler/ffi/native_calling_convention_test.cc +../../../third_party/dart/runtime/vm/compiler/ffi/native_location_test.cc +../../../third_party/dart/runtime/vm/compiler/ffi/native_type_test.cc +../../../third_party/dart/runtime/vm/compiler/ffi/native_type_vm_test.cc +../../../third_party/dart/runtime/vm/compiler/ffi/unit_test.cc +../../../third_party/dart/runtime/vm/compiler/ffi/unit_test.h +../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests +../../../third_party/dart/runtime/vm/compiler/frontend/kernel_binary_flowgraph_test.cc +../../../third_party/dart/runtime/vm/compiler/relocation_test.cc +../../../third_party/dart/runtime/vm/compiler/write_barrier_elimination_test.cc +../../../third_party/dart/runtime/vm/compiler_test.cc +../../../third_party/dart/runtime/vm/cpu_test.cc +../../../third_party/dart/runtime/vm/cpuinfo_test.cc +../../../third_party/dart/runtime/vm/custom_isolate_test.cc +../../../third_party/dart/runtime/vm/dart_api_impl_test.cc +../../../third_party/dart/runtime/vm/datastream_test.cc +../../../third_party/dart/runtime/vm/debugger_api_impl_test.cc +../../../third_party/dart/runtime/vm/debugger_api_impl_test.h +../../../third_party/dart/runtime/vm/exceptions_test.cc +../../../third_party/dart/runtime/vm/fixed_cache_test.cc +../../../third_party/dart/runtime/vm/flags_test.cc +../../../third_party/dart/runtime/vm/growable_array_test.cc +../../../third_party/dart/runtime/vm/guard_field_test.cc +../../../third_party/dart/runtime/vm/handles_test.cc +../../../third_party/dart/runtime/vm/hash_map_test.cc +../../../third_party/dart/runtime/vm/hash_table_test.cc +../../../third_party/dart/runtime/vm/heap/become_test.cc +../../../third_party/dart/runtime/vm/heap/freelist_test.cc +../../../third_party/dart/runtime/vm/heap/heap_test.cc +../../../third_party/dart/runtime/vm/heap/pages_test.cc +../../../third_party/dart/runtime/vm/heap/safepoint_test.cc +../../../third_party/dart/runtime/vm/heap/scavenger_test.cc +../../../third_party/dart/runtime/vm/heap/weak_table_test.cc +../../../third_party/dart/runtime/vm/instructions_arm64_test.cc +../../../third_party/dart/runtime/vm/instructions_arm_test.cc +../../../third_party/dart/runtime/vm/instructions_ia32_test.cc +../../../third_party/dart/runtime/vm/instructions_riscv_test.cc +../../../third_party/dart/runtime/vm/instructions_x64_test.cc +../../../third_party/dart/runtime/vm/intrusive_dlist_test.cc +../../../third_party/dart/runtime/vm/isolate_reload_test.cc +../../../third_party/dart/runtime/vm/isolate_test.cc +../../../third_party/dart/runtime/vm/json_test.cc +../../../third_party/dart/runtime/vm/kernel_test.cc +../../../third_party/dart/runtime/vm/libfuzzer/README.md +../../../third_party/dart/runtime/vm/log_test.cc +../../../third_party/dart/runtime/vm/longjump_test.cc +../../../third_party/dart/runtime/vm/malloc_hooks_test.cc +../../../third_party/dart/runtime/vm/memory_region_test.cc +../../../third_party/dart/runtime/vm/message_handler_test.cc +../../../third_party/dart/runtime/vm/message_test.cc +../../../third_party/dart/runtime/vm/metrics_test.cc +../../../third_party/dart/runtime/vm/mixin_test.cc +../../../third_party/dart/runtime/vm/native_entry_test.cc +../../../third_party/dart/runtime/vm/native_entry_test.h +../../../third_party/dart/runtime/vm/object_arm64_test.cc +../../../third_party/dart/runtime/vm/object_arm_test.cc +../../../third_party/dart/runtime/vm/object_graph_test.cc +../../../third_party/dart/runtime/vm/object_ia32_test.cc +../../../third_party/dart/runtime/vm/object_id_ring_test.cc +../../../third_party/dart/runtime/vm/object_riscv_test.cc +../../../third_party/dart/runtime/vm/object_store_test.cc +../../../third_party/dart/runtime/vm/object_test.cc +../../../third_party/dart/runtime/vm/object_x64_test.cc +../../../third_party/dart/runtime/vm/os_test.cc +../../../third_party/dart/runtime/vm/port_test.cc +../../../third_party/dart/runtime/vm/profiler_test.cc +../../../third_party/dart/runtime/vm/regexp_test.cc +../../../third_party/dart/runtime/vm/ring_buffer_test.cc +../../../third_party/dart/runtime/vm/scopes_test.cc +../../../third_party/dart/runtime/vm/service +../../../third_party/dart/runtime/vm/service_test.cc +../../../third_party/dart/runtime/vm/snapshot_test.cc +../../../third_party/dart/runtime/vm/source_report_test.cc +../../../third_party/dart/runtime/vm/stack_frame_test.cc +../../../third_party/dart/runtime/vm/stub_code_arm64_test.cc +../../../third_party/dart/runtime/vm/stub_code_arm_test.cc +../../../third_party/dart/runtime/vm/stub_code_ia32_test.cc +../../../third_party/dart/runtime/vm/stub_code_riscv_test.cc +../../../third_party/dart/runtime/vm/stub_code_test.cc +../../../third_party/dart/runtime/vm/stub_code_x64_test.cc +../../../third_party/dart/runtime/vm/thread_barrier_test.cc +../../../third_party/dart/runtime/vm/thread_pool_test.cc +../../../third_party/dart/runtime/vm/thread_test.cc +../../../third_party/dart/runtime/vm/timeline_test.cc +../../../third_party/dart/runtime/vm/type_testing_stubs_test.cc +../../../third_party/dart/runtime/vm/unicode_test.cc +../../../third_party/dart/runtime/vm/unit_test.cc +../../../third_party/dart/runtime/vm/unit_test.h +../../../third_party/dart/runtime/vm/uri_test.cc +../../../third_party/dart/runtime/vm/utils_test.cc +../../../third_party/dart/runtime/vm/virtual_memory_test.cc +../../../third_party/dart/runtime/vm/zone_test.cc +../../../third_party/dart/samples +../../../third_party/dart/sdk/.gitignore +../../../third_party/dart/sdk/OWNERS +../../../third_party/dart/sdk/api_readme.md +../../../third_party/dart/sdk/lib/PRESUBMIT.py +../../../third_party/dart/sdk/lib/_internal/allowed_experiments.json +../../../third_party/dart/sdk/lib/_internal/fix_data.yaml +../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/OWNERS +../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/preambles/README +../../../third_party/dart/sdk/lib/_internal/js_runtime/.packages +../../../third_party/dart/sdk/lib/_internal/js_runtime/OWNERS +../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/preambles/README +../../../third_party/dart/sdk/lib/_internal/js_runtime/pubspec.yaml +../../../third_party/dart/sdk/lib/_internal/sdk_library_metadata/pubspec.yaml +../../../third_party/dart/sdk/lib/_internal/vm/OWNERS +../../../third_party/dart/sdk/lib/_internal/wasm/OWNERS +../../../third_party/dart/sdk/lib/html/doc +../../../third_party/dart/sdk/lib/libraries.json +../../../third_party/dart/sdk/lib/libraries.yaml +../../../third_party/dart/sdk/lib/vmservice_libraries.json +../../../third_party/dart/sdk/lib/vmservice_libraries.yaml +../../../third_party/dart/sdk/lib/wasm/OWNERS +../../../third_party/dart/sdk/version +../../../third_party/dart/tests +../../../third_party/dart/third_party/.gitignore +../../../third_party/dart/third_party/OWNERS +../../../third_party/dart/third_party/binaryen +../../../third_party/dart/third_party/clang.tar.gz.sha1 +../../../third_party/dart/third_party/d8 +../../../third_party/dart/third_party/devtools +../../../third_party/dart/third_party/firefox_jsshell +../../../third_party/dart/third_party/mdn/browser-compat-data/README.google +../../../third_party/dart/third_party/pkg +../../../third_party/dart/third_party/requirejs +../../../third_party/dart/third_party/tcmalloc/.gitignore +../../../third_party/dart/third_party/tcmalloc/OWNERS +../../../third_party/dart/third_party/tcmalloc/README.dart +../../../third_party/dart/tools +../../../third_party/dart/utils/OWNERS +../../../third_party/dart/utils/compiler/.gitignore +../../../third_party/dart/utils/dartanalyzer/.gitignore +../../../third_party/dart/utils/tests +../../../third_party/expat/.git +../../../third_party/expat/.github +../../../third_party/expat/.gitignore +../../../third_party/expat/.mailmap +../../../third_party/expat/Brewfile +../../../third_party/expat/README.md +../../../third_party/expat/appveyor.yml +../../../third_party/expat/expat/.clang-format +../../../third_party/expat/expat/.gitignore +../../../third_party/expat/expat/AUTHORS +../../../third_party/expat/expat/CMake.README +../../../third_party/expat/expat/CMakeLists.txt +../../../third_party/expat/expat/Changes +../../../third_party/expat/expat/ConfigureChecks.cmake +../../../third_party/expat/expat/README.md +../../../third_party/expat/expat/acinclude.m4 +../../../third_party/expat/expat/cmake +../../../third_party/expat/expat/configure-ac-style.md +../../../third_party/expat/expat/conftools/.gitignore +../../../third_party/expat/expat/conftools/ax-append-compile-flags.m4 +../../../third_party/expat/expat/conftools/ax-append-flag.m4 +../../../third_party/expat/expat/conftools/ax-append-link-flags.m4 +../../../third_party/expat/expat/conftools/ax-check-compile-flag.m4 +../../../third_party/expat/expat/conftools/ax-check-link-flag.m4 +../../../third_party/expat/expat/conftools/ax-require-defined.m4 +../../../third_party/expat/expat/conftools/expat.m4 +../../../third_party/expat/expat/conftools/expatcfg-compiler-supports-visibility.m4 +../../../third_party/expat/expat/doc +../../../third_party/expat/expat/examples +../../../third_party/expat/expat/expat.pc.cmake +../../../third_party/expat/expat/expat_config.h.cmake +../../../third_party/expat/expat/fuzz/.gitignore +../../../third_party/expat/expat/gennmtab/.gitignore +../../../third_party/expat/expat/lib/.gitignore +../../../third_party/expat/expat/lib/libexpat.def.cmake +../../../third_party/expat/expat/memory-sanitizer-blacklist.txt +../../../third_party/expat/expat/tests +../../../third_party/expat/expat/win32/.gitignore +../../../third_party/expat/expat/win32/MANIFEST.txt +../../../third_party/expat/expat/win32/README.txt +../../../third_party/expat/expat/win32/expat.iss +../../../third_party/expat/expat/xmlwf/.gitignore +../../../third_party/expat/expat/xmlwf/xmlwf_helpgen.py +../../../third_party/expat/testdata +../../../third_party/flatbuffers/.bazelci +../../../third_party/flatbuffers/.clang-format +../../../third_party/flatbuffers/.editorconfig +../../../third_party/flatbuffers/.eslintrc.js +../../../third_party/flatbuffers/.git +../../../third_party/flatbuffers/.gitattributes +../../../third_party/flatbuffers/.github +../../../third_party/flatbuffers/.gitignore +../../../third_party/flatbuffers/.travis.yml +../../../third_party/flatbuffers/.travis/check-sources.sh.py +../../../third_party/flatbuffers/BUILD.bazel +../../../third_party/flatbuffers/CMake +../../../third_party/flatbuffers/CMakeLists.txt +../../../third_party/flatbuffers/CONTRIBUTING.md +../../../third_party/flatbuffers/Formatters.md +../../../third_party/flatbuffers/SECURITY.md +../../../third_party/flatbuffers/WORKSPACE +../../../third_party/flatbuffers/android +../../../third_party/flatbuffers/benchmarks +../../../third_party/flatbuffers/build_defs.bzl +../../../third_party/flatbuffers/conan/CMakeLists.txt +../../../third_party/flatbuffers/conan/appveyor/build.py +../../../third_party/flatbuffers/conan/appveyor/install.py +../../../third_party/flatbuffers/conan/build.py +../../../third_party/flatbuffers/conan/test_package/CMakeLists.txt +../../../third_party/flatbuffers/conan/test_package/conanfile.py +../../../third_party/flatbuffers/conanfile.py +../../../third_party/flatbuffers/dart/CHANGELOG.md +../../../third_party/flatbuffers/dart/README.md +../../../third_party/flatbuffers/dart/analysis_options.yaml +../../../third_party/flatbuffers/dart/example +../../../third_party/flatbuffers/dart/pubspec.yaml +../../../third_party/flatbuffers/dart/test +../../../third_party/flatbuffers/docs +../../../third_party/flatbuffers/go +../../../third_party/flatbuffers/grpc/README.md +../../../third_party/flatbuffers/grpc/examples +../../../third_party/flatbuffers/grpc/flatbuffers-java-grpc/pom.xml +../../../third_party/flatbuffers/grpc/pom.xml +../../../third_party/flatbuffers/grpc/samples +../../../third_party/flatbuffers/grpc/src/compiler/BUILD.bazel +../../../third_party/flatbuffers/grpc/tests +../../../third_party/flatbuffers/js/README.md +../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/jvmTest +../../../third_party/flatbuffers/kotlin/gradle.properties +../../../third_party/flatbuffers/mjs/README.md +../../../third_party/flatbuffers/net +../../../third_party/flatbuffers/package.json +../../../third_party/flatbuffers/php +../../../third_party/flatbuffers/pom.xml +../../../third_party/flatbuffers/python +../../../third_party/flatbuffers/readme.md +../../../third_party/flatbuffers/reflection/BUILD.bazel +../../../third_party/flatbuffers/rust +../../../third_party/flatbuffers/samples +../../../third_party/flatbuffers/scripts/check_generate_code.py +../../../third_party/flatbuffers/scripts/generate_code.py +../../../third_party/flatbuffers/snap/snapcraft.yaml +../../../third_party/flatbuffers/src/BUILD.bazel +../../../third_party/flatbuffers/swift.swiftformat +../../../third_party/flatbuffers/swift/BUILD.bazel +../../../third_party/flatbuffers/swift/README.md +../../../third_party/flatbuffers/tests +../../../third_party/flatbuffers/ts +../../../third_party/flatbuffers/typescript.bzl +../../../third_party/fontconfig +../../../third_party/freetype2/.clang-format +../../../third_party/freetype2/.git +../../../third_party/freetype2/.gitignore +../../../third_party/freetype2/.gitlab-ci.yml +../../../third_party/freetype2/.gitmodules +../../../third_party/freetype2/.mailmap +../../../third_party/freetype2/CMakeLists.txt +../../../third_party/freetype2/Makefile +../../../third_party/freetype2/README +../../../third_party/freetype2/README.git +../../../third_party/freetype2/builds +../../../third_party/freetype2/docs/.gitignore +../../../third_party/freetype2/docs/CHANGES +../../../third_party/freetype2/docs/CMAKE +../../../third_party/freetype2/docs/CUSTOMIZE +../../../third_party/freetype2/docs/DEBUG +../../../third_party/freetype2/docs/DOCGUIDE +../../../third_party/freetype2/docs/GPLv2.TXT +../../../third_party/freetype2/docs/INSTALL +../../../third_party/freetype2/docs/INSTALL.ANY +../../../third_party/freetype2/docs/INSTALL.CROSS +../../../third_party/freetype2/docs/INSTALL.GNU +../../../third_party/freetype2/docs/INSTALL.MAC +../../../third_party/freetype2/docs/INSTALL.UNIX +../../../third_party/freetype2/docs/INSTALL.VMS +../../../third_party/freetype2/docs/MAKEPP +../../../third_party/freetype2/docs/PROBLEMS +../../../third_party/freetype2/docs/README +../../../third_party/freetype2/docs/TODO +../../../third_party/freetype2/docs/VERSIONS.TXT +../../../third_party/freetype2/docs/formats.txt +../../../third_party/freetype2/docs/freetype-config.1 +../../../third_party/freetype2/docs/markdown +../../../third_party/freetype2/docs/oldlogs +../../../third_party/freetype2/docs/raster.txt +../../../third_party/freetype2/docs/release +../../../third_party/freetype2/meson.build +../../../third_party/freetype2/objs/.gitignore +../../../third_party/freetype2/objs/README +../../../third_party/freetype2/src/autofit/module.mk +../../../third_party/freetype2/src/autofit/rules.mk +../../../third_party/freetype2/src/base/rules.mk +../../../third_party/freetype2/src/bdf/README +../../../third_party/freetype2/src/bdf/module.mk +../../../third_party/freetype2/src/bdf/rules.mk +../../../third_party/freetype2/src/bzip2/rules.mk +../../../third_party/freetype2/src/cache/rules.mk +../../../third_party/freetype2/src/cff/module.mk +../../../third_party/freetype2/src/cff/rules.mk +../../../third_party/freetype2/src/cid/module.mk +../../../third_party/freetype2/src/cid/rules.mk +../../../third_party/freetype2/src/dlg/rules.mk +../../../third_party/freetype2/src/gxvalid/README +../../../third_party/freetype2/src/gxvalid/module.mk +../../../third_party/freetype2/src/gxvalid/rules.mk +../../../third_party/freetype2/src/gzip/README.freetype +../../../third_party/freetype2/src/gzip/rules.mk +../../../third_party/freetype2/src/lzw/rules.mk +../../../third_party/freetype2/src/otvalid/module.mk +../../../third_party/freetype2/src/otvalid/rules.mk +../../../third_party/freetype2/src/pcf/README +../../../third_party/freetype2/src/pcf/module.mk +../../../third_party/freetype2/src/pcf/rules.mk +../../../third_party/freetype2/src/pfr/module.mk +../../../third_party/freetype2/src/pfr/rules.mk +../../../third_party/freetype2/src/psaux/module.mk +../../../third_party/freetype2/src/psaux/rules.mk +../../../third_party/freetype2/src/pshinter/module.mk +../../../third_party/freetype2/src/pshinter/rules.mk +../../../third_party/freetype2/src/psnames/module.mk +../../../third_party/freetype2/src/psnames/rules.mk +../../../third_party/freetype2/src/raster/module.mk +../../../third_party/freetype2/src/raster/rules.mk +../../../third_party/freetype2/src/sdf/module.mk +../../../third_party/freetype2/src/sdf/rules.mk +../../../third_party/freetype2/src/sfnt/module.mk +../../../third_party/freetype2/src/sfnt/rules.mk +../../../third_party/freetype2/src/smooth/module.mk +../../../third_party/freetype2/src/smooth/rules.mk +../../../third_party/freetype2/src/svg/module.mk +../../../third_party/freetype2/src/svg/rules.mk +../../../third_party/freetype2/src/tools +../../../third_party/freetype2/src/truetype/module.mk +../../../third_party/freetype2/src/truetype/rules.mk +../../../third_party/freetype2/src/type1/module.mk +../../../third_party/freetype2/src/type1/rules.mk +../../../third_party/freetype2/src/type42/module.mk +../../../third_party/freetype2/src/type42/rules.mk +../../../third_party/freetype2/src/winfonts/module.mk +../../../third_party/freetype2/src/winfonts/rules.mk +../../../third_party/freetype2/tests +../../../third_party/freetype2/vms_make.com +../../../third_party/fuchsia-vulkan/.cmake-format.py +../../../third_party/fuchsia-vulkan/.git +../../../third_party/fuchsia-vulkan/.gitattributes +../../../third_party/fuchsia-vulkan/.gitignore +../../../third_party/fuchsia-vulkan/BUILD.md +../../../third_party/fuchsia-vulkan/CMakeLists.txt +../../../third_party/fuchsia-vulkan/CODE_OF_CONDUCT.md +../../../third_party/fuchsia-vulkan/OWNERS +../../../third_party/fuchsia-vulkan/README.fuchsia +../../../third_party/fuchsia-vulkan/README.md +../../../third_party/fuchsia-vulkan/cmake +../../../third_party/fuchsia-vulkan/registry/cgenerator.py +../../../third_party/fuchsia-vulkan/registry/conventions.py +../../../third_party/fuchsia-vulkan/registry/generator.py +../../../third_party/fuchsia-vulkan/registry/genvk.py +../../../third_party/fuchsia-vulkan/registry/reg.py +../../../third_party/fuchsia-vulkan/registry/spec_tools/util.py +../../../third_party/fuchsia-vulkan/registry/vkconventions.py +../../../third_party/glfw/.appveyor.yml +../../../third_party/glfw/.git +../../../third_party/glfw/.gitattributes +../../../third_party/glfw/.github +../../../third_party/glfw/.gitignore +../../../third_party/glfw/.mailmap +../../../third_party/glfw/CMake +../../../third_party/glfw/CMakeLists.txt +../../../third_party/glfw/CONTRIBUTORS.md +../../../third_party/glfw/README.md +../../../third_party/glfw/deps +../../../third_party/glfw/docs +../../../third_party/glfw/examples +../../../third_party/glfw/src/CMakeLists.txt +../../../third_party/glfw/tests +../../../third_party/googletest +../../../third_party/gradle +../../../third_party/gtest-parallel/.git +../../../third_party/gtest-parallel/.gitignore +../../../third_party/gtest-parallel/CONTRIBUTING.md +../../../third_party/gtest-parallel/README.md +../../../third_party/gtest-parallel/gtest_parallel.py +../../../third_party/gtest-parallel/gtest_parallel_mocks.py +../../../third_party/gtest-parallel/gtest_parallel_tests.py +../../../third_party/harfbuzz/.clang-format +../../../third_party/harfbuzz/.editorconfig +../../../third_party/harfbuzz/.git +../../../third_party/harfbuzz/.github +../../../third_party/harfbuzz/AUTHORS +../../../third_party/harfbuzz/BUILD.md +../../../third_party/harfbuzz/CMakeLists.txt +../../../third_party/harfbuzz/CONFIG.md +../../../third_party/harfbuzz/NEWS +../../../third_party/harfbuzz/README +../../../third_party/harfbuzz/README.fuchsia +../../../third_party/harfbuzz/README.md +../../../third_party/harfbuzz/README.mingw.md +../../../third_party/harfbuzz/README.python.md +../../../third_party/harfbuzz/RELEASING.md +../../../third_party/harfbuzz/TESTING.md +../../../third_party/harfbuzz/THANKS +../../../third_party/harfbuzz/TODO +../../../third_party/harfbuzz/docs +../../../third_party/harfbuzz/git.mk +../../../third_party/harfbuzz/m4/ax_check_link_flag.m4 +../../../third_party/harfbuzz/m4/ax_code_coverage.m4 +../../../third_party/harfbuzz/m4/ax_cxx_compile_stdcxx.m4 +../../../third_party/harfbuzz/m4/ax_pthread.m4 +../../../third_party/harfbuzz/meson.build +../../../third_party/harfbuzz/perf/meson.build +../../../third_party/harfbuzz/replace-enum-strings.cmake +../../../third_party/harfbuzz/src/Makefile.sources +../../../third_party/harfbuzz/src/check-c-linkage-decls.py +../../../third_party/harfbuzz/src/check-externs.py +../../../third_party/harfbuzz/src/check-header-guards.py +../../../third_party/harfbuzz/src/check-includes.py +../../../third_party/harfbuzz/src/check-libstdc++.py +../../../third_party/harfbuzz/src/check-static-inits.py +../../../third_party/harfbuzz/src/check-symbols.py +../../../third_party/harfbuzz/src/fix_get_types.py +../../../third_party/harfbuzz/src/gen-arabic-joining-list.py +../../../third_party/harfbuzz/src/gen-arabic-table.py +../../../third_party/harfbuzz/src/gen-def.py +../../../third_party/harfbuzz/src/gen-emoji-table.py +../../../third_party/harfbuzz/src/gen-harfbuzzcc.py +../../../third_party/harfbuzz/src/gen-hb-version.py +../../../third_party/harfbuzz/src/gen-indic-table.py +../../../third_party/harfbuzz/src/gen-os2-unicode-ranges.py +../../../third_party/harfbuzz/src/gen-ragel-artifacts.py +../../../third_party/harfbuzz/src/gen-tag-table.py +../../../third_party/harfbuzz/src/gen-ucd-table.py +../../../third_party/harfbuzz/src/gen-use-table.py +../../../third_party/harfbuzz/src/gen-vowel-constraints.py +../../../third_party/harfbuzz/src/meson.build +../../../third_party/harfbuzz/src/sample.py +../../../third_party/harfbuzz/subprojects/.gitignore +../../../third_party/harfbuzz/subprojects/packagefiles/ragel/meson.build +../../../third_party/harfbuzz/test +../../../third_party/harfbuzz/util +../../../third_party/icu/.git +../../../third_party/icu/DIR_METADATA +../../../third_party/icu/OWNERS +../../../third_party/icu/README.chromium +../../../third_party/icu/codereview.settings +../../../third_party/icu/filters +../../../third_party/icu/flutter/README.md +../../../third_party/icu/fuzzers +../../../third_party/icu/icu4c.css +../../../third_party/icu/license.html +../../../third_party/icu/readme.html +../../../third_party/icu/scripts +../../../third_party/icu/source/.clang-format +../../../third_party/icu/source/Makefile.in +../../../third_party/icu/source/acinclude.m4 +../../../third_party/icu/source/aclocal.m4 +../../../third_party/icu/source/common/BUILD.bazel +../../../third_party/icu/source/common/Makefile.in +../../../third_party/icu/source/common/rbbicst.pl +../../../third_party/icu/source/common/sources.txt +../../../third_party/icu/source/common/unicode/uvernum.h +../../../third_party/icu/source/config +../../../third_party/icu/source/data/BUILDRULES.py +../../../third_party/icu/source/data/Makefile.in +../../../third_party/icu/source/data/brkitr/LOCALE_DEPS.json +../../../third_party/icu/source/data/brkitr/dictionaries/burmesedict.txt +../../../third_party/icu/source/data/brkitr/dictionaries/cjdict.txt +../../../third_party/icu/source/data/brkitr/dictionaries/laodict.txt +../../../third_party/icu/source/data/brkitr/rules/README.md +../../../third_party/icu/source/data/build.xml +../../../third_party/icu/source/data/coll/LOCALE_DEPS.json +../../../third_party/icu/source/data/curr/LOCALE_DEPS.json +../../../third_party/icu/source/data/dtd +../../../third_party/icu/source/data/lang/LOCALE_DEPS.json +../../../third_party/icu/source/data/locales/LOCALE_DEPS.json +../../../third_party/icu/source/data/mappings/ucmcore.mk +../../../third_party/icu/source/data/mappings/ucmebcdic.mk +../../../third_party/icu/source/data/mappings/ucmfiles.mk +../../../third_party/icu/source/data/pkgdataMakefile.in +../../../third_party/icu/source/data/rbnf/LOCALE_DEPS.json +../../../third_party/icu/source/data/region/LOCALE_DEPS.json +../../../third_party/icu/source/data/sprep/sprepfiles.mk +../../../third_party/icu/source/data/unidata/norm2/BUILD.bazel +../../../third_party/icu/source/data/unit/LOCALE_DEPS.json +../../../third_party/icu/source/data/zone/LOCALE_DEPS.json +../../../third_party/icu/source/extra/Makefile.in +../../../third_party/icu/source/extra/scrptrun/Makefile.in +../../../third_party/icu/source/extra/scrptrun/readme.html +../../../third_party/icu/source/extra/scrptrun/sources.txt +../../../third_party/icu/source/extra/uconv/Makefile.in +../../../third_party/icu/source/extra/uconv/README +../../../third_party/icu/source/extra/uconv/pkgdataMakefile.in +../../../third_party/icu/source/extra/uconv/resfiles.mk +../../../third_party/icu/source/extra/uconv/samples +../../../third_party/icu/source/extra/uconv/sources.txt +../../../third_party/icu/source/extra/uconv/uconv.1.in +../../../third_party/icu/source/i18n/BUILD.bazel +../../../third_party/icu/source/i18n/Makefile.in +../../../third_party/icu/source/i18n/sources.txt +../../../third_party/icu/source/io/Makefile.in +../../../third_party/icu/source/io/sources.txt +../../../third_party/icu/source/python/icutools/__init__.py +../../../third_party/icu/source/python/icutools/databuilder/__init__.py +../../../third_party/icu/source/python/icutools/databuilder/__main__.py +../../../third_party/icu/source/python/icutools/databuilder/comment_stripper.py +../../../third_party/icu/source/python/icutools/databuilder/filtration.py +../../../third_party/icu/source/python/icutools/databuilder/renderers/__init__.py +../../../third_party/icu/source/python/icutools/databuilder/renderers/common_exec.py +../../../third_party/icu/source/python/icutools/databuilder/renderers/makefile.py +../../../third_party/icu/source/python/icutools/databuilder/request_types.py +../../../third_party/icu/source/python/icutools/databuilder/test +../../../third_party/icu/source/python/icutools/databuilder/utils.py +../../../third_party/icu/source/samples +../../../third_party/icu/source/stubdata/BUILD.bazel +../../../third_party/icu/source/stubdata/Makefile.in +../../../third_party/icu/source/stubdata/sources.txt +../../../third_party/icu/source/test +../../../third_party/icu/source/tools/Makefile.in +../../../third_party/icu/source/tools/ctestfw/Makefile.in +../../../third_party/icu/source/tools/ctestfw/sources.txt +../../../third_party/icu/source/tools/escapesrc/Makefile.in +../../../third_party/icu/source/tools/genbrk/Makefile.in +../../../third_party/icu/source/tools/genbrk/genbrk.1.in +../../../third_party/icu/source/tools/genbrk/sources.txt +../../../third_party/icu/source/tools/genccode/Makefile.in +../../../third_party/icu/source/tools/genccode/genccode.8.in +../../../third_party/icu/source/tools/genccode/sources.txt +../../../third_party/icu/source/tools/gencfu/Makefile.in +../../../third_party/icu/source/tools/gencfu/gencfu.1.in +../../../third_party/icu/source/tools/gencfu/sources.txt +../../../third_party/icu/source/tools/gencmn/Makefile.in +../../../third_party/icu/source/tools/gencmn/gencmn.8.in +../../../third_party/icu/source/tools/gencmn/sources.txt +../../../third_party/icu/source/tools/gencnval/Makefile.in +../../../third_party/icu/source/tools/gencnval/gencnval.1.in +../../../third_party/icu/source/tools/gencnval/sources.txt +../../../third_party/icu/source/tools/gencolusb/Makefile +../../../third_party/icu/source/tools/gencolusb/README.md +../../../third_party/icu/source/tools/gendict/Makefile.in +../../../third_party/icu/source/tools/gendict/gendict.1.in +../../../third_party/icu/source/tools/gendict/sources.txt +../../../third_party/icu/source/tools/gennorm2/BUILD.bazel +../../../third_party/icu/source/tools/gennorm2/Makefile.in +../../../third_party/icu/source/tools/gennorm2/sources.txt +../../../third_party/icu/source/tools/genrb/Makefile.in +../../../third_party/icu/source/tools/genrb/derb.1.in +../../../third_party/icu/source/tools/genrb/genrb.1.in +../../../third_party/icu/source/tools/genrb/sources.txt +../../../third_party/icu/source/tools/genren/Makefile +../../../third_party/icu/source/tools/genren/README +../../../third_party/icu/source/tools/gensprep/Makefile.in +../../../third_party/icu/source/tools/gensprep/gensprep.8.in +../../../third_party/icu/source/tools/gensprep/sources.txt +../../../third_party/icu/source/tools/gentest/Makefile.in +../../../third_party/icu/source/tools/gentest/sources.txt +../../../third_party/icu/source/tools/icuexportdata/Makefile.in +../../../third_party/icu/source/tools/icuexportdata/icuexportdata.1.in +../../../third_party/icu/source/tools/icuexportdata/sources.txt +../../../third_party/icu/source/tools/icuinfo/Makefile.in +../../../third_party/icu/source/tools/icuinfo/sources.txt +../../../third_party/icu/source/tools/icupkg/Makefile.in +../../../third_party/icu/source/tools/icupkg/icupkg.8.in +../../../third_party/icu/source/tools/icupkg/sources.txt +../../../third_party/icu/source/tools/icuswap/Makefile.in +../../../third_party/icu/source/tools/icuswap/sources.txt +../../../third_party/icu/source/tools/makeconv/Makefile.in +../../../third_party/icu/source/tools/makeconv/makeconv.1.in +../../../third_party/icu/source/tools/makeconv/sources.txt +../../../third_party/icu/source/tools/memcheck/ICUMemCheck.pl +../../../third_party/icu/source/tools/pkgdata/Makefile.in +../../../third_party/icu/source/tools/pkgdata/pkgdata.1.in +../../../third_party/icu/source/tools/pkgdata/sources.txt +../../../third_party/icu/source/tools/toolutil/BUILD.bazel +../../../third_party/icu/source/tools/toolutil/Makefile.in +../../../third_party/icu/source/tools/toolutil/sources.txt +../../../third_party/icu/source/tools/tzcode/Makefile.in +../../../third_party/icu/source/tools/tzcode/readme.txt +../../../third_party/imgui +../../../third_party/inja/.clang-format +../../../third_party/inja/.git +../../../third_party/inja/.github +../../../third_party/inja/.gitignore +../../../third_party/inja/CMakeLists.txt +../../../third_party/inja/README.md +../../../third_party/inja/cmake +../../../third_party/inja/doc +../../../third_party/inja/meson.build +../../../third_party/inja/requirements.txt +../../../third_party/inja/scripts/amalgamate_config.json +../../../third_party/inja/test +../../../third_party/inja/third_party/amalgamate +../../../third_party/inja/third_party/include/doctest +../../../third_party/java +../../../third_party/json/.clang-format +../../../third_party/json/.clang-tidy +../../../third_party/json/.git +../../../third_party/json/.github +../../../third_party/json/.gitignore +../../../third_party/json/.lgtm.yml +../../../third_party/json/.reuse +../../../third_party/json/BUILD.bazel +../../../third_party/json/CITATION.cff +../../../third_party/json/CMakeLists.txt +../../../third_party/json/ChangeLog.md +../../../third_party/json/Makefile +../../../third_party/json/README.md +../../../third_party/json/WORKSPACE.bazel +../../../third_party/json/cmake +../../../third_party/json/docs +../../../third_party/json/meson.build +../../../third_party/json/tests +../../../third_party/json/tools/amalgamate/CHANGES.md +../../../third_party/json/tools/amalgamate/README.md +../../../third_party/json/tools/amalgamate/amalgamate.py +../../../third_party/json/tools/gdb_pretty_printer/README.md +../../../third_party/json/tools/gdb_pretty_printer/nlohmann-json.py +../../../third_party/json/tools/generate_natvis/README.md +../../../third_party/json/tools/generate_natvis/generate_natvis.py +../../../third_party/json/tools/serve_header/README.md +../../../third_party/json/tools/serve_header/requirements.txt +../../../third_party/json/tools/serve_header/serve_header.py +../../../third_party/khronos/.git +../../../third_party/khronos/DEPS +../../../third_party/khronos/DIR_METADATA +../../../third_party/khronos/OWNERS +../../../third_party/khronos/README.chromium +../../../third_party/libcxx/.clang-format +../../../third_party/libcxx/.clang-tidy +../../../third_party/libcxx/.git +../../../third_party/libcxx/.gitignore +../../../third_party/libcxx/CMakeLists.txt +../../../third_party/libcxx/CREDITS.TXT +../../../third_party/libcxx/TODO.TXT +../../../third_party/libcxx/appveyor-reqs-install.cmd +../../../third_party/libcxx/appveyor.yml +../../../third_party/libcxx/benchmarks +../../../third_party/libcxx/cmake +../../../third_party/libcxx/docs +../../../third_party/libcxx/include/CMakeLists.txt +../../../third_party/libcxx/include/version +../../../third_party/libcxx/lib/abi/CHANGELOG.TXT +../../../third_party/libcxx/lib/abi/CMakeLists.txt +../../../third_party/libcxx/lib/abi/README.TXT +../../../third_party/libcxx/src/CMakeLists.txt +../../../third_party/libcxx/src/ryu/README.txt +../../../third_party/libcxx/src/support/solaris +../../../third_party/libcxx/test +../../../third_party/libcxx/utils +../../../third_party/libcxxabi/.clang-format +../../../third_party/libcxxabi/.git +../../../third_party/libcxxabi/.gitignore +../../../third_party/libcxxabi/CMakeLists.txt +../../../third_party/libcxxabi/CREDITS.TXT +../../../third_party/libcxxabi/cmake +../../../third_party/libcxxabi/fuzz/CMakeLists.txt +../../../third_party/libcxxabi/include/CMakeLists.txt +../../../third_party/libcxxabi/src/CMakeLists.txt +../../../third_party/libcxxabi/src/demangle/.clang-format +../../../third_party/libcxxabi/src/demangle/README.txt +../../../third_party/libcxxabi/test +../../../third_party/libcxxabi/www +../../../third_party/libjpeg-turbo/.git +../../../third_party/libjpeg-turbo/.gitignore +../../../third_party/libjpeg-turbo/BUILDING.md +../../../third_party/libjpeg-turbo/CMakeLists.txt +../../../third_party/libjpeg-turbo/ChangeLog.md +../../../third_party/libjpeg-turbo/README.fuchsia +../../../third_party/libjpeg-turbo/README.md +../../../third_party/libjpeg-turbo/acinclude.m4 +../../../third_party/libjpeg-turbo/change.log +../../../third_party/libjpeg-turbo/cjpeg.1 +../../../third_party/libjpeg-turbo/coderules.txt +../../../third_party/libjpeg-turbo/djpeg.1 +../../../third_party/libjpeg-turbo/doxygen-extra.css +../../../third_party/libjpeg-turbo/doxygen.config +../../../third_party/libjpeg-turbo/jpegtran.1 +../../../third_party/libjpeg-turbo/rdjpgcom.1 +../../../third_party/libjpeg-turbo/simd/CMakeLists.txt +../../../third_party/libjpeg-turbo/structure.txt +../../../third_party/libjpeg-turbo/wrjpgcom.1 +../../../third_party/libpng/.git +../../../third_party/libpng/.travis.yml +../../../third_party/libpng/ANNOUNCE +../../../third_party/libpng/AUTHORS +../../../third_party/libpng/CHANGES +../../../third_party/libpng/CMakeLists.txt +../../../third_party/libpng/INSTALL +../../../third_party/libpng/Makefile.in +../../../third_party/libpng/README +../../../third_party/libpng/TODO +../../../third_party/libpng/TRADEMARK +../../../third_party/libpng/aclocal.m4 +../../../third_party/libpng/contrib +../../../third_party/libpng/libpng-manual.txt +../../../third_party/libpng/mips +../../../third_party/libpng/png.5 +../../../third_party/libpng/powerpc +../../../third_party/libpng/projects +../../../third_party/libpng/scripts +../../../third_party/libpng/tests +../../../third_party/libtess2/.git +../../../third_party/libtess2/.gitignore +../../../third_party/libtess2/Contrib/nanosvg.c +../../../third_party/libtess2/Contrib/nanosvg.h +../../../third_party/libtess2/Example +../../../third_party/libtess2/README.md +../../../third_party/libtess2/alg_outline.md +../../../third_party/libwebp/.git +../../../third_party/libwebp/.gitattributes +../../../third_party/libwebp/.gitignore +../../../third_party/libwebp/.mailmap +../../../third_party/libwebp/AUTHORS +../../../third_party/libwebp/Android.mk +../../../third_party/libwebp/CMakeLists.txt +../../../third_party/libwebp/ChangeLog +../../../third_party/libwebp/Makefile.vc +../../../third_party/libwebp/NEWS +../../../third_party/libwebp/PATENTS +../../../third_party/libwebp/README +../../../third_party/libwebp/README.mux +../../../third_party/libwebp/README.webp_js +../../../third_party/libwebp/build.gradle +../../../third_party/libwebp/cmake +../../../third_party/libwebp/codereview.settings +../../../third_party/libwebp/doc +../../../third_party/libwebp/examples +../../../third_party/libwebp/gradle +../../../third_party/libwebp/gradle.properties +../../../third_party/libwebp/imageio/Android.mk +../../../third_party/libwebp/m4/.gitignore +../../../third_party/libwebp/m4/ax_pthread.m4 +../../../third_party/libwebp/makefile.unix +../../../third_party/libwebp/man/cwebp.1 +../../../third_party/libwebp/man/dwebp.1 +../../../third_party/libwebp/man/gif2webp.1 +../../../third_party/libwebp/man/img2webp.1 +../../../third_party/libwebp/man/vwebp.1 +../../../third_party/libwebp/man/webpinfo.1 +../../../third_party/libwebp/man/webpmux.1 +../../../third_party/libwebp/swig +../../../third_party/libwebp/tests +../../../third_party/libwebp/webp_js +../../../third_party/libxml +../../../third_party/ocmock +../../../third_party/pkg/archive +../../../third_party/pkg/equatable +../../../third_party/pkg/file +../../../third_party/pkg/flutter_packages +../../../third_party/pkg/gcloud +../../../third_party/pkg/googleapis +../../../third_party/pkg/platform +../../../third_party/pkg/process +../../../third_party/pkg/process_runner +../../../third_party/pkg/quiver/.git +../../../third_party/pkg/quiver/.gitattributes +../../../third_party/pkg/quiver/.github +../../../third_party/pkg/quiver/.gitignore +../../../third_party/pkg/quiver/.travis.yml +../../../third_party/pkg/quiver/AUTHORS +../../../third_party/pkg/quiver/CHANGELOG.md +../../../third_party/pkg/quiver/CONTRIBUTING.md +../../../third_party/pkg/quiver/PATENTS +../../../third_party/pkg/quiver/README.md +../../../third_party/pkg/quiver/analysis_options.yaml +../../../third_party/pkg/quiver/dart_test.yaml +../../../third_party/pkg/quiver/lib/testing +../../../third_party/pkg/quiver/pubspec.yaml +../../../third_party/pkg/quiver/test +../../../third_party/pkg/vector_math +../../../third_party/pyyaml +../../../third_party/rapidjson/.git +../../../third_party/rapidjson/.gitattributes +../../../third_party/rapidjson/.gitignore +../../../third_party/rapidjson/.gitmodules +../../../third_party/rapidjson/.travis.yml +../../../third_party/rapidjson/CHANGELOG.md +../../../third_party/rapidjson/CMakeLists.txt +../../../third_party/rapidjson/CMakeModules/FindGTestSrc.cmake +../../../third_party/rapidjson/README.fuchsia +../../../third_party/rapidjson/README.fuchsia.md +../../../third_party/rapidjson/RapidJSON.pc.in +../../../third_party/rapidjson/RapidJSONConfig.cmake.in +../../../third_party/rapidjson/RapidJSONConfigVersion.cmake.in +../../../third_party/rapidjson/appveyor.yml +../../../third_party/rapidjson/contrib +../../../third_party/rapidjson/doc +../../../third_party/rapidjson/docker/debian/Dockerfile +../../../third_party/rapidjson/example +../../../third_party/rapidjson/include_dirs.js +../../../third_party/rapidjson/library.json +../../../third_party/rapidjson/package.json +../../../third_party/rapidjson/rapidjson.autopkg +../../../third_party/rapidjson/readme.md +../../../third_party/rapidjson/readme.zh-cn.md +../../../third_party/rapidjson/test +../../../third_party/root_certificates/.git +../../../third_party/root_certificates/README.google +../../../third_party/root_certificates/certdata.pem +../../../third_party/root_certificates/certdata.txt +../../../third_party/root_certificates/codereview.settings +../../../third_party/shaderc/.clang-format +../../../third_party/shaderc/.git +../../../third_party/shaderc/.gitignore +../../../third_party/shaderc/AUTHORS +../../../third_party/shaderc/Android.mk +../../../third_party/shaderc/CHANGES +../../../third_party/shaderc/CMakeLists.txt +../../../third_party/shaderc/CONTRIBUTING.md +../../../third_party/shaderc/CONTRIBUTORS +../../../third_party/shaderc/DEPS +../../../third_party/shaderc/Dockerfile +../../../third_party/shaderc/README.md +../../../third_party/shaderc/android_test/Android.mk +../../../third_party/shaderc/android_test/jni/Android.mk +../../../third_party/shaderc/android_test/jni/Application.mk +../../../third_party/shaderc/cmake +../../../third_party/shaderc/examples +../../../third_party/shaderc/glslc/CMakeLists.txt +../../../third_party/shaderc/glslc/README.asciidoc +../../../third_party/shaderc/glslc/test +../../../third_party/shaderc/libshaderc/Android.mk +../../../third_party/shaderc/libshaderc/CMakeLists.txt +../../../third_party/shaderc/libshaderc/README.md +../../../third_party/shaderc/libshaderc_util/Android.mk +../../../third_party/shaderc/libshaderc_util/CMakeLists.txt +../../../third_party/shaderc/libshaderc_util/testdata +../../../third_party/shaderc/license-checker.cfg +../../../third_party/shaderc/third_party/Android.mk +../../../third_party/shaderc/third_party/CMakeLists.txt +../../../third_party/shaderc/third_party/LICENSE.glslang +../../../third_party/shaderc/third_party/LICENSE.spirv-tools +../../../third_party/shaderc/utils/add_copyright.py +../../../third_party/shaderc/utils/remove-file-by-suffix.py +../../../third_party/shaderc/utils/update_build_version.py +../../../third_party/skia +../../../third_party/skia/.bazelrc +../../../third_party/skia/.bazelversion +../../../third_party/skia/.clang-format +../../../third_party/skia/.clang-tidy +../../../third_party/skia/.git +../../../third_party/skia/.gitignore +../../../third_party/skia/.gn +../../../third_party/skia/.vpython +../../../third_party/skia/AUTHORS +../../../third_party/skia/BUILD.bazel +../../../third_party/skia/CONTRIBUTING +../../../third_party/skia/CQ_COMMITTERS +../../../third_party/skia/DEPS +../../../third_party/skia/DIR_METADATA +../../../third_party/skia/OWNERS +../../../third_party/skia/OWNERS.android +../../../third_party/skia/PRESUBMIT.py +../../../third_party/skia/README +../../../third_party/skia/README.chromium +../../../third_party/skia/WORKSPACE.bazel +../../../third_party/skia/bazel +../../../third_party/skia/bench +../../../third_party/skia/codereview.settings +../../../third_party/skia/defines.bzl +../../../third_party/skia/demos.skia.org +../../../third_party/skia/docker/Makefile +../../../third_party/skia/docker/README.md +../../../third_party/skia/docker/binary-size/Dockerfile +../../../third_party/skia/docker/cmake-release/Dockerfile +../../../third_party/skia/docker/skia-build-tools/Dockerfile +../../../third_party/skia/docker/skia-release/Dockerfile +../../../third_party/skia/docker/skia-wasm-release/Dockerfile +../../../third_party/skia/docker/skia-with-swift-shader-base/Dockerfile +../../../third_party/skia/docs +../../../third_party/skia/example +../../../third_party/skia/experimental +../../../third_party/skia/fuzz/README.md +../../../third_party/skia/gn/BUILD.bazel +../../../third_party/skia/gn/__init__.py +../../../third_party/skia/gn/call.py +../../../third_party/skia/gn/checkdir.py +../../../third_party/skia/gn/codesign_ios.py +../../../third_party/skia/gn/compile_ib_files.py +../../../third_party/skia/gn/compile_sksl_tests.py +../../../third_party/skia/gn/copy_git_directory.py +../../../third_party/skia/gn/cp.py +../../../third_party/skia/gn/find_headers.py +../../../third_party/skia/gn/find_msvc.py +../../../third_party/skia/gn/find_xcode_sysroot.py +../../../third_party/skia/gn/gen_plist_ios.py +../../../third_party/skia/gn/gn_meta_sln.py +../../../third_party/skia/gn/gn_to_bp.py +../../../third_party/skia/gn/gn_to_bp_utils.py +../../../third_party/skia/gn/gn_to_cmake.py +../../../third_party/skia/gn/highest_version_dir.py +../../../third_party/skia/gn/is_clang.py +../../../third_party/skia/gn/make_gm_gni.py +../../../third_party/skia/gn/minify_sksl.py +../../../third_party/skia/gn/minify_sksl_tests.py +../../../third_party/skia/gn/push_to_android.py +../../../third_party/skia/gn/rm.py +../../../third_party/skia/gn/run_sksllex.py +../../../third_party/skia/gn/skqp_gn_args.py +../../../third_party/skia/gn/toolchain/num_cpus.py +../../../third_party/skia/go_repositories.bzl +../../../third_party/skia/include/BUILD.bazel +../../../third_party/skia/include/OWNERS +../../../third_party/skia/include/android/BUILD.bazel +../../../third_party/skia/include/codec/BUILD.bazel +../../../third_party/skia/include/config/BUILD.bazel +../../../third_party/skia/include/core/BUILD.bazel +../../../third_party/skia/include/docs/BUILD.bazel +../../../third_party/skia/include/effects/BUILD.bazel +../../../third_party/skia/include/encode/BUILD.bazel +../../../third_party/skia/include/gpu/BUILD.bazel +../../../third_party/skia/include/gpu/d3d/BUILD.bazel +../../../third_party/skia/include/gpu/dawn/BUILD.bazel +../../../third_party/skia/include/gpu/gl/BUILD.bazel +../../../third_party/skia/include/gpu/gl/egl/BUILD.bazel +../../../third_party/skia/include/gpu/gl/glx/BUILD.bazel +../../../third_party/skia/include/gpu/graphite/mtl/BUILD.bazel +../../../third_party/skia/include/gpu/mock/BUILD.bazel +../../../third_party/skia/include/gpu/mtl/BUILD.bazel +../../../third_party/skia/include/gpu/vk/BUILD.bazel +../../../third_party/skia/include/pathops/BUILD.bazel +../../../third_party/skia/include/ports/BUILD.bazel +../../../third_party/skia/include/private/BUILD.bazel +../../../third_party/skia/include/private/OWNERS +../../../third_party/skia/include/private/chromium/BUILD.bazel +../../../third_party/skia/include/private/gpu/BUILD.bazel +../../../third_party/skia/include/private/gpu/ganesh/BUILD.bazel +../../../third_party/skia/include/private/gpu/vk/BUILD.bazel +../../../third_party/skia/include/sksl/BUILD.bazel +../../../third_party/skia/include/sksl/OWNERS +../../../third_party/skia/include/svg/BUILD.bazel +../../../third_party/skia/include/third_party/vulkan/BUILD.bazel +../../../third_party/skia/include/utils/BUILD.bazel +../../../third_party/skia/include/utils/mac/BUILD.bazel +../../../third_party/skia/infra +../../../third_party/skia/modules/canvaskit/.gitignore +../../../third_party/skia/modules/canvaskit/BUILD.bazel +../../../third_party/skia/modules/canvaskit/CHANGELOG.md +../../../third_party/skia/modules/canvaskit/Makefile +../../../third_party/skia/modules/canvaskit/README.md +../../../third_party/skia/modules/canvaskit/external_test/.gitignore +../../../third_party/skia/modules/canvaskit/external_test/Makefile +../../../third_party/skia/modules/canvaskit/external_test/typescript_browser/package.json +../../../third_party/skia/modules/canvaskit/external_test/typescript_browser_es6/package.json +../../../third_party/skia/modules/canvaskit/fonts/README.md +../../../third_party/skia/modules/canvaskit/go/gold_test_env +../../../third_party/skia/modules/canvaskit/npm_build/.gitignore +../../../third_party/skia/modules/canvaskit/npm_build/CODE_OF_CONDUCT.md +../../../third_party/skia/modules/canvaskit/npm_build/CONTRIBUTING.md +../../../third_party/skia/modules/canvaskit/npm_build/README.md +../../../third_party/skia/modules/canvaskit/npm_build/example.html +../../../third_party/skia/modules/canvaskit/npm_build/package.json +../../../third_party/skia/modules/canvaskit/npm_build/types/README.md +../../../third_party/skia/modules/canvaskit/package.json +../../../third_party/skia/modules/canvaskit/tests +../../../third_party/skia/modules/canvaskit/wasm_tools/SIMD/.gitignore +../../../third_party/skia/modules/jetski/README +../../../third_party/skia/modules/particles/BUILD.bazel +../../../third_party/skia/modules/particles/include/BUILD.bazel +../../../third_party/skia/modules/particles/src/BUILD.bazel +../../../third_party/skia/modules/pathkit/.gitignore +../../../third_party/skia/modules/pathkit/CHANGELOG.md +../../../third_party/skia/modules/pathkit/Makefile +../../../third_party/skia/modules/pathkit/README.md +../../../third_party/skia/modules/pathkit/npm-asmjs/CODE_OF_CONDUCT.md +../../../third_party/skia/modules/pathkit/npm-asmjs/CONTRIBUTING.md +../../../third_party/skia/modules/pathkit/npm-asmjs/README.md +../../../third_party/skia/modules/pathkit/npm-asmjs/example.html +../../../third_party/skia/modules/pathkit/npm-asmjs/package.json +../../../third_party/skia/modules/pathkit/npm-wasm/CODE_OF_CONDUCT.md +../../../third_party/skia/modules/pathkit/npm-wasm/CONTRIBUTING.md +../../../third_party/skia/modules/pathkit/npm-wasm/README.md +../../../third_party/skia/modules/pathkit/npm-wasm/example.html +../../../third_party/skia/modules/pathkit/npm-wasm/package.json +../../../third_party/skia/modules/pathkit/package.json +../../../third_party/skia/modules/pathkit/tests +../../../third_party/skia/modules/skcms/BUILD.bazel +../../../third_party/skia/modules/skcms/OWNERS +../../../third_party/skia/modules/skcms/README.chromium +../../../third_party/skia/modules/skcms/version.sha1 +../../../third_party/skia/modules/skottie/BUILD.bazel +../../../third_party/skia/modules/skottie/fuzz/BUILD.bazel +../../../third_party/skia/modules/skottie/gm/BUILD.bazel +../../../third_party/skia/modules/skottie/include/BUILD.bazel +../../../third_party/skia/modules/skottie/src/BUILD.bazel +../../../third_party/skia/modules/skottie/src/animator/BUILD.bazel +../../../third_party/skia/modules/skottie/src/effects/BUILD.bazel +../../../third_party/skia/modules/skottie/src/layers/BUILD.bazel +../../../third_party/skia/modules/skottie/src/layers/shapelayer/BUILD.bazel +../../../third_party/skia/modules/skottie/src/text/BUILD.bazel +../../../third_party/skia/modules/skottie/tests +../../../third_party/skia/modules/skottie/utils/BUILD.bazel +../../../third_party/skia/modules/skparagraph/BUILD.bazel +../../../third_party/skia/modules/skparagraph/bench/BUILD.bazel +../../../third_party/skia/modules/skparagraph/gm/BUILD.bazel +../../../third_party/skia/modules/skparagraph/include/BUILD.bazel +../../../third_party/skia/modules/skparagraph/slides/BUILD.bazel +../../../third_party/skia/modules/skparagraph/src/BUILD.bazel +../../../third_party/skia/modules/skparagraph/tests +../../../third_party/skia/modules/skparagraph/utils/BUILD.bazel +../../../third_party/skia/modules/skplaintexteditor/README.md +../../../third_party/skia/modules/skresources/BUILD.bazel +../../../third_party/skia/modules/skresources/include/BUILD.bazel +../../../third_party/skia/modules/skresources/src/BUILD.bazel +../../../third_party/skia/modules/sksg/BUILD.bazel +../../../third_party/skia/modules/sksg/include/BUILD.bazel +../../../third_party/skia/modules/sksg/slides/BUILD.bazel +../../../third_party/skia/modules/sksg/src/BUILD.bazel +../../../third_party/skia/modules/sksg/tests +../../../third_party/skia/modules/skshaper/BUILD.bazel +../../../third_party/skia/modules/skshaper/include/BUILD.bazel +../../../third_party/skia/modules/skshaper/src/BUILD.bazel +../../../third_party/skia/modules/skshaper/tests +../../../third_party/skia/modules/skunicode/BUILD.bazel +../../../third_party/skia/modules/skunicode/include/BUILD.bazel +../../../third_party/skia/modules/skunicode/src/BUILD.bazel +../../../third_party/skia/modules/svg/include/BUILD.bazel +../../../third_party/skia/modules/svg/src/BUILD.bazel +../../../third_party/skia/modules/svg/tests +../../../third_party/skia/modules/svg/utils/BUILD.bazel +../../../third_party/skia/package.json +../../../third_party/skia/platform_tools +../../../third_party/skia/public.bzl +../../../third_party/skia/requirements.txt +../../../third_party/skia/resources +../../../third_party/skia/site +../../../third_party/skia/specs +../../../third_party/skia/src/BUILD.bazel +../../../third_party/skia/src/android/BUILD.bazel +../../../third_party/skia/src/codec/BUILD.bazel +../../../third_party/skia/src/core/BUILD.bazel +../../../third_party/skia/src/effects/BUILD.bazel +../../../third_party/skia/src/effects/imagefilters/BUILD.bazel +../../../third_party/skia/src/fonts/BUILD.bazel +../../../third_party/skia/src/gpu/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/d3d/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/dawn/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/effects/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/geometry/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/gl/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/gl/android/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/gl/builders/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/gl/egl/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/gl/glx/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/gl/iOS/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/gl/mac/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/gl/webgl/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/gl/win/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/glsl/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/gradients/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/gradients/README.md +../../../third_party/skia/src/gpu/ganesh/mock/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/mtl/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/ops/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/tessellate/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/text/BUILD.bazel +../../../third_party/skia/src/gpu/ganesh/vk/BUILD.bazel +../../../third_party/skia/src/gpu/gl/BUILD.bazel +../../../third_party/skia/src/gpu/mtl/BUILD.bazel +../../../third_party/skia/src/gpu/piet/BUILD.bazel +../../../third_party/skia/src/gpu/piet/README.md +../../../third_party/skia/src/gpu/tessellate/BUILD.bazel +../../../third_party/skia/src/gpu/vk/BUILD.bazel +../../../third_party/skia/src/image/BUILD.bazel +../../../third_party/skia/src/images/BUILD.bazel +../../../third_party/skia/src/lazy/BUILD.bazel +../../../third_party/skia/src/opts/BUILD.bazel +../../../third_party/skia/src/pathops/BUILD.bazel +../../../third_party/skia/src/pdf/BUILD.bazel +../../../third_party/skia/src/ports/BUILD.bazel +../../../third_party/skia/src/sfnt/BUILD.bazel +../../../third_party/skia/src/shaders/BUILD.bazel +../../../third_party/skia/src/shaders/gradients/BUILD.bazel +../../../third_party/skia/src/sksl/BUILD.bazel +../../../third_party/skia/src/sksl/README.md +../../../third_party/skia/src/sksl/analysis/BUILD.bazel +../../../third_party/skia/src/sksl/codegen/BUILD.bazel +../../../third_party/skia/src/sksl/dsl/BUILD.bazel +../../../third_party/skia/src/sksl/dsl/priv/BUILD.bazel +../../../third_party/skia/src/sksl/ir/BUILD.bazel +../../../third_party/skia/src/sksl/lex/BUILD.bazel +../../../third_party/skia/src/sksl/tracing/BUILD.bazel +../../../third_party/skia/src/sksl/transform/BUILD.bazel +../../../third_party/skia/src/svg/BUILD.bazel +../../../third_party/skia/src/text/BUILD.bazel +../../../third_party/skia/src/text/gpu/BUILD.bazel +../../../third_party/skia/src/utils/BUILD.bazel +../../../third_party/skia/src/utils/mac/BUILD.bazel +../../../third_party/skia/src/utils/win/BUILD.bazel +../../../third_party/skia/src/xml/BUILD.bazel +../../../third_party/skia/src/xps/BUILD.bazel +../../../third_party/skia/tests +../../../third_party/skia/third_party/README +../../../third_party/skia/third_party/etc1/BUILD.bazel +../../../third_party/skia/third_party/etc1/README.google +../../../third_party/skia/third_party/freetype2 +../../../third_party/skia/third_party/harfbuzz/README +../../../third_party/skia/third_party/icu +../../../third_party/skia/third_party/libjpeg-turbo +../../../third_party/skia/third_party/libpng +../../../third_party/skia/third_party/lua +../../../third_party/skia/third_party/piet-gpu/Makefile +../../../third_party/skia/third_party/vulkanmemoryallocator/BUILD.bazel +../../../third_party/skia/toolchain/BUILD.bazel +../../../third_party/skia/toolchain/clang_layering_check.bzl +../../../third_party/skia/toolchain/download_linux_amd64_toolchain.bzl +../../../third_party/skia/toolchain/download_mac_toolchain.bzl +../../../third_party/skia/toolchain/download_toolchains.bzl +../../../third_party/skia/toolchain/linux_amd64_toolchain_config.bzl +../../../third_party/skia/toolchain/mac_toolchain_config.bzl +../../../third_party/skia/toolchain/utils.bzl +../../../third_party/skia/tools +../../../third_party/sqlite/.git +../../../third_party/sqlite/.gitignore +../../../third_party/sqlite/GIT_REVISION +../../../third_party/sqlite/LAST_UPDATE +../../../third_party/sqlite/Makefile +../../../third_party/sqlite/README.md +../../../third_party/sqlite/VERSION +../../../third_party/swiftshader +../../../third_party/tinygltf +../../../third_party/vulkan-deps/.git +../../../third_party/vulkan-deps/.gitattributes +../../../third_party/vulkan-deps/.gitignore +../../../third_party/vulkan-deps/DEPS +../../../third_party/vulkan-deps/OWNERS +../../../third_party/vulkan-deps/README.chromium +../../../third_party/vulkan-deps/README.md +../../../third_party/vulkan-deps/additional_readme_paths.json +../../../third_party/vulkan-deps/glslang/DIR_METADATA +../../../third_party/vulkan-deps/glslang/LICENSE +../../../third_party/vulkan-deps/glslang/README.chromium +../../../third_party/vulkan-deps/glslang/src/.appveyor.yml +../../../third_party/vulkan-deps/glslang/src/.clang-format +../../../third_party/vulkan-deps/glslang/src/.git +../../../third_party/vulkan-deps/glslang/src/.gitattributes +../../../third_party/vulkan-deps/glslang/src/.github +../../../third_party/vulkan-deps/glslang/src/.gitignore +../../../third_party/vulkan-deps/glslang/src/.gn +../../../third_party/vulkan-deps/glslang/src/Android.mk +../../../third_party/vulkan-deps/glslang/src/BUILD.bazel +../../../third_party/vulkan-deps/glslang/src/CHANGES.md +../../../third_party/vulkan-deps/glslang/src/CMakeLists.txt +../../../third_party/vulkan-deps/glslang/src/CODE_OF_CONDUCT.md +../../../third_party/vulkan-deps/glslang/src/ChooseMSVCCRT.cmake +../../../third_party/vulkan-deps/glslang/src/DEPS +../../../third_party/vulkan-deps/glslang/src/External/CMakeLists.txt +../../../third_party/vulkan-deps/glslang/src/LICENSE.txt +../../../third_party/vulkan-deps/glslang/src/OGLCompilersDLL/CMakeLists.txt +../../../third_party/vulkan-deps/glslang/src/README-spirv-remap.txt +../../../third_party/vulkan-deps/glslang/src/README.md +../../../third_party/vulkan-deps/glslang/src/SPIRV/CMakeLists.txt +../../../third_party/vulkan-deps/glslang/src/StandAlone/CMakeLists.txt +../../../third_party/vulkan-deps/glslang/src/Test +../../../third_party/vulkan-deps/glslang/src/WORKSPACE +../../../third_party/vulkan-deps/glslang/src/_config.yml +../../../third_party/vulkan-deps/glslang/src/build_info.py +../../../third_party/vulkan-deps/glslang/src/gen_extension_headers.py +../../../third_party/vulkan-deps/glslang/src/glslang/CMakeLists.txt +../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/glslang.m4 +../../../third_party/vulkan-deps/glslang/src/glslang/OSDependent/Unix/CMakeLists.txt +../../../third_party/vulkan-deps/glslang/src/glslang/OSDependent/Web +../../../third_party/vulkan-deps/glslang/src/glslang/OSDependent/Windows/CMakeLists.txt +../../../third_party/vulkan-deps/glslang/src/gtests/CMakeLists.txt +../../../third_party/vulkan-deps/glslang/src/gtests/README.md +../../../third_party/vulkan-deps/glslang/src/hlsl/CMakeLists.txt +../../../third_party/vulkan-deps/glslang/src/known_good.json +../../../third_party/vulkan-deps/glslang/src/known_good_khr.json +../../../third_party/vulkan-deps/glslang/src/kokoro +../../../third_party/vulkan-deps/glslang/src/license-checker.cfg +../../../third_party/vulkan-deps/glslang/src/ndk_test/Android.mk +../../../third_party/vulkan-deps/glslang/src/ndk_test/jni/Application.mk +../../../third_party/vulkan-deps/glslang/src/parse_version.cmake +../../../third_party/vulkan-deps/glslang/src/update_glslang_sources.py +../../../third_party/vulkan-deps/spirv-cross/DIR_METADATA +../../../third_party/vulkan-deps/spirv-cross/README.chromium +../../../third_party/vulkan-deps/spirv-cross/src/.clang-format +../../../third_party/vulkan-deps/spirv-cross/src/.git +../../../third_party/vulkan-deps/spirv-cross/src/.github +../../../third_party/vulkan-deps/spirv-cross/src/.gitignore +../../../third_party/vulkan-deps/spirv-cross/src/.reuse +../../../third_party/vulkan-deps/spirv-cross/src/CMakeLists.txt +../../../third_party/vulkan-deps/spirv-cross/src/CODE_OF_CONDUCT.adoc +../../../third_party/vulkan-deps/spirv-cross/src/LICENSES +../../../third_party/vulkan-deps/spirv-cross/src/Makefile +../../../third_party/vulkan-deps/spirv-cross/src/README.md +../../../third_party/vulkan-deps/spirv-cross/src/appveyor.yml +../../../third_party/vulkan-deps/spirv-cross/src/cmake +../../../third_party/vulkan-deps/spirv-cross/src/samples +../../../third_party/vulkan-deps/spirv-cross/src/shaders +../../../third_party/vulkan-deps/spirv-cross/src/shaders-hlsl +../../../third_party/vulkan-deps/spirv-cross/src/shaders-hlsl-no-opt +../../../third_party/vulkan-deps/spirv-cross/src/shaders-msl +../../../third_party/vulkan-deps/spirv-cross/src/shaders-msl-no-opt +../../../third_party/vulkan-deps/spirv-cross/src/shaders-no-opt +../../../third_party/vulkan-deps/spirv-cross/src/shaders-other +../../../third_party/vulkan-deps/spirv-cross/src/shaders-reflection +../../../third_party/vulkan-deps/spirv-cross/src/shaders-ue4 +../../../third_party/vulkan-deps/spirv-cross/src/shaders-ue4-no-opt +../../../third_party/vulkan-deps/spirv-cross/src/test_shaders.py +../../../third_party/vulkan-deps/spirv-headers +../../../third_party/vulkan-deps/spirv-tools +../../../third_party/vulkan-deps/update-commit-message.py +../../../third_party/vulkan-deps/vulkan-headers/DIR_METADATA +../../../third_party/vulkan-deps/vulkan-headers/README.chromium +../../../third_party/vulkan-deps/vulkan-headers/src/.cmake-format.py +../../../third_party/vulkan-deps/vulkan-headers/src/.git +../../../third_party/vulkan-deps/vulkan-headers/src/.gitattributes +../../../third_party/vulkan-deps/vulkan-headers/src/.github +../../../third_party/vulkan-deps/vulkan-headers/src/.gitignore +../../../third_party/vulkan-deps/vulkan-headers/src/BUILD.md +../../../third_party/vulkan-deps/vulkan-headers/src/CMakeLists.txt +../../../third_party/vulkan-deps/vulkan-headers/src/CODE_OF_CONDUCT.md +../../../third_party/vulkan-deps/vulkan-headers/src/README.md +../../../third_party/vulkan-deps/vulkan-headers/src/cmake +../../../third_party/vulkan-deps/vulkan-headers/src/registry +../../../third_party/vulkan-deps/vulkan-loader +../../../third_party/vulkan-deps/vulkan-tools +../../../third_party/vulkan-deps/vulkan-validation-layers/README.chromium +../../../third_party/vulkan-deps/vulkan-validation-layers/src/.clang-format +../../../third_party/vulkan-deps/vulkan-validation-layers/src/.clang-tidy +../../../third_party/vulkan-deps/vulkan-validation-layers/src/.git +../../../third_party/vulkan-deps/vulkan-validation-layers/src/.gitattributes +../../../third_party/vulkan-deps/vulkan-validation-layers/src/.github +../../../third_party/vulkan-deps/vulkan-validation-layers/src/.gitignore +../../../third_party/vulkan-deps/vulkan-validation-layers/src/.gn +../../../third_party/vulkan-deps/vulkan-validation-layers/src/BUILD.md +../../../third_party/vulkan-deps/vulkan-validation-layers/src/CMakeLists.txt +../../../third_party/vulkan-deps/vulkan-validation-layers/src/CODE_OF_CONDUCT.md +../../../third_party/vulkan-deps/vulkan-validation-layers/src/CONTRIBUTING.md +../../../third_party/vulkan-deps/vulkan-validation-layers/src/LAYER_CONFIGURATION.md +../../../third_party/vulkan-deps/vulkan-validation-layers/src/README.md +../../../third_party/vulkan-deps/vulkan-validation-layers/src/build-android/cmake +../../../third_party/vulkan-deps/vulkan-validation-layers/src/build-android/jni/Android.mk +../../../third_party/vulkan-deps/vulkan-validation-layers/src/build-android/jni/Application.mk +../../../third_party/vulkan-deps/vulkan-validation-layers/src/build-android/jni/shaderc/Application.mk +../../../third_party/vulkan-deps/vulkan-validation-layers/src/build-android/known_good.json +../../../third_party/vulkan-deps/vulkan-validation-layers/src/build-gn/DEPS +../../../third_party/vulkan-deps/vulkan-validation-layers/src/build-gn/commit_id.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/build-gn/generate_vulkan_layers_json.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/build-gn/remove_files.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/cmake +../../../third_party/vulkan-deps/vulkan-validation-layers/src/docs +../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/CMakeLists.txt +../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/.clang-format +../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_shaders/README.md +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/antialias_source.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/best_practices_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/check_code_format.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/clang-format-diff.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/cmake-format.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/cmake_test_min.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/command_validation_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/common_ci.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/common_codegen.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/dispatch_table_helper_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/external_revision_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/format_utils_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/generate_source.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/generate_spirv.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/github_ci_android.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/github_ci_build_desktop.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/github_ci_gn.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/github_ci_win_linux.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/helper_file_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/known_good.json +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/layer_chassis_dispatch_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/layer_chassis_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/layer_dispatch_table_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/lvl_genvk.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/lvt_file_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/object_tracker_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/parameter_validation_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/spirv_grammar_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/spirv_validation_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/sync_val_gen.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/thread_safety_generator.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/update_deps.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/utils/utils.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/scripts/vk_validation_stats.py +../../../third_party/vulkan-deps/vulkan-validation-layers/src/tests +../../../third_party/vulkan_memory_allocator/.git +../../../third_party/vulkan_memory_allocator/.gitignore +../../../third_party/vulkan_memory_allocator/.travis.yml +../../../third_party/vulkan_memory_allocator/CHANGELOG.md +../../../third_party/vulkan_memory_allocator/CMakeLists.txt +../../../third_party/vulkan_memory_allocator/Doxyfile +../../../third_party/vulkan_memory_allocator/README.md +../../../third_party/vulkan_memory_allocator/bin +../../../third_party/vulkan_memory_allocator/docs +../../../third_party/vulkan_memory_allocator/media +../../../third_party/vulkan_memory_allocator/src +../../../third_party/vulkan_memory_allocator/tools +../../../third_party/web_dependencies/canvaskit +../../../third_party/wuffs/.git +../../../third_party/wuffs/.github +../../../third_party/wuffs/README.md +../../../third_party/wuffs/docs +../../../third_party/wuffs/release/c/README.md +../../../third_party/wuffs/script +../../../third_party/wuffs/sync.txt +../../../third_party/yapf +../../../third_party/zlib/.git +../../../third_party/zlib/DIR_METADATA +../../../third_party/zlib/OWNERS +../../../third_party/zlib/README.chromium +../../../third_party/zlib/contrib/bench/OWNERS +../../../third_party/zlib/contrib/minizip/Makefile +../../../third_party/zlib/contrib/minizip/miniunz.c +../../../third_party/zlib/contrib/minizip/minizip.c +../../../third_party/zlib/contrib/minizip/minizip.md +../../../third_party/zlib/contrib/tests +../../../third_party/zlib/google/DEPS +../../../third_party/zlib/google/OWNERS +../../../third_party/zlib/google/compression_utils_unittest.cc +../../../third_party/zlib/google/test +../../../third_party/zlib/google/zip_reader_unittest.cc +../../../third_party/zlib/google/zip_unittest.cc +../../../third_party/zlib/patches/README +../../../tools \ No newline at end of file diff --git a/ci/licenses_golden/licenses_flutter b/ci/licenses_golden/licenses_flutter index e4c6e82e0e05f..b91f747c8f3fb 100644 --- a/ci/licenses_golden/licenses_flutter +++ b/ci/licenses_golden/licenses_flutter @@ -1,37 +1,99 @@ -UNUSED LICENSES: - -==================================================================================================== -ORIGIN: ../../../flutter/third_party/web_locale_keymap/License.txt -TYPE: LicenseType.mit ----------------------------------------------------------------------------------------------------- -MIT License - -Copyright (c) 2015 - present Microsoft Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -==================================================================================================== -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -USED LICENSES: - ==================================================================================================== LIBRARY: txt -ORIGIN: ../../../flutter/third_party/txt/LICENSE +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/benchmarks/paint_record_benchmarks.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/benchmarks/paragraph_benchmarks.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/benchmarks/paragraph_builder_benchmarks.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/benchmarks/skparagraph_benchmarks.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/benchmarks/txt_run_all_benchmarks.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/log/log.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/log/log.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/CmapCoverage.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/CmapCoverage.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/Emoji.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/Emoji.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/FontCollection.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/FontCollection.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/FontFamily.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/FontFamily.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/FontLanguage.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/FontLanguage.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/FontLanguageListCache.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/FontLanguageListCache.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/FontUtils.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/FontUtils.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/GraphemeBreak.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/GraphemeBreak.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/HbFontCache.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/HbFontCache.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/Hyphenator.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/Hyphenator.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/Layout.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/Layout.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/LayoutUtils.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/LayoutUtils.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/LineBreaker.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/LineBreaker.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/Measurement.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/Measurement.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/MinikinFont.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/MinikinFont.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/MinikinInternal.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/MinikinInternal.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/SparseBitSet.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/SparseBitSet.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/WordBreaker.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/minikin/WordBreaker.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/skia/paragraph_builder_skia.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/skia/paragraph_builder_skia.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/skia/paragraph_skia.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/skia/paragraph_skia.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/asset_font_manager.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/asset_font_manager.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/font_asset_provider.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/font_asset_provider.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/font_collection.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/font_collection.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/font_features.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/font_features.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/font_skia.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/font_skia.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/font_style.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/font_weight.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/line_metrics.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/paint_record.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/paint_record.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/paragraph.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/paragraph_builder.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/paragraph_builder.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/paragraph_builder_txt.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/paragraph_builder_txt.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/paragraph_style.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/paragraph_style.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/paragraph_txt.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/paragraph_txt.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/placeholder_run.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/placeholder_run.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/run_metrics.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/styled_runs.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/styled_runs.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/test_font_manager.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/test_font_manager.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/text_baseline.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/text_decoration.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/text_decoration.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/text_shadow.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/text_shadow.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/text_style.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/text_style.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/typeface_font_asset_provider.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/txt/typeface_font_asset_provider.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/utils/JenkinsHash.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/utils/JenkinsHash.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/utils/LinuxUtils.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/utils/LruCache.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/utils/MacUtils.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/utils/TypeHelpers.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../flutter/third_party/txt/src/utils/WindowsUtils.h TYPE: LicenseType.apache FILE: ../../../flutter/third_party/txt/benchmarks/paint_record_benchmarks.cc FILE: ../../../flutter/third_party/txt/benchmarks/paragraph_benchmarks.cc @@ -130,7 +192,7 @@ FILE: ../../../flutter/third_party/txt/src/utils/WindowsUtils.h ---------------------------------------------------------------------------------------------------- Apache License Version 2.0, January 2004 -http://www.apache.org/licenses +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -333,10 +395,9 @@ limitations under the License. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/insets.cc + ../../../LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/insets.cc + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd FILE: ../../../flutter/third_party/accessibility/gfx/geometry/insets.cc -FILE: ../../../flutter/third_party/accessibility/gfx/geometry/insets_unittest.cc ---------------------------------------------------------------------------------------------------- Copyright (c) 2009 The Chromium Authors. All rights reserved. @@ -369,10 +430,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../flutter/third_party/accessibility/base/win/scoped_bstr.cc + ../../../LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/scoped_bstr.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/scoped_variant.cc + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd FILE: ../../../flutter/third_party/accessibility/base/win/scoped_bstr.cc -FILE: ../../../flutter/third_party/accessibility/base/win/scoped_bstr_unittest.cc FILE: ../../../flutter/third_party/accessibility/base/win/scoped_variant.cc ---------------------------------------------------------------------------------------------------- Copyright (c) 2010 The Chromium Authors. All rights reserved. @@ -406,20 +467,23 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../flutter/third_party/accessibility/base/win/atl_module.h + ../../../LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/auto_reset.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/atl_module.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/display.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/display.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/enum_variant.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/enum_variant.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/scoped_bstr.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/scoped_variant.h + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd FILE: ../../../flutter/third_party/accessibility/base/auto_reset.h FILE: ../../../flutter/third_party/accessibility/base/win/atl_module.h FILE: ../../../flutter/third_party/accessibility/base/win/display.cc FILE: ../../../flutter/third_party/accessibility/base/win/display.h -FILE: ../../../flutter/third_party/accessibility/base/win/display_unittest.cc FILE: ../../../flutter/third_party/accessibility/base/win/enum_variant.cc FILE: ../../../flutter/third_party/accessibility/base/win/enum_variant.h -FILE: ../../../flutter/third_party/accessibility/base/win/enum_variant_unittest.cc FILE: ../../../flutter/third_party/accessibility/base/win/scoped_bstr.h FILE: ../../../flutter/third_party/accessibility/base/win/scoped_variant.h -FILE: ../../../flutter/third_party/accessibility/base/win/scoped_variant_unittest.cc -FILE: ../../../flutter/third_party/accessibility/gfx/range/range_unittest.cc ---------------------------------------------------------------------------------------------------- Copyright (c) 2011 The Chromium Authors. All rights reserved. @@ -452,7 +516,38 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../flutter/third_party/accessibility/ax_build/build_config.h + ../../../LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax_build/build_config.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/base_export.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/insets.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/insets_f.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/insets_f.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/point.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/point.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/point_conversions.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/point_conversions.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/point_f.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/point_f.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/rect.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/rect.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/rect_conversions.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/rect_conversions.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/rect_f.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/rect_f.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/size.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/size.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/size_conversions.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/size_conversions.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/size_f.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/size_f.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/vector2d.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/vector2d.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/vector2d_conversions.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/vector2d_conversions.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/vector2d_f.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/vector2d_f.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/native_widget_types.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/range/range.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/range/range.h + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd FILE: ../../../flutter/third_party/accessibility/ax_build/build_config.h FILE: ../../../flutter/third_party/accessibility/base/base_export.h @@ -465,7 +560,6 @@ FILE: ../../../flutter/third_party/accessibility/gfx/geometry/point_conversions. FILE: ../../../flutter/third_party/accessibility/gfx/geometry/point_conversions.h FILE: ../../../flutter/third_party/accessibility/gfx/geometry/point_f.cc FILE: ../../../flutter/third_party/accessibility/gfx/geometry/point_f.h -FILE: ../../../flutter/third_party/accessibility/gfx/geometry/point_unittest.cc FILE: ../../../flutter/third_party/accessibility/gfx/geometry/rect.cc FILE: ../../../flutter/third_party/accessibility/gfx/geometry/rect.h FILE: ../../../flutter/third_party/accessibility/gfx/geometry/rect_conversions.cc @@ -478,14 +572,12 @@ FILE: ../../../flutter/third_party/accessibility/gfx/geometry/size_conversions.c FILE: ../../../flutter/third_party/accessibility/gfx/geometry/size_conversions.h FILE: ../../../flutter/third_party/accessibility/gfx/geometry/size_f.cc FILE: ../../../flutter/third_party/accessibility/gfx/geometry/size_f.h -FILE: ../../../flutter/third_party/accessibility/gfx/geometry/size_unittest.cc FILE: ../../../flutter/third_party/accessibility/gfx/geometry/vector2d.cc FILE: ../../../flutter/third_party/accessibility/gfx/geometry/vector2d.h FILE: ../../../flutter/third_party/accessibility/gfx/geometry/vector2d_conversions.cc FILE: ../../../flutter/third_party/accessibility/gfx/geometry/vector2d_conversions.h FILE: ../../../flutter/third_party/accessibility/gfx/geometry/vector2d_f.cc FILE: ../../../flutter/third_party/accessibility/gfx/geometry/vector2d_f.h -FILE: ../../../flutter/third_party/accessibility/gfx/geometry/vector2d_unittest.cc FILE: ../../../flutter/third_party/accessibility/gfx/native_widget_types.h FILE: ../../../flutter/third_party/accessibility/gfx/range/range.cc FILE: ../../../flutter/third_party/accessibility/gfx/range/range.h @@ -521,9 +613,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../flutter/third_party/accessibility/gfx/geometry/rect_unittest.cc + ../../../LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/gfx_export.h + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd -FILE: ../../../flutter/third_party/accessibility/gfx/geometry/rect_unittest.cc FILE: ../../../flutter/third_party/accessibility/gfx/gfx_export.h ---------------------------------------------------------------------------------------------------- Copyright (c) 2013 The Chromium Authors. All rights reserved. @@ -557,7 +648,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../flutter/third_party/accessibility/base/win/windows_types.h + ../../../LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/windows_types.h + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd FILE: ../../../flutter/third_party/accessibility/base/win/windows_types.h ---------------------------------------------------------------------------------------------------- @@ -592,7 +683,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: web_locale_keymap +ORIGIN: ../../../flutter/third_party/web_locale_keymap/lib/web_locale_keymap.dart + ../../../flutter/third_party/web_locale_keymap/License.txt ORIGIN: ../../../flutter/third_party/web_locale_keymap/lib/web_locale_keymap/key_mappings.g.dart + ../../../flutter/third_party/web_locale_keymap/License.txt +ORIGIN: ../../../flutter/third_party/web_locale_keymap/lib/web_locale_keymap/locale_keymap.dart + ../../../flutter/third_party/web_locale_keymap/License.txt TYPE: LicenseType.mit FILE: ../../../flutter/third_party/web_locale_keymap/lib/web_locale_keymap.dart FILE: ../../../flutter/third_party/web_locale_keymap/lib/web_locale_keymap/key_mappings.g.dart @@ -621,7 +714,14 @@ SOFTWARE. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_export.h + ../../../LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_export.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_node.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_node.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_node_data.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_node_data.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree_update.h + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd FILE: ../../../flutter/third_party/accessibility/ax/ax_export.h FILE: ../../../flutter/third_party/accessibility/ax/ax_node.cc @@ -630,7 +730,6 @@ FILE: ../../../flutter/third_party/accessibility/ax/ax_node_data.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_node_data.h FILE: ../../../flutter/third_party/accessibility/ax/ax_tree.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_tree.h -FILE: ../../../flutter/third_party/accessibility/ax/ax_tree_unittest.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_tree_update.h ---------------------------------------------------------------------------------------------------- Copyright 2013 The Chromium Authors. All rights reserved. @@ -669,11 +768,2450 @@ LIBRARY: tonic LIBRARY: txt LIBRARY: web_unicode ORIGIN: ../../../flutter/LICENSE +ORIGIN: ../../../flutter/assets/asset_manager.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/assets/asset_manager.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/assets/asset_resolver.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/assets/directory_asset_bundle.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/assets/directory_asset_bundle.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/benchmarking/benchmarking.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/benchmarking/benchmarking.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/benchmarking/library.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/benchmarking/library.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/common/constants.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/common/graphics/gl_context_switch.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/common/graphics/gl_context_switch.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/common/graphics/msaa_sample_count.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/common/graphics/persistent_cache.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/common/graphics/persistent_cache.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/common/graphics/texture.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/common/graphics/texture.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/common/settings.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/common/settings.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/common/task_runners.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/common/task_runners.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_attributes.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_attributes_testing.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_benchmarks.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_benchmarks.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_benchmarks_canvas_provider.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_benchmarks_gl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_benchmarks_gl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_benchmarks_metal.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_benchmarks_metal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_benchmarks_software.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_benchmarks_software.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_blend_mode.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_blend_mode.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_builder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_builder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_builder_benchmarks.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_builder_multiplexer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_builder_multiplexer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_canvas_dispatcher.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_canvas_dispatcher.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_canvas_recorder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_canvas_recorder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_color.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_color_filter.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_color_filter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_color_source.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_color_source.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_comparable.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_complexity.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_complexity.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_complexity_gl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_complexity_gl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_complexity_helper.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_complexity_metal.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_complexity_metal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_dispatcher.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_dispatcher.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_flags.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_flags.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_image.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_image.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_image_filter.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_image_filter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_image_skia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_image_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_mask_filter.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_mask_filter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_matrix_clip_tracker.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_matrix_clip_tracker.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_ops.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_ops.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_paint.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_paint.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_path_effect.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_path_effect.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_rtree.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_rtree.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_runtime_effect.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_runtime_effect.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_sampling_options.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_test_utils.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_test_utils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_tile_mode.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_utils.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_utils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_vertices.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/display_list_vertices.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/display_list/types.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/compositor_context.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/compositor_context.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/diff_context.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/diff_context.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/embedded_views.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/embedded_views.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/flow_test_utils.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/flow_test_utils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/frame_timings.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/frame_timings.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/instrumentation.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/instrumentation.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layer_snapshot_store.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layer_snapshot_store.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/backdrop_filter_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/backdrop_filter_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/cacheable_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/cacheable_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/clip_path_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/clip_path_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/clip_rect_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/clip_rect_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/clip_rrect_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/clip_rrect_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/clip_shape_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/color_filter_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/color_filter_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/container_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/container_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/display_list_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/display_list_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/display_list_raster_cache_item.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/display_list_raster_cache_item.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/image_filter_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/image_filter_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/layer_raster_cache_item.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/layer_raster_cache_item.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/layer_state_stack.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/layer_state_stack.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/layer_tree.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/layer_tree.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/offscreen_surface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/offscreen_surface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/opacity_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/opacity_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/performance_overlay_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/performance_overlay_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/physical_shape_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/physical_shape_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/platform_view_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/platform_view_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/shader_mask_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/shader_mask_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/texture_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/texture_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/transform_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/layers/transform_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/paint_region.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/paint_region.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/paint_utils.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/paint_utils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/raster_cache.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/raster_cache.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/raster_cache_item.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/raster_cache_key.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/raster_cache_key.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/raster_cache_util.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/raster_cache_util.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/rtree.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/rtree.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/skia_gpu_object.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/surface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/surface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/surface_frame.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flow/surface_frame.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flutter_vma/flutter_skia_vma.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flutter_vma/flutter_skia_vma.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flutter_vma/flutter_vma.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/flutter_vma/flutter_vma.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/ascii_trie.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/ascii_trie.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/backtrace.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/backtrace.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/backtrace_stub.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/base32.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/base32.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/build_config.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/closure.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/command_line.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/command_line.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/compiler_specific.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/concurrent_message_loop.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/concurrent_message_loop.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/container.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/dart/dart_converter.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/dart/dart_converter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/delayed_task.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/delayed_task.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/eintr_wrapper.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/endianness.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/endianness.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/file.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/file.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/hash_combine.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/hex_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/hex_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/icu_util.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/icu_util.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/log_level.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/log_settings.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/log_settings.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/log_settings_state.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/logging.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/logging.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/macros.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/make_copyable.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/mapping.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/mapping.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/math.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/memory/ref_counted.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/memory/ref_counted_internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/memory/ref_ptr.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/memory/ref_ptr_internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/memory/task_runner_checker.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/memory/task_runner_checker.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/memory/thread_checker.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/memory/weak_ptr.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/memory/weak_ptr_internal.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/memory/weak_ptr_internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/message_loop.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/message_loop.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/message_loop_impl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/message_loop_impl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/message_loop_task_queues.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/message_loop_task_queues.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/message_loop_task_queues_benchmark.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/native_library.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/paths.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/paths.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/android/jni_util.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/android/jni_util.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/android/jni_weak_ref.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/android/jni_weak_ref.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/android/message_loop_android.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/android/message_loop_android.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/android/paths_android.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/android/paths_android.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/android/scoped_java_ref.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/android/scoped_java_ref.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/darwin/cf_utils.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/darwin/cf_utils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/darwin/message_loop_darwin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/darwin/message_loop_darwin.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/darwin/paths_darwin.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/darwin/platform_version.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/darwin/platform_version.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/darwin/scoped_block.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/darwin/scoped_block.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/darwin/scoped_nsobject.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/darwin/scoped_nsobject.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/darwin/string_range_sanitization.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/darwin/string_range_sanitization.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/fuchsia/message_loop_fuchsia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/fuchsia/message_loop_fuchsia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/fuchsia/paths_fuchsia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/fuchsia/task_observers.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/fuchsia/task_observers.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/linux/message_loop_linux.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/linux/message_loop_linux.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/linux/paths_linux.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/linux/timerfd.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/linux/timerfd.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/posix/command_line_posix.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/posix/file_posix.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/posix/mapping_posix.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/posix/native_library_posix.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/posix/paths_posix.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/posix/posix_wrappers_posix.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/posix/shared_mutex_posix.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/posix/shared_mutex_posix.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/win/command_line_win.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/win/errors_win.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/win/errors_win.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/win/file_win.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/win/mapping_win.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/win/message_loop_win.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/win/message_loop_win.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/win/native_library_win.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/win/paths_win.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/win/posix_wrappers_win.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/win/wstring_conversion.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/platform/win/wstring_conversion.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/posix_wrappers.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/raster_thread_merger.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/raster_thread_merger.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/shared_thread_merger.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/shared_thread_merger.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/size.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/status.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/string_conversion.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/string_conversion.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/synchronization/atomic_object.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/synchronization/count_down_latch.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/synchronization/count_down_latch.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/synchronization/semaphore.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/synchronization/semaphore.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/synchronization/shared_mutex.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/synchronization/shared_mutex_std.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/synchronization/shared_mutex_std.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/synchronization/sync_switch.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/synchronization/sync_switch.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/synchronization/waitable_event.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/synchronization/waitable_event.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/task_queue_id.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/task_runner.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/task_runner.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/task_source.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/task_source.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/task_source_grade.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/thread.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/thread.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/thread_local.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/thread_local.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/time/chrono_timestamp_provider.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/time/chrono_timestamp_provider.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/time/time_delta.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/time/time_point.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/time/time_point.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/time/timestamp_provider.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/trace_event.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/trace_event.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/unique_fd.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/unique_fd.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/unique_object.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/fml/wakeable.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/aiks_context.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/aiks_context.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/aiks_playground.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/aiks_playground.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/canvas.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/canvas.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/image.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/image.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/paint.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/paint.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/paint_pass_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/paint_pass_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/picture.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/picture.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/picture_recorder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/aiks/picture_recorder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archivable.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archivable.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive_class_registration.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive_class_registration.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive_database.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive_database.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive_location.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive_location.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive_statement.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive_statement.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive_transaction.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive_transaction.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive_vector.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archive_vector.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archivist_fixture.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/archivist/archivist_fixture.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/allocation.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/allocation.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/backend_cast.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/comparable.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/comparable.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/config.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/platform/darwin/work_queue_darwin.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/platform/darwin/work_queue_darwin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/promise.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/promise.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/strings.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/strings.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/thread.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/thread.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/thread_safety.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/thread_safety.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/validation.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/validation.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/version.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/version.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/work_queue.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/work_queue.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/work_queue_common.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/base/work_queue_common.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/blobcat/blob.fbs + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/blobcat/blob_library.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/blobcat/blob_library.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/blobcat/blob_types.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/blobcat/blob_writer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/blobcat/blob_writer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/blobcat/blobcat_main.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/code_gen_template.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/compiler.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/compiler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/compiler_backend.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/compiler_backend.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/compiler_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/compiler_test.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/impellerc_main.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/include_dir.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/includer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/includer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/logger.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/reflector.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/reflector.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/runtime_stage_data.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/runtime_stage_data.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/shader_lib/flutter/runtime_effect.glsl + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/shader_lib/impeller/blending.glsl + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/shader_lib/impeller/branching.glsl + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/shader_lib/impeller/color.glsl + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/shader_lib/impeller/constants.glsl + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/shader_lib/impeller/gaussian.glsl + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/shader_lib/impeller/gradient.glsl + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/shader_lib/impeller/texture.glsl + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/shader_lib/impeller/transform.glsl + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/shader_lib/impeller/types.glsl + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/source_options.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/source_options.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/spirv_sksl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/spirv_sksl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/switches.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/switches.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/types.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/types.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/utilities.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/compiler/utilities.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/display_list/display_list_dispatcher.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/display_list/display_list_dispatcher.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/display_list/display_list_image_impeller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/display_list/display_list_image_impeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/display_list/display_list_playground.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/display_list/display_list_playground.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/display_list/display_list_vertices_geometry.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/display_list/display_list_vertices_geometry.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/display_list/nine_patch_converter.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/display_list/nine_patch_converter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/atlas_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/atlas_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/clip_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/clip_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/color_source_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/color_source_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/content_context.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/content_context.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/blend_filter_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/blend_filter_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/border_mask_blur_filter_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/border_mask_blur_filter_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/color_filter_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/color_filter_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/color_matrix_filter_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/color_matrix_filter_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/filter_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/filter_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/gaussian_blur_filter_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/gaussian_blur_filter_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/inputs/contents_filter_input.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/inputs/contents_filter_input.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/inputs/filter_contents_filter_input.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/inputs/filter_contents_filter_input.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/inputs/filter_input.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/inputs/filter_input.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/inputs/texture_filter_input.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/inputs/texture_filter_input.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/linear_to_srgb_filter_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/linear_to_srgb_filter_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/local_matrix_filter_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/local_matrix_filter_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/matrix_filter_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/matrix_filter_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/morphology_filter_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/morphology_filter_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/srgb_to_linear_filter_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/srgb_to_linear_filter_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/yuv_to_rgb_filter_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/filters/yuv_to_rgb_filter_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/gradient_generator.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/gradient_generator.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/linear_gradient_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/linear_gradient_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/radial_gradient_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/radial_gradient_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/rrect_shadow_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/rrect_shadow_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/runtime_effect_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/runtime_effect_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/solid_color_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/solid_color_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/sweep_gradient_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/sweep_gradient_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/text_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/text_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/texture_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/texture_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/tiled_texture_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/tiled_texture_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/vertices_contents.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/contents/vertices_contents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/entity.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/entity.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/entity_pass.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/entity_pass.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/entity_pass_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/entity_pass_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/entity_playground.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/entity_playground.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/geometry.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/geometry.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/inline_pass_context.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/inline_pass_context.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/atlas_fill.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/atlas_fill.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend.glsl + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_color.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_colorburn.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_colordodge.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_darken.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_difference.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_exclusion.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_hardlight.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_hue.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_lighten.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_luminosity.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_multiply.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_overlay.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_saturation.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_screen.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/advanced_blend_softlight.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/blend.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/blending/blend.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/border_mask_blur.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/border_mask_blur.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/color_matrix_color_filter.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/color_matrix_color_filter.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/gaussian_blur.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/gaussian_blur.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/glyph_atlas.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/glyph_atlas.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/glyph_atlas_sdf.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/glyph_atlas_sdf.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/gradient_fill.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/linear_gradient_fill.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/linear_gradient_ssbo_fill.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/linear_to_srgb_filter.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/linear_to_srgb_filter.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/morphology_filter.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/morphology_filter.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/position.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/position_color.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/position_uv.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/radial_gradient_fill.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/radial_gradient_ssbo_fill.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/rrect_blur.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/rrect_blur.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/runtime_effect.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/solid_fill.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/solid_fill.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/srgb_to_linear_filter.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/srgb_to_linear_filter.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/sweep_gradient_fill.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/sweep_gradient_ssbo_fill.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/texture_fill.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/texture_fill.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/tiled_texture_fill.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/tiled_texture_fill.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/vertices.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/yuv_to_rgb_filter.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/entity/shaders/yuv_to_rgb_filter.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/color.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/color.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/constants.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/constants.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/geometry_benchmarks.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/gradient.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/gradient.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/matrix.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/matrix.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/matrix_decomposition.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/matrix_decomposition.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/path.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/path.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/path_builder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/path_builder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/path_component.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/path_component.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/point.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/point.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/quaternion.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/quaternion.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/rect.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/rect.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/scalar.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/shear.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/shear.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/sigma.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/sigma.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/size.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/size.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/type_traits.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/type_traits.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/vector.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/geometry/vector.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/image/backends/skia/compressed_image_skia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/image/backends/skia/compressed_image_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/image/compressed_image.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/image/compressed_image.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/image/decompressed_image.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/image/decompressed_image.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/allocator.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/allocator.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/allocator_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/allocator_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/blit_command_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/blit_command_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/blit_pass_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/blit_pass_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/buffer_bindings_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/buffer_bindings_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/capabilities_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/capabilities_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/command_buffer_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/command_buffer_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/context_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/context_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/description_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/description_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/device_buffer_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/device_buffer_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/formats_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/formats_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/handle_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/handle_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/pipeline_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/pipeline_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/pipeline_library_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/pipeline_library_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/proc_table_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/proc_table_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/reactor_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/reactor_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/render_pass_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/render_pass_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/sampler_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/sampler_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/sampler_library_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/sampler_library_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/shader_function_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/shader_function_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/shader_library_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/shader_library_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/surface_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/surface_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/texture_gles.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/gles/texture_gles.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/allocator_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/allocator_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/blit_command_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/blit_command_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/blit_pass_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/blit_pass_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/command_buffer_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/command_buffer_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/compute_pass_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/compute_pass_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/compute_pipeline_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/compute_pipeline_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/context_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/context_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/device_buffer_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/device_buffer_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/formats_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/formats_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/gpu_tracer_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/gpu_tracer_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/pipeline_library_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/pipeline_library_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/pipeline_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/pipeline_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/render_pass_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/render_pass_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/sampler_library_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/sampler_library_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/sampler_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/sampler_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/shader_function_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/shader_function_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/shader_library_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/shader_library_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/surface_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/surface_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/texture_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/texture_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/vertex_descriptor_mtl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/metal/vertex_descriptor_mtl.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/allocator_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/allocator_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/blit_pass_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/blit_pass_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/capabilities_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/capabilities_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/command_buffer_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/command_buffer_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/command_pool_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/command_pool_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/context_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/context_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/deletion_queue_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/deletion_queue_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/descriptor_pool_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/descriptor_pool_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/device_buffer_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/device_buffer_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/fenced_command_buffer_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/fenced_command_buffer_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/formats_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/formats_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/pipeline_library_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/pipeline_library_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/pipeline_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/pipeline_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/render_pass_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/render_pass_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/sampler_library_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/sampler_library_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/sampler_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/sampler_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/shader_function_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/shader_function_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/shader_library_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/shader_library_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/surface_producer_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/surface_producer_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/surface_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/surface_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/swapchain_details_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/swapchain_details_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/swapchain_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/swapchain_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/texture_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/texture_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/vertex_descriptor_vk.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/vertex_descriptor_vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend/vulkan/vk.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/backend_features.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/blit_command.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/blit_command.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/blit_pass.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/blit_pass.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/buffer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/buffer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/buffer_view.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/buffer_view.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/command.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/command.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/command_buffer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/command_buffer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/compute_command.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/compute_command.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/compute_pass.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/compute_pass.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/compute_pipeline_builder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/compute_pipeline_builder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/compute_pipeline_descriptor.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/compute_pipeline_descriptor.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/context.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/context.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/descriptor_set_layout.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/device_buffer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/device_buffer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/device_buffer_descriptor.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/device_buffer_descriptor.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/formats.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/formats.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/gpu_tracer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/gpu_tracer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/host_buffer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/host_buffer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/pipeline.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/pipeline.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/pipeline_builder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/pipeline_builder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/pipeline_descriptor.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/pipeline_descriptor.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/pipeline_library.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/pipeline_library.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/platform.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/platform.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/range.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/range.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/render_pass.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/render_pass.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/render_target.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/render_target.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/renderer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/renderer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/sampler.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/sampler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/sampler_descriptor.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/sampler_descriptor.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/sampler_library.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/sampler_library.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/shader_function.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/shader_function.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/shader_key.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/shader_key.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/shader_library.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/shader_library.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/shader_types.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/shader_types.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/snapshot.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/snapshot.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/surface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/surface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/texture.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/texture.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/texture_descriptor.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/texture_descriptor.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/vertex_buffer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/vertex_buffer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/vertex_buffer_builder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/vertex_buffer_builder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/vertex_descriptor.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/renderer/vertex_descriptor.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/runtime_stage/runtime_stage.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/runtime_stage/runtime_stage.fbs + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/runtime_stage/runtime_stage.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/runtime_stage/runtime_stage_playground.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/runtime_stage/runtime_stage_playground.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/runtime_stage/runtime_types.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/runtime_stage/runtime_types.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/camera.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/camera.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/geometry.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/geometry.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/importer/conversions.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/importer/conversions.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/importer/importer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/importer/importer_gltf.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/importer/scene.fbs + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/importer/scenec_main.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/importer/switches.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/importer/switches.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/importer/types.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/importer/vertices_builder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/importer/vertices_builder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/material.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/material.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/mesh.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/mesh.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/node.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/node.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/scene.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/scene.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/scene_context.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/scene_context.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/scene_encoder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/scene_encoder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/shaders/geometry.vert + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/scene/shaders/unlit.frag + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/tessellator/c/tessellator.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/tessellator/c/tessellator.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/tessellator/dart/lib/tessellator.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/tessellator/tessellator.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/tessellator/tessellator.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/toolkit/egl/config.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/toolkit/egl/config.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/toolkit/egl/context.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/toolkit/egl/context.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/toolkit/egl/display.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/toolkit/egl/display.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/toolkit/egl/egl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/toolkit/egl/egl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/toolkit/egl/surface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/toolkit/egl/surface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/backends/skia/text_frame_skia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/backends/skia/text_frame_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/backends/skia/text_render_context_skia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/backends/skia/text_render_context_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/backends/skia/typeface_skia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/backends/skia/typeface_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/font.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/font.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/font_glyph_pair.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/font_glyph_pair.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/glyph.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/glyph.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/glyph_atlas.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/glyph_atlas.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/lazy_glyph_atlas.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/lazy_glyph_atlas.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/text_frame.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/text_frame.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/text_render_context.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/text_render_context.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/text_run.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/text_run.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/typeface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/impeller/typographer/typeface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/io/dart_io.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/io/dart_io.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/snapshot/snapshot.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/annotations.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/channel_buffers.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/compositing.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/compositing/scene.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/compositing/scene.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/compositing/scene_builder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/compositing/scene_builder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/dart_runtime_hooks.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/dart_runtime_hooks.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/dart_ui.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/dart_ui.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/dart_wrapper.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/experiments/compositing_3d.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/experiments/ui.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/geometry.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/hash_codes.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/hooks.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/io_manager.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/io_manager.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/isolate_name_server.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/isolate_name_server/isolate_name_server.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/isolate_name_server/isolate_name_server.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/isolate_name_server/isolate_name_server_natives.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/isolate_name_server/isolate_name_server_natives.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/key.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/lerp.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/math.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/natives.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/canvas.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/canvas.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/color_filter.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/color_filter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/display_list_deferred_image_gpu_impeller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/display_list_deferred_image_gpu_impeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/display_list_deferred_image_gpu_skia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/display_list_deferred_image_gpu_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/display_list_image_gpu.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/display_list_image_gpu.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/engine_layer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/engine_layer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/fragment_program.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/fragment_program.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/fragment_shader.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/fragment_shader.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/gradient.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/gradient.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_decoder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_decoder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_decoder_impeller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_decoder_impeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_decoder_skia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_decoder_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_descriptor.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_descriptor.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_encoding.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_encoding.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_encoding_impeller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_encoding_impeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_encoding_impl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_encoding_skia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_encoding_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_filter.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_filter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_generator.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_generator.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_generator_registry.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_generator_registry.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_shader.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/image_shader.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/immutable_buffer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/immutable_buffer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/matrix.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/matrix.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/multi_frame_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/multi_frame_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/paint.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/paint.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/path.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/path.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/path_measure.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/path_measure.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/picture.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/picture.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/picture_recorder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/picture_recorder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/rrect.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/rrect.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/shader.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/shader.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/single_frame_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/single_frame_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/vertices.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/painting/vertices.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/platform_dispatcher.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/plugins.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/plugins/callback_cache.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/plugins/callback_cache.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/pointer.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/semantics.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/semantics/custom_accessibility_action.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/semantics/custom_accessibility_action.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/semantics/semantics_node.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/semantics/semantics_node.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/semantics/semantics_update.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/semantics/semantics_update.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/semantics/semantics_update_builder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/semantics/semantics_update_builder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/semantics/string_attribute.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/semantics/string_attribute.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/snapshot_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/text.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/text/asset_manager_font_provider.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/text/asset_manager_font_provider.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/text/font_collection.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/text/font_collection.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/text/line_metrics.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/text/paragraph.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/text/paragraph.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/text/paragraph_builder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/text/paragraph_builder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/text/text_box.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/ui.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/ui_benchmarks.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/ui_dart_state.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/ui_dart_state.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/volatile_path_tracker.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/volatile_path_tracker.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/key_data.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/key_data.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/key_data_packet.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/key_data_packet.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/platform_configuration.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/platform_configuration.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/platform_message.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/platform_message.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/platform_message_response.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/platform_message_response.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/platform_message_response_dart.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/platform_message_response_dart.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/platform_message_response_dart_port.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/platform_message_response_dart_port.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/pointer_data.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/pointer_data.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/pointer_data_packet.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/pointer_data_packet.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/pointer_data_packet_converter.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/pointer_data_packet_converter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/viewport_metrics.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/viewport_metrics.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/window.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/ui/window/window.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/annotations.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/canvas.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/channel_buffers.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/compositing.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/geometry.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/hash_codes.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/initialization.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/key.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/lerp.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/math.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/natives.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/painting.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/path.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/path_metrics.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/platform_dispatcher.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/pointer.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/semantics.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/alarm_clock.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/app_bootstrap.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/assets.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/browser_detection.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvas_pool.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/canvas.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/canvaskit_api.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/canvaskit_canvas.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/color_filter.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/embedded_views.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/embedded_views_diff.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/font_fallback_data.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/font_fallbacks.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/fonts.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/image.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/image_filter.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/image_wasm_codecs.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/image_web_codecs.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/interval_tree.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/layer.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/layer_scene_builder.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/layer_tree.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/mask_filter.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/n_way_canvas.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/noto_font.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/painting.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/path.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/path_metrics.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/picture.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/picture_recorder.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/platform_message.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/raster_cache.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/rasterizer.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/renderer.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/shader.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/skia_object_cache.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/surface.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/surface_factory.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/text.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/util.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/vertices.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/canvaskit/viewport_metrics.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/clipboard.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/color_filter.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/configuration.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/dom.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/embedder.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/engine_canvas.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/font_change_util.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/fonts.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/frame_reference.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/host_node.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/backdrop_filter.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/bitmap_canvas.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/canvas.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/clip.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/color_filter.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/debug_canvas_reuse_overlay.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/dom_canvas.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/image_filter.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/offset.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/opacity.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/painting.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/path/conic.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/path/cubic.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/path/path.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/path/path_iterator.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/path/path_metrics.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/path/path_ref.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/path/path_to_svg.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/path/path_utils.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/path/path_windings.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/path/tangent.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/path_to_svg_clip.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/picture.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/platform_view.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/recording_canvas.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/render_vertices.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/renderer.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/scene.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/scene_builder.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/shader_mask.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/shaders/image_shader.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/shaders/normalized_gradient.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/shaders/shader.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/shaders/shader_builder.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/shaders/vertex_shaders.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/surface.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/surface_stats.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html/transform.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/html_image_codec.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/initialization.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/js_interop/js_loader.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/js_interop/js_promise.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/key_map.g.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/keyboard_binding.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/mouse_cursor.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/navigation.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/navigation/history.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/navigation/js_url_strategy.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/navigation/url_strategy.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/onscreen_logging.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/picture.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/platform_dispatcher.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/platform_views.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/platform_views/content_manager.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/platform_views/message_handler.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/platform_views/slots.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/plugins.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/pointer_binding.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/pointer_converter.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/profiler.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/raw_keyboard.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/renderer.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/rrect_renderer.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/safe_browser_api.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/semantics.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/semantics/accessibility.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/semantics/checkable.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/semantics/image.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/semantics/incrementable.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/semantics/label_and_value.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/semantics/live_region.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/semantics/scrollable.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/semantics/semantics.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/semantics/semantics_helper.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/semantics/tappable.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/semantics/text_field.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/services.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/services/buffers.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/services/message_codec.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/services/message_codecs.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/services/serialization.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/shadow.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/skwasm/skwasm_impl.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/skwasm/skwasm_impl/renderer.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/skwasm/skwasm_stub.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/skwasm/skwasm_stub/renderer.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/svg.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/test_embedding.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/canvas_paragraph.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/font_collection.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/fragmenter.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/layout_fragmenter.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/layout_service.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/line_break_properties.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/line_breaker.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/measurement.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/paint_service.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/paragraph.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/ruler.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/text_direction.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/unicode_range.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/word_break_properties.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text/word_breaker.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text_editing/autofill_hint.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text_editing/composition_aware_mixin.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text_editing/input_action.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text_editing/input_type.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text_editing/text_capitalization.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/text_editing/text_editing.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/ulps.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/util.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/validators.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/vector_math.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/src/engine/window.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/text.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/tile_mode.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/ui.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/lib/web_ui/lib/window.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_isolate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_isolate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_isolate_group_data.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_isolate_group_data.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_plugin_registrant.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_plugin_registrant.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_service_isolate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_service_isolate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_snapshot.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_snapshot.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_timestamp_provider.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_timestamp_provider.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_vm.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_vm.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_vm_data.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_vm_data.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_vm_initializer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_vm_initializer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_vm_lifecycle.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/dart_vm_lifecycle.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/embedder_resources.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/embedder_resources.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/isolate_configuration.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/isolate_configuration.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/platform_data.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/platform_data.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/ptrace_check.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/ptrace_check.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/runtime_controller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/runtime_controller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/runtime_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/runtime_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/service_protocol.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/service_protocol.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/skia_concurrent_executor.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/skia_concurrent_executor.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/test_font_data.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/runtime/test_font_data.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/animator.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/animator.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/canvas_spy.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/canvas_spy.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/context_options.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/context_options.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/dart_native_benchmarks.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/display.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/display.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/display_manager.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/display_manager.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/engine.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/engine.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/pipeline.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/pipeline.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/platform_message_handler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/platform_view.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/platform_view.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/pointer_data_dispatcher.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/pointer_data_dispatcher.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/rasterizer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/rasterizer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/resource_cache_limit_calculator.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/resource_cache_limit_calculator.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/run_configuration.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/run_configuration.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/serialization_callbacks.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/serialization_callbacks.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_benchmarks.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_io_manager.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_io_manager.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_test.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_test_external_view_embedder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_test_external_view_embedder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_test_platform_view.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_test_platform_view.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_test_platform_view_gl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_test_platform_view_gl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_test_platform_view_metal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_test_platform_view_metal.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_test_platform_view_vulkan.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/shell_test_platform_view_vulkan.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/skia_event_tracer_impl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/skia_event_tracer_impl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/snapshot_controller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/snapshot_controller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/snapshot_controller_impeller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/snapshot_controller_impeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/snapshot_controller_skia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/snapshot_controller_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/snapshot_surface_producer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/switches.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/switches.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/thread_host.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/thread_host.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/variable_refresh_rate_display.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/variable_refresh_rate_display.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/variable_refresh_rate_reporter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/vsync_waiter.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/vsync_waiter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/vsync_waiter_fallback.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/vsync_waiter_fallback.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/vsync_waiters_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/common/vsync_waiters_test.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_gl_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_gl_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_gl_impeller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_gl_impeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_gl_skia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_gl_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_metal_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_metal_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_metal_impeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_metal_impeller.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_metal_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_metal_skia.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_software.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_software.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_software_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_software_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_vulkan.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_vulkan.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_vulkan_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_vulkan_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_vulkan_impeller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/gpu/gpu_surface_vulkan_impeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/AndroidManifest.xml + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_choreographer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_choreographer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_context_gl_impeller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_context_gl_impeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_context_gl_skia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_context_gl_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_display.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_display.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_egl_surface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_egl_surface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_environment_gl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_environment_gl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_exports.lst + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_external_texture_gl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_external_texture_gl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_image_generator.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_image_generator.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_shell_holder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_shell_holder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_surface_gl_impeller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_surface_gl_impeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_surface_gl_skia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_surface_gl_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_surface_software.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_surface_software.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_surface_vulkan_impeller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/android_surface_vulkan_impeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/apk_asset_provider.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/apk_asset_provider.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/context/android_context.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/context/android_context.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/external_view_embedder/external_view_embedder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/external_view_embedder/external_view_embedder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/external_view_embedder/surface_pool.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/external_view_embedder/surface_pool.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/flutter_main.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/flutter_main.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/FlutterInjector.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/Log.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/app/FlutterActivity.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/app/FlutterActivityDelegate.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/app/FlutterActivityEvents.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/app/FlutterApplication.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/app/FlutterFragmentActivity.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/app/FlutterPlayStoreSplitApplication.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/app/FlutterPluginRegistry.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/DrawableSplashScreen.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/ExclusiveAppComponent.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/FlutterActivity.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/FlutterActivityAndFragmentDelegate.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/FlutterActivityLaunchConfigs.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/FlutterEngineConfigurator.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/FlutterEngineProvider.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/FlutterFragment.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/FlutterFragmentActivity.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/FlutterImageView.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/FlutterPlayStoreSplitApplication.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/FlutterSplashView.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/FlutterSurfaceView.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/FlutterTextureView.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/FlutterView.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/KeyChannelResponder.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/KeyData.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/KeyEmbedderResponder.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/KeyboardManager.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/KeyboardMap.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/RenderMode.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/SplashScreen.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/SplashScreenProvider.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/TransparencyMode.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/android/WindowInfoRepositoryCallbackAdapterWrapper.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/FlutterEngine.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/FlutterEngineCache.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/FlutterEngineConnectionRegistry.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/FlutterEngineGroup.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/FlutterEngineGroupCache.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/FlutterJNI.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/FlutterOverlaySurface.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/FlutterShellArgs.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/dart/DartExecutor.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/dart/DartMessenger.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/dart/PlatformMessageHandler.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/dart/PlatformTaskQueue.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/deferredcomponents/DeferredComponentManager.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/deferredcomponents/PlayStoreDeferredComponentManager.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/loader/ApplicationInfoLoader.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/loader/FlutterApplicationInfo.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/loader/FlutterLoader.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/loader/ResourceExtractor.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/mutatorsstack/FlutterMutatorsStack.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/FlutterPlugin.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/PluginRegistry.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/activity/ActivityAware.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/activity/ActivityControlSurface.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/activity/ActivityPluginBinding.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/broadcastreceiver/BroadcastReceiverAware.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/broadcastreceiver/BroadcastReceiverControlSurface.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/broadcastreceiver/BroadcastReceiverPluginBinding.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/contentprovider/ContentProviderAware.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/contentprovider/ContentProviderControlSurface.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/contentprovider/ContentProviderPluginBinding.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/lifecycle/HiddenLifecycleReference.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/service/ServiceAware.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/service/ServiceControlSurface.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/service/ServicePluginBinding.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/shim/ShimPluginRegistry.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/shim/ShimRegistrar.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/plugins/util/GeneratedPluginRegister.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/renderer/FlutterRenderer.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/renderer/FlutterUiDisplayListener.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/renderer/RenderSurface.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/renderer/SurfaceTextureWrapper.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/DeferredComponentChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/KeyEventChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/LifecycleChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/LocalizationChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/MouseCursorChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/NavigationChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/PlatformChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/PlatformViewsChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/RestorationChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/SpellCheckChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/SystemChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/ActivityLifecycleListener.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/BasicMessageChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/BinaryCodec.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/BinaryMessenger.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/ErrorLogResult.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/EventChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/FlutterException.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/JSONMessageCodec.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/JSONMethodCodec.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/MessageCodec.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/MethodCall.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/MethodChannel.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/MethodCodec.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/PluginRegistry.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/StandardMessageCodec.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/StandardMethodCodec.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/common/StringCodec.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/editing/FlutterTextUtils.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/editing/ImeSyncDeferringInsetsCallback.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/editing/InputConnectionAdaptor.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/editing/ListenableEditingState.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/editing/SpellCheckPlugin.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/editing/TextEditingDelta.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/editing/TextInputPlugin.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/localization/LocalizationPlugin.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/mouse/MouseCursorPlugin.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/AccessibilityEventsDelegate.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformOverlayView.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformPlugin.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformView.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformViewFactory.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformViewRegistry.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformViewRegistryImpl.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformViewWrapper.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformViewsAccessibilityDelegate.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformViewsController.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/SingleViewPresentation.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/VirtualDisplayController.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/util/HandlerCompat.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/util/PathUtils.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/util/Preconditions.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/util/Predicate.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/util/TraceSection.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/util/ViewUtils.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/view/AccessibilityBridge.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/view/AccessibilityViewEmbedder.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/view/FlutterCallbackInformation.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/view/FlutterMain.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/view/FlutterNativeView.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/view/FlutterRunArguments.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/view/FlutterView.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/view/TextureRegistry.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/io/flutter/view/VsyncWaiter.java + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/jni/jni_mock.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/jni/platform_view_android_jni.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/jni/platform_view_android_jni.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/library_loader.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/platform_message_handler_android.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/platform_message_response_android.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/platform_message_response_android.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/platform_view_android.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/platform_view_android.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/platform_view_android_delegate/platform_view_android_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/platform_view_android_delegate/platform_view_android_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/platform_view_android_jni_impl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/platform_view_android_jni_impl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/surface/android_native_window.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/surface/android_native_window.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/surface/android_surface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/surface/android_surface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/surface/android_surface_mock.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/surface/android_surface_mock.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/surface/snapshot_surface_producer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/surface/snapshot_surface_producer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/vsync_waiter_android.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/android/vsync_waiter_android.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/accessibility_bridge.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/accessibility_bridge.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/binary_messenger_impl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/byte_buffer_streams.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/core_implementations.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/engine_method_result.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/basic_message_channel.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/binary_messenger.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/byte_streams.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/encodable_value.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/engine_method_result.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/event_channel.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/event_sink.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/event_stream_handler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/event_stream_handler_functions.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/message_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/method_call.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/method_channel.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/method_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/method_result.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/method_result_functions.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/plugin_registrar.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/plugin_registry.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/standard_codec_serializer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/standard_message_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/standard_method_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/texture_registrar.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/plugin_registrar.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/standard_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/client_wrapper/texture_registrar_impl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/engine_switches.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/engine_switches.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/flutter_platform_node_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/flutter_platform_node_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/geometry.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/incoming_message_dispatcher.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/incoming_message_dispatcher.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/json_message_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/json_message_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/json_method_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/json_method_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/path_utils.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/path_utils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/platform_provided_menu.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/public/flutter_export.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/public/flutter_macros.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/public/flutter_messenger.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/public/flutter_plugin_registrar.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/public/flutter_texture_registrar.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/test_accessibility_bridge.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/test_accessibility_bridge.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/text_editing_delta.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/text_editing_delta.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/text_input_model.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/text_input_model.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/common/text_range.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/buffer_conversions.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/buffer_conversions.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/command_line.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/command_line.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/framework/Headers/FlutterBinaryMessenger.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/framework/Headers/FlutterChannels.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/framework/Headers/FlutterCodecs.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/framework/Headers/FlutterMacros.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/framework/Headers/FlutterTexture.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/framework/Source/FlutterChannels.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/framework/Source/FlutterChannelsTest.m + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/framework/Source/FlutterCodecs.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/framework/Source/FlutterStandardCodec.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/common/framework/Source/FlutterStandardCodec_Internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/graphics/FlutterDarwinContextMetalImpeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/graphics/FlutterDarwinContextMetalImpeller.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/graphics/FlutterDarwinContextMetalSkia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/graphics/FlutterDarwinContextMetalSkia.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/graphics/FlutterDarwinExternalTextureMetal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/graphics/FlutterDarwinExternalTextureMetal.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Headers/Flutter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterAppDelegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterCallbackCache.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterDartProject.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterEngine.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterEngineGroup.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterHeadlessDartRunner.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterPlatformViews.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterPlugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterPluginAppLifeCycleDelegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterViewController.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterAppDelegate.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterAppDelegateTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterAppDelegate_Test.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterBinaryMessengerRelay.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterBinaryMessengerRelay.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterBinaryMessengerRelayTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterCallbackCache.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterCallbackCache_Internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterChannelKeyResponder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterChannelKeyResponder.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterChannelKeyResponderTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterDartProject.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterDartProjectTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterDartProject_Internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterEmbedderKeyResponder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterEmbedderKeyResponder.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterEmbedderKeyResponderTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterEngine.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterEngineGroup.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterEngineGroupTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterEnginePlatformViewTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterEngineTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterEngineTest_mrc.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterEngine_Internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterEngine_Test.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterFakeKeyEvents.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterFakeKeyEvents.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterHeadlessDartRunner.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterIndirectScribbleDelegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterKeyPrimaryResponder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterKeySecondaryResponder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterKeyboardManager.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterKeyboardManager.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterKeyboardManagerTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterObservatoryPublisher.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterObservatoryPublisher.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterOverlayView.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterOverlayView.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformPlugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformPlugin.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformPluginTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformViews.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformViewsTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformViews_Internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformViews_Internal.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterPluginAppLifeCycleDelegate.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterPluginAppLifeCycleDelegateTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterPluginAppLifeCycleDelegate_internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterRestorationPlugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterRestorationPlugin.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterRestorationPluginTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterSemanticsScrollView.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterSemanticsScrollView.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterSpellCheckPlugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterSpellCheckPlugin.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterSpellCheckPluginTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputDelegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPluginTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterUIPressProxy.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterUIPressProxy.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterUmbrellaImport.m + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterUndoManagerDelegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterUndoManagerPlugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterUndoManagerPlugin.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterUndoManagerPluginTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterView.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterView.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterViewControllerTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterViewControllerTest_mrc.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterViewController_Internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterViewResponder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterViewTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/IOKit.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/KeyCodeMap.g.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/KeyCodeMap_Internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/SemanticsObject.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/SemanticsObject.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/SemanticsObjectTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/VsyncWaiterIosTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/accessibility_bridge.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/accessibility_bridge.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/accessibility_bridge_ios.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/accessibility_bridge_test.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/accessibility_text_entry.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/accessibility_text_entry.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/connection_collection.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/connection_collection.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/connection_collection_test.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/platform_message_response_darwin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/platform_message_response_darwin.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/profiler_metrics_ios.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/profiler_metrics_ios.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/vsync_waiter_ios.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/framework/Source/vsync_waiter_ios.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_context.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_context.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_context_metal_impeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_context_metal_impeller.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_context_metal_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_context_metal_skia.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_context_software.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_context_software.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_external_texture_metal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_external_texture_metal.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_external_view_embedder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_external_view_embedder.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_surface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_surface.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_surface_metal_impeller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_surface_metal_impeller.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_surface_metal_skia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_surface_metal_skia.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_surface_software.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/ios_surface_software.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/platform_message_handler_ios.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/platform_message_handler_ios.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/platform_message_handler_ios_test.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/platform_view_ios.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/platform_view_ios.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/rendering_api_selection.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/ios/rendering_api_selection.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Headers/FlutterAppDelegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Headers/FlutterDartProject.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Headers/FlutterEngine.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Headers/FlutterMacOS.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Headers/FlutterPlatformViews.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Headers/FlutterPluginMacOS.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Headers/FlutterPluginRegistrarMacOS.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Headers/FlutterViewController.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/AccessibilityBridgeMac.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/AccessibilityBridgeMac.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/AccessibilityBridgeMacTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterAppDelegate.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterBackingStore.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterBackingStore.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterChannelKeyResponder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterChannelKeyResponder.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterChannelKeyResponderTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterCompositor.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterCompositor.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterCompositorTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterDartProject.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterDartProject_Internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterEmbedderExternalTextureTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterEmbedderKeyResponder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterEmbedderKeyResponder.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterEmbedderKeyResponderTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterEngine.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterEngineTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterEngineTestUtils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterEngineTestUtils.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterEngine_Internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterExternalTexture.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterExternalTexture.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterKeyPrimaryResponder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterKeyboardManager.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterKeyboardManager.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterKeyboardManagerTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterKeyboardViewDelegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterMenuPlugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterMenuPlugin.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterMenuPluginTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterMenuPlugin_Internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterMouseCursorPlugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterMouseCursorPlugin.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterPlatformNodeDelegateMac.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterPlatformNodeDelegateMac.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterPlatformNodeDelegateMacTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterPlatformViewController.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterPlatformViewController.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterPlatformViewControllerTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterRenderer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterRenderer.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterRendererTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterSurface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterSurface.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterSurfaceManager.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterSurfaceManager.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterSurfaceManagerTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterTextInputPlugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterTextInputPlugin.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterTextInputPluginTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterTextInputSemanticsObject.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterTextInputSemanticsObject.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterTextInputSemanticsObjectTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterTextureRegistrar.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterTextureRegistrar.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterView.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterView.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterViewController.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterViewControllerTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterViewControllerTestUtils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterViewControllerTestUtils.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterViewController_Internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterViewEngineProvider.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterViewEngineProvider.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterViewEngineProviderTest.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/FlutterViewProvider.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/KeyCodeMap.g.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/KeyCodeMap_Internal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/TestFlutterPlatformView.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/darwin/macos/framework/Source/TestFlutterPlatformView.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_engine.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_engine.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_exports.lst + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_external_texture_gl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_external_texture_gl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_external_texture_metal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_external_texture_metal.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_external_texture_resolver.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_external_texture_resolver.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_external_view.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_external_view.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_external_view_embedder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_external_view_embedder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_include.c + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_include2.c + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_layers.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_layers.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_platform_message_response.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_platform_message_response.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_render_target.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_render_target.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_render_target_cache.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_render_target_cache.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_struct_macros.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_surface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_surface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_surface_gl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_surface_gl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_surface_metal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_surface_metal.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_surface_software.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_surface_software.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_surface_vulkan.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_surface_vulkan.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_task_runner.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_task_runner.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_thread_host.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/embedder_thread_host.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/pixel_formats.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/pixel_formats.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/platform_view_embedder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/platform_view_embedder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/test_utils/key_codes.g.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/test_utils/proc_table_replacement.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/vsync_waiter_embedder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/embedder/vsync_waiter_embedder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/lib/fuchsia.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/sdk_ext/fuchsia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/fuchsia/sdk_ext/fuchsia.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/lib/src/handle.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/lib/src/handle_disposition.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/lib/src/handle_waiter.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/lib/src/init.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/lib/src/system.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/lib/src/zd_channel.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/lib/src/zd_handle.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/lib/zircon.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/sdk_ext/handle.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/sdk_ext/handle.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/sdk_ext/handle_disposition.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/sdk_ext/handle_disposition.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/sdk_ext/handle_waiter.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/sdk_ext/handle_waiter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/sdk_ext/natives.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/sdk_ext/natives.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/sdk_ext/system.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon/sdk_ext/system.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon_ffi/basic_types.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon_ffi/basic_types.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon_ffi/channel.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon_ffi/channel.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon_ffi/clock.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon_ffi/clock.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon_ffi/handle.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon_ffi/handle.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart-pkg/zircon_ffi/macros.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart/compiler.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/builtin_libraries.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/builtin_libraries.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/dart_component_controller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/dart_component_controller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/dart_runner.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/dart_runner.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/dart_test_component_controller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/dart_test_component_controller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/embedder/builtin.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/embedder/script_runner_snapshot.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/embedder/shim.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/embedder/snapshot.cc.tmpl + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/embedder/snapshot.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/embedder/snapshot.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/logging.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/main.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/meta/common.shard.cml + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/meta/dart_aot_product_runner.cml + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/meta/dart_aot_runner.cml + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/meta/dart_jit_product_runner.cml + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/meta/dart_jit_runner.cml + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/service_isolate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/service_isolate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/dart_runner/vmservice/empty.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/component_v1.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/component_v1.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/component_v2.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/component_v2.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/engine.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/engine.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/file_in_namespace_buffer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/file_in_namespace_buffer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/flatland_connection.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/flatland_connection.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/flatland_external_view_embedder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/flatland_external_view_embedder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/flatland_platform_view.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/flatland_platform_view.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/flutter_runner_fakes.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/flutter_runner_product_configuration.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/flutter_runner_product_configuration.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/focus_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/focus_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/fuchsia_intl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/fuchsia_intl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/gfx_external_view_embedder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/gfx_external_view_embedder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/gfx_platform_view.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/gfx_platform_view.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/gfx_session_connection.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/gfx_session_connection.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/isolate_configurator.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/isolate_configurator.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/kernel/framework_shim.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/keyboard.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/keyboard.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/logging.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/main.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/meta/common.shard.cml + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/meta/flutter_aot_product_runner.cml + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/meta/flutter_aot_runner.cml + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/meta/flutter_jit_product_runner.cml + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/meta/flutter_jit_runner.cml + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/platform_view.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/platform_view.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/pointer_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/pointer_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/pointer_injector_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/pointer_injector_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/program_metadata.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/runner.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/runner.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/software_surface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/software_surface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/software_surface_producer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/software_surface_producer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/surface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/surface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/surface_producer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/task_runner_adapter.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/task_runner_adapter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/text_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/text_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/unique_fdio_ns.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/vsync_waiter.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/vsync_waiter.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/vulkan_surface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/vulkan_surface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/vulkan_surface_pool.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/vulkan_surface_pool.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/vulkan_surface_producer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/flutter/vulkan_surface_producer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/profiler_symbols/dart_profiler_symbols.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/build_info.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/build_info_in.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/files.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/files.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/handle_exception.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/handle_exception.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/inlines.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/logging.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/mapped_resource.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/mapped_resource.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/root_inspect_node.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/root_inspect_node.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/tempfs.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/tempfs.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/vmo.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/vmo.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/vmservice_object.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/vmservice_object.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/client_wrapper/flutter_engine.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/client_wrapper/flutter_window_controller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/client_wrapper/include/flutter/flutter_engine.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/client_wrapper/include/flutter/flutter_window.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/client_wrapper/include/flutter/flutter_window_controller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/client_wrapper/include/flutter/plugin_registrar_glfw.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/event_loop.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/event_loop.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/flutter_glfw.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/glfw_event_loop.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/glfw_event_loop.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/headless_event_loop.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/headless_event_loop.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/key_event_handler.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/key_event_handler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/keyboard_hook_handler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/platform_handler.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/platform_handler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/public/flutter_glfw.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/system_utils.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/system_utils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/system_utils_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/text_input_plugin.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/glfw/text_input_plugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_accessibility_plugin.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_accessibility_plugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_accessible_node.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_accessible_node.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_accessible_node_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_accessible_text_field.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_accessible_text_field.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_accessible_text_field_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_backing_store_provider.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_backing_store_provider.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_basic_message_channel.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_basic_message_channel_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_binary_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_binary_codec_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_binary_messenger.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_binary_messenger_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_binary_messenger_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_dart_project.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_dart_project_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_dart_project_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_engine.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_engine_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_engine_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_event_channel.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_event_channel_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_gl_area.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_gl_area.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_gnome_settings.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_gnome_settings.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_gnome_settings_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_json_message_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_json_message_codec_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_json_method_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_json_method_codec_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_key_channel_responder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_key_channel_responder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_key_channel_responder_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_key_embedder_responder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_key_embedder_responder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_key_embedder_responder_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_key_embedder_responder_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_key_event.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_key_event.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_key_responder.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_key_responder.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_keyboard_manager.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_keyboard_manager.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_keyboard_manager_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_keyboard_view_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_keyboard_view_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_message_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_message_codec_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_method_call.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_method_call_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_method_channel.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_method_channel_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_method_channel_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_method_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_method_codec_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_method_codec_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_method_response.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_method_response_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_mouse_cursor_plugin.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_mouse_cursor_plugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_pixel_buffer_texture.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_pixel_buffer_texture_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_pixel_buffer_texture_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_platform_plugin.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_platform_plugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_plugin_registrar.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_plugin_registrar_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_plugin_registrar_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_plugin_registry.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_renderer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_renderer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_renderer_gl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_renderer_gl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_renderer_headless.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_renderer_headless.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_scrolling_manager.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_scrolling_manager.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_scrolling_manager_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_scrolling_view_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_scrolling_view_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_settings.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_settings.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_settings_plugin.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_settings_plugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_settings_plugin_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_settings_portal.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_settings_portal.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_settings_portal_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_standard_message_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_standard_message_codec_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_standard_message_codec_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_standard_method_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_standard_method_codec_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_string_codec.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_string_codec_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_task_runner.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_task_runner.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_text_input_plugin.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_text_input_plugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_text_input_plugin_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_text_input_view_delegate.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_text_input_view_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_texture.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_texture_gl.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_texture_gl_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_texture_gl_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_texture_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_texture_registrar.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_texture_registrar_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_texture_registrar_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_value.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_value_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_view.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_view_accessible.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_view_accessible.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_view_accessible_test.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/fl_view_private.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/key_mapping.g.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/key_mapping.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_basic_message_channel.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_binary_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_binary_messenger.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_dart_project.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_engine.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_event_channel.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_json_message_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_json_method_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_message_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_method_call.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_method_channel.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_method_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_method_response.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_pixel_buffer_texture.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_plugin_registrar.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_plugin_registry.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_standard_message_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_standard_method_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_string_codec.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_texture.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_texture_gl.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_texture_registrar.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_value.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/fl_view.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/linux/public/flutter_linux/flutter_linux.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/accessibility_alert.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/accessibility_alert.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/accessibility_bridge_windows.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/accessibility_bridge_windows.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/accessibility_root_node.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/accessibility_root_node.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/angle_surface_manager.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/angle_surface_manager.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/client_wrapper/flutter_engine.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/client_wrapper/flutter_view_controller.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/client_wrapper/include/flutter/dart_project.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/client_wrapper/include/flutter/flutter_engine.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/client_wrapper/include/flutter/flutter_view.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/client_wrapper/include/flutter/flutter_view_controller.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/client_wrapper/include/flutter/plugin_registrar_windows.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/cursor_handler.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/cursor_handler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/direct_manipulation.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/direct_manipulation.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/dpi_utils.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/dpi_utils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/event_watcher.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/event_watcher.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/external_texture.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/external_texture_d3d.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/external_texture_d3d.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/external_texture_pixelbuffer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/external_texture_pixelbuffer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_desktop_messenger.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_key_map.g.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_platform_node_delegate_windows.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_platform_node_delegate_windows.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_project_bundle.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_project_bundle.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_window.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_window.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_windows.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_windows_engine.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_windows_engine.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_windows_texture_registrar.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_windows_texture_registrar.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_windows_view.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/flutter_windows_view.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/keyboard_handler_base.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/keyboard_key_channel_handler.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/keyboard_key_channel_handler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/keyboard_key_embedder_handler.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/keyboard_key_embedder_handler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/keyboard_key_handler.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/keyboard_key_handler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/keyboard_manager.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/keyboard_manager.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/keyboard_utils.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/keyboard_utils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/platform_handler.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/platform_handler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/public/flutter_windows.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/sequential_id_generator.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/sequential_id_generator.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/settings_plugin.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/settings_plugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/system_utils.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/system_utils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/task_runner.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/task_runner.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/task_runner_window.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/task_runner_window.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/text_input_manager.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/text_input_manager.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/text_input_plugin.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/text_input_plugin.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/text_input_plugin_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/window.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/window.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/window_binding_handler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/window_binding_handler_delegate.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/window_proc_delegate_manager.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/window_proc_delegate_manager.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/window_state.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/windows_proc_table.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/windows_proc_table.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/windows_registry.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/windows_registry.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/platform/windows/windowsx_shim.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/profiling/sampling_profiler.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/profiling/sampling_profiler.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/version/version.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/version/version.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/shell/vmservice/empty.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/color_utils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/compiler_specific.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/container_utils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/logging.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/logging.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/macros.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/platform/darwin/scoped_nsobject.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/platform/darwin/scoped_nsobject.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/simple_token.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/simple_token.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/string_utils.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/string_utils.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/transform.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/transform.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/common/build_config.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/common/log.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/common/log.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/common/macros.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/converter/dart_converter.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/converter/dart_converter.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_args.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_binding_macros.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_class_library.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_class_library.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_class_provider.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_class_provider.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_library_natives.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_library_natives.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_list.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_list.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_message_handler.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_message_handler.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_microtask_queue.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_microtask_queue.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_persistent_value.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_persistent_value.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_state.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_state.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_weak_persistent_value.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_weak_persistent_value.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_wrappable.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_wrappable.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/dart_wrapper_info.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/file_loader/file_loader.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/file_loader/file_loader.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/file_loader/file_loader_fuchsia.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/file_loader/file_loader_posix.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/file_loader/file_loader_win.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/filesystem/filesystem/eintr_wrapper.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/filesystem/filesystem/file.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/filesystem/filesystem/file.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/filesystem/filesystem/path.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/filesystem/filesystem/path_posix.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/filesystem/filesystem/path_win.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/filesystem/filesystem/portable_unistd.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/logging/dart_error.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/logging/dart_error.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/logging/dart_invoke.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/logging/dart_invoke.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/parsers/packages_map.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/parsers/packages_map.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/scopes/dart_api_scope.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/scopes/dart_isolate_scope.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/scopes/dart_isolate_scope.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/typed_data/dart_byte_data.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/typed_data/dart_byte_data.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/typed_data/float32_list.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/typed_data/float64_list.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/typed_data/int32_list.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/typed_data/typed_list.cc + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/typed_data/typed_list.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/typed_data/uint16_list.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/tonic/typed_data/uint8_list.h + ../../../flutter/third_party/tonic/LICENSE +ORIGIN: ../../../flutter/third_party/txt/src/txt/platform.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/txt/src/txt/platform.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/txt/src/txt/platform_android.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/txt/src/txt/platform_fuchsia.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/txt/src/txt/platform_linux.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/txt/src/txt/platform_mac.mm + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/txt/src/txt/platform_windows.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/web_unicode/lib/web_unicode.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/third_party/web_unicode/tool/unicode_sync_script.dart + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/procs/vulkan_handle.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/procs/vulkan_handle.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/procs/vulkan_interface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/procs/vulkan_interface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/procs/vulkan_proc_table.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/procs/vulkan_proc_table.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_application.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_application.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_backbuffer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_backbuffer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_command_buffer.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_command_buffer.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_debug_report.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_debug_report.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_device.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_device.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_image.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_image.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_native_surface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_native_surface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_native_surface_android.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_native_surface_android.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_provider.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_provider.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_skia_proc_table.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_skia_proc_table.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_surface.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_surface.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_swapchain.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_swapchain.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_swapchain_stub.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_utilities.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_utilities.h + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_window.cc + ../../../flutter/LICENSE +ORIGIN: ../../../flutter/vulkan/vulkan_window.h + ../../../flutter/LICENSE TYPE: LicenseType.bsd -FILE: ../../../flutter/.clang-tidy FILE: ../../../flutter/.pylintrc -FILE: ../../../flutter/.style.yapf -FILE: ../../../flutter/DEPS FILE: ../../../flutter/assets/asset_manager.cc FILE: ../../../flutter/assets/asset_manager.h FILE: ../../../flutter/assets/asset_resolver.h @@ -721,15 +3259,11 @@ FILE: ../../../flutter/display_list/display_list_canvas_dispatcher.cc FILE: ../../../flutter/display_list/display_list_canvas_dispatcher.h FILE: ../../../flutter/display_list/display_list_canvas_recorder.cc FILE: ../../../flutter/display_list/display_list_canvas_recorder.h -FILE: ../../../flutter/display_list/display_list_canvas_unittests.cc FILE: ../../../flutter/display_list/display_list_color.h FILE: ../../../flutter/display_list/display_list_color_filter.cc FILE: ../../../flutter/display_list/display_list_color_filter.h -FILE: ../../../flutter/display_list/display_list_color_filter_unittests.cc FILE: ../../../flutter/display_list/display_list_color_source.cc FILE: ../../../flutter/display_list/display_list_color_source.h -FILE: ../../../flutter/display_list/display_list_color_source_unittests.cc -FILE: ../../../flutter/display_list/display_list_color_unittests.cc FILE: ../../../flutter/display_list/display_list_comparable.h FILE: ../../../flutter/display_list/display_list_complexity.cc FILE: ../../../flutter/display_list/display_list_complexity.h @@ -738,33 +3272,26 @@ FILE: ../../../flutter/display_list/display_list_complexity_gl.h FILE: ../../../flutter/display_list/display_list_complexity_helper.h FILE: ../../../flutter/display_list/display_list_complexity_metal.cc FILE: ../../../flutter/display_list/display_list_complexity_metal.h -FILE: ../../../flutter/display_list/display_list_complexity_unittests.cc FILE: ../../../flutter/display_list/display_list_dispatcher.cc FILE: ../../../flutter/display_list/display_list_dispatcher.h -FILE: ../../../flutter/display_list/display_list_enum_unittests.cc FILE: ../../../flutter/display_list/display_list_flags.cc FILE: ../../../flutter/display_list/display_list_flags.h FILE: ../../../flutter/display_list/display_list_image.cc FILE: ../../../flutter/display_list/display_list_image.h FILE: ../../../flutter/display_list/display_list_image_filter.cc FILE: ../../../flutter/display_list/display_list_image_filter.h -FILE: ../../../flutter/display_list/display_list_image_filter_unittests.cc FILE: ../../../flutter/display_list/display_list_image_skia.cc FILE: ../../../flutter/display_list/display_list_image_skia.h FILE: ../../../flutter/display_list/display_list_mask_filter.cc FILE: ../../../flutter/display_list/display_list_mask_filter.h -FILE: ../../../flutter/display_list/display_list_mask_filter_unittests.cc FILE: ../../../flutter/display_list/display_list_matrix_clip_tracker.cc FILE: ../../../flutter/display_list/display_list_matrix_clip_tracker.h -FILE: ../../../flutter/display_list/display_list_matrix_clip_tracker_unittests.cc FILE: ../../../flutter/display_list/display_list_ops.cc FILE: ../../../flutter/display_list/display_list_ops.h FILE: ../../../flutter/display_list/display_list_paint.cc FILE: ../../../flutter/display_list/display_list_paint.h -FILE: ../../../flutter/display_list/display_list_paint_unittests.cc FILE: ../../../flutter/display_list/display_list_path_effect.cc FILE: ../../../flutter/display_list/display_list_path_effect.h -FILE: ../../../flutter/display_list/display_list_path_effect_unittests.cc FILE: ../../../flutter/display_list/display_list_rtree.cc FILE: ../../../flutter/display_list/display_list_rtree.h FILE: ../../../flutter/display_list/display_list_runtime_effect.cc @@ -773,99 +3300,70 @@ FILE: ../../../flutter/display_list/display_list_sampling_options.h FILE: ../../../flutter/display_list/display_list_test_utils.cc FILE: ../../../flutter/display_list/display_list_test_utils.h FILE: ../../../flutter/display_list/display_list_tile_mode.h -FILE: ../../../flutter/display_list/display_list_unittests.cc FILE: ../../../flutter/display_list/display_list_utils.cc FILE: ../../../flutter/display_list/display_list_utils.h -FILE: ../../../flutter/display_list/display_list_utils_unittests.cc FILE: ../../../flutter/display_list/display_list_vertices.cc FILE: ../../../flutter/display_list/display_list_vertices.h -FILE: ../../../flutter/display_list/display_list_vertices_unittests.cc FILE: ../../../flutter/display_list/types.h FILE: ../../../flutter/flow/compositor_context.cc FILE: ../../../flutter/flow/compositor_context.h FILE: ../../../flutter/flow/diff_context.cc FILE: ../../../flutter/flow/diff_context.h -FILE: ../../../flutter/flow/diff_context_unittests.cc -FILE: ../../../flutter/flow/embedded_view_params_unittests.cc FILE: ../../../flutter/flow/embedded_views.cc FILE: ../../../flutter/flow/embedded_views.h -FILE: ../../../flutter/flow/flow_run_all_unittests.cc FILE: ../../../flutter/flow/flow_test_utils.cc FILE: ../../../flutter/flow/flow_test_utils.h FILE: ../../../flutter/flow/frame_timings.cc FILE: ../../../flutter/flow/frame_timings.h -FILE: ../../../flutter/flow/frame_timings_recorder_unittests.cc -FILE: ../../../flutter/flow/gl_context_switch_unittests.cc FILE: ../../../flutter/flow/instrumentation.cc FILE: ../../../flutter/flow/instrumentation.h -FILE: ../../../flutter/flow/instrumentation_unittests.cc FILE: ../../../flutter/flow/layer_snapshot_store.cc FILE: ../../../flutter/flow/layer_snapshot_store.h FILE: ../../../flutter/flow/layers/backdrop_filter_layer.cc FILE: ../../../flutter/flow/layers/backdrop_filter_layer.h -FILE: ../../../flutter/flow/layers/backdrop_filter_layer_unittests.cc FILE: ../../../flutter/flow/layers/cacheable_layer.cc FILE: ../../../flutter/flow/layers/cacheable_layer.h -FILE: ../../../flutter/flow/layers/checkerboard_layertree_unittests.cc FILE: ../../../flutter/flow/layers/clip_path_layer.cc FILE: ../../../flutter/flow/layers/clip_path_layer.h -FILE: ../../../flutter/flow/layers/clip_path_layer_unittests.cc FILE: ../../../flutter/flow/layers/clip_rect_layer.cc FILE: ../../../flutter/flow/layers/clip_rect_layer.h -FILE: ../../../flutter/flow/layers/clip_rect_layer_unittests.cc FILE: ../../../flutter/flow/layers/clip_rrect_layer.cc FILE: ../../../flutter/flow/layers/clip_rrect_layer.h -FILE: ../../../flutter/flow/layers/clip_rrect_layer_unittests.cc FILE: ../../../flutter/flow/layers/clip_shape_layer.h FILE: ../../../flutter/flow/layers/color_filter_layer.cc FILE: ../../../flutter/flow/layers/color_filter_layer.h -FILE: ../../../flutter/flow/layers/color_filter_layer_unittests.cc FILE: ../../../flutter/flow/layers/container_layer.cc FILE: ../../../flutter/flow/layers/container_layer.h -FILE: ../../../flutter/flow/layers/container_layer_unittests.cc FILE: ../../../flutter/flow/layers/display_list_layer.cc FILE: ../../../flutter/flow/layers/display_list_layer.h -FILE: ../../../flutter/flow/layers/display_list_layer_unittests.cc FILE: ../../../flutter/flow/layers/display_list_raster_cache_item.cc FILE: ../../../flutter/flow/layers/display_list_raster_cache_item.h FILE: ../../../flutter/flow/layers/image_filter_layer.cc FILE: ../../../flutter/flow/layers/image_filter_layer.h -FILE: ../../../flutter/flow/layers/image_filter_layer_unittests.cc FILE: ../../../flutter/flow/layers/layer.cc FILE: ../../../flutter/flow/layers/layer.h FILE: ../../../flutter/flow/layers/layer_raster_cache_item.cc FILE: ../../../flutter/flow/layers/layer_raster_cache_item.h FILE: ../../../flutter/flow/layers/layer_state_stack.cc FILE: ../../../flutter/flow/layers/layer_state_stack.h -FILE: ../../../flutter/flow/layers/layer_state_stack_unittests.cc FILE: ../../../flutter/flow/layers/layer_tree.cc FILE: ../../../flutter/flow/layers/layer_tree.h -FILE: ../../../flutter/flow/layers/layer_tree_unittests.cc FILE: ../../../flutter/flow/layers/offscreen_surface.cc FILE: ../../../flutter/flow/layers/offscreen_surface.h -FILE: ../../../flutter/flow/layers/offscreen_surface_unittests.cc FILE: ../../../flutter/flow/layers/opacity_layer.cc FILE: ../../../flutter/flow/layers/opacity_layer.h -FILE: ../../../flutter/flow/layers/opacity_layer_unittests.cc FILE: ../../../flutter/flow/layers/performance_overlay_layer.cc FILE: ../../../flutter/flow/layers/performance_overlay_layer.h -FILE: ../../../flutter/flow/layers/performance_overlay_layer_unittests.cc FILE: ../../../flutter/flow/layers/physical_shape_layer.cc FILE: ../../../flutter/flow/layers/physical_shape_layer.h -FILE: ../../../flutter/flow/layers/physical_shape_layer_unittests.cc FILE: ../../../flutter/flow/layers/platform_view_layer.cc FILE: ../../../flutter/flow/layers/platform_view_layer.h -FILE: ../../../flutter/flow/layers/platform_view_layer_unittests.cc FILE: ../../../flutter/flow/layers/shader_mask_layer.cc FILE: ../../../flutter/flow/layers/shader_mask_layer.h -FILE: ../../../flutter/flow/layers/shader_mask_layer_unittests.cc FILE: ../../../flutter/flow/layers/texture_layer.cc FILE: ../../../flutter/flow/layers/texture_layer.h -FILE: ../../../flutter/flow/layers/texture_layer_unittests.cc FILE: ../../../flutter/flow/layers/transform_layer.cc FILE: ../../../flutter/flow/layers/transform_layer.h -FILE: ../../../flutter/flow/layers/transform_layer_unittests.cc -FILE: ../../../flutter/flow/mutators_stack_unittests.cc FILE: ../../../flutter/flow/paint_region.cc FILE: ../../../flutter/flow/paint_region.h FILE: ../../../flutter/flow/paint_utils.cc @@ -875,44 +3373,34 @@ FILE: ../../../flutter/flow/raster_cache.h FILE: ../../../flutter/flow/raster_cache_item.h FILE: ../../../flutter/flow/raster_cache_key.cc FILE: ../../../flutter/flow/raster_cache_key.h -FILE: ../../../flutter/flow/raster_cache_unittests.cc FILE: ../../../flutter/flow/raster_cache_util.cc FILE: ../../../flutter/flow/raster_cache_util.h FILE: ../../../flutter/flow/rtree.cc FILE: ../../../flutter/flow/rtree.h -FILE: ../../../flutter/flow/rtree_unittests.cc FILE: ../../../flutter/flow/skia_gpu_object.h -FILE: ../../../flutter/flow/skia_gpu_object_unittests.cc FILE: ../../../flutter/flow/surface.cc FILE: ../../../flutter/flow/surface.h FILE: ../../../flutter/flow/surface_frame.cc FILE: ../../../flutter/flow/surface_frame.h -FILE: ../../../flutter/flow/surface_frame_unittests.cc -FILE: ../../../flutter/flow/texture_unittests.cc FILE: ../../../flutter/flutter_vma/flutter_skia_vma.cc FILE: ../../../flutter/flutter_vma/flutter_skia_vma.h FILE: ../../../flutter/flutter_vma/flutter_vma.cc FILE: ../../../flutter/flutter_vma/flutter_vma.h FILE: ../../../flutter/fml/ascii_trie.cc FILE: ../../../flutter/fml/ascii_trie.h -FILE: ../../../flutter/fml/ascii_trie_unittests.cc FILE: ../../../flutter/fml/backtrace.cc FILE: ../../../flutter/fml/backtrace.h FILE: ../../../flutter/fml/backtrace_stub.cc -FILE: ../../../flutter/fml/backtrace_unittests.cc FILE: ../../../flutter/fml/base32.cc FILE: ../../../flutter/fml/base32.h -FILE: ../../../flutter/fml/base32_unittest.cc FILE: ../../../flutter/fml/build_config.h FILE: ../../../flutter/fml/closure.h FILE: ../../../flutter/fml/command_line.cc FILE: ../../../flutter/fml/command_line.h -FILE: ../../../flutter/fml/command_line_unittest.cc FILE: ../../../flutter/fml/compiler_specific.h FILE: ../../../flutter/fml/concurrent_message_loop.cc FILE: ../../../flutter/fml/concurrent_message_loop.h FILE: ../../../flutter/fml/container.h -FILE: ../../../flutter/fml/container_unittests.cc FILE: ../../../flutter/fml/dart/dart_converter.cc FILE: ../../../flutter/fml/dart/dart_converter.h FILE: ../../../flutter/fml/delayed_task.cc @@ -920,15 +3408,11 @@ FILE: ../../../flutter/fml/delayed_task.h FILE: ../../../flutter/fml/eintr_wrapper.h FILE: ../../../flutter/fml/endianness.cc FILE: ../../../flutter/fml/endianness.h -FILE: ../../../flutter/fml/endianness_unittests.cc FILE: ../../../flutter/fml/file.cc FILE: ../../../flutter/fml/file.h -FILE: ../../../flutter/fml/file_unittest.cc FILE: ../../../flutter/fml/hash_combine.h -FILE: ../../../flutter/fml/hash_combine_unittests.cc FILE: ../../../flutter/fml/hex_codec.cc FILE: ../../../flutter/fml/hex_codec.h -FILE: ../../../flutter/fml/hex_codec_unittest.cc FILE: ../../../flutter/fml/icu_util.cc FILE: ../../../flutter/fml/icu_util.h FILE: ../../../flutter/fml/log_level.h @@ -937,42 +3421,31 @@ FILE: ../../../flutter/fml/log_settings.h FILE: ../../../flutter/fml/log_settings_state.cc FILE: ../../../flutter/fml/logging.cc FILE: ../../../flutter/fml/logging.h -FILE: ../../../flutter/fml/logging_unittests.cc FILE: ../../../flutter/fml/macros.h FILE: ../../../flutter/fml/make_copyable.h FILE: ../../../flutter/fml/mapping.cc FILE: ../../../flutter/fml/mapping.h -FILE: ../../../flutter/fml/mapping_unittests.cc FILE: ../../../flutter/fml/math.h -FILE: ../../../flutter/fml/math_unittests.cc FILE: ../../../flutter/fml/memory/ref_counted.h FILE: ../../../flutter/fml/memory/ref_counted_internal.h -FILE: ../../../flutter/fml/memory/ref_counted_unittest.cc FILE: ../../../flutter/fml/memory/ref_ptr.h FILE: ../../../flutter/fml/memory/ref_ptr_internal.h FILE: ../../../flutter/fml/memory/task_runner_checker.cc FILE: ../../../flutter/fml/memory/task_runner_checker.h -FILE: ../../../flutter/fml/memory/task_runner_checker_unittest.cc FILE: ../../../flutter/fml/memory/thread_checker.h FILE: ../../../flutter/fml/memory/weak_ptr.h FILE: ../../../flutter/fml/memory/weak_ptr_internal.cc FILE: ../../../flutter/fml/memory/weak_ptr_internal.h -FILE: ../../../flutter/fml/memory/weak_ptr_unittest.cc FILE: ../../../flutter/fml/message_loop.cc FILE: ../../../flutter/fml/message_loop.h FILE: ../../../flutter/fml/message_loop_impl.cc FILE: ../../../flutter/fml/message_loop_impl.h -FILE: ../../../flutter/fml/message_loop_impl_unittests.cc FILE: ../../../flutter/fml/message_loop_task_queues.cc FILE: ../../../flutter/fml/message_loop_task_queues.h FILE: ../../../flutter/fml/message_loop_task_queues_benchmark.cc -FILE: ../../../flutter/fml/message_loop_task_queues_merge_unmerge_unittests.cc -FILE: ../../../flutter/fml/message_loop_task_queues_unittests.cc -FILE: ../../../flutter/fml/message_loop_unittests.cc FILE: ../../../flutter/fml/native_library.h FILE: ../../../flutter/fml/paths.cc FILE: ../../../flutter/fml/paths.h -FILE: ../../../flutter/fml/paths_unittests.cc FILE: ../../../flutter/fml/platform/android/jni_util.cc FILE: ../../../flutter/fml/platform/android/jni_util.h FILE: ../../../flutter/fml/platform/android/jni_weak_ref.cc @@ -985,7 +3458,6 @@ FILE: ../../../flutter/fml/platform/android/scoped_java_ref.cc FILE: ../../../flutter/fml/platform/android/scoped_java_ref.h FILE: ../../../flutter/fml/platform/darwin/cf_utils.cc FILE: ../../../flutter/fml/platform/darwin/cf_utils.h -FILE: ../../../flutter/fml/platform/darwin/cf_utils_unittests.mm FILE: ../../../flutter/fml/platform/darwin/message_loop_darwin.h FILE: ../../../flutter/fml/platform/darwin/message_loop_darwin.mm FILE: ../../../flutter/fml/platform/darwin/paths_darwin.mm @@ -997,7 +3469,6 @@ FILE: ../../../flutter/fml/platform/darwin/scoped_nsobject.h FILE: ../../../flutter/fml/platform/darwin/scoped_nsobject.mm FILE: ../../../flutter/fml/platform/darwin/string_range_sanitization.h FILE: ../../../flutter/fml/platform/darwin/string_range_sanitization.mm -FILE: ../../../flutter/fml/platform/darwin/string_range_sanitization_unittests.mm FILE: ../../../flutter/fml/platform/fuchsia/message_loop_fuchsia.cc FILE: ../../../flutter/fml/platform/fuchsia/message_loop_fuchsia.h FILE: ../../../flutter/fml/platform/fuchsia/paths_fuchsia.cc @@ -1020,7 +3491,6 @@ FILE: ../../../flutter/fml/platform/win/command_line_win.cc FILE: ../../../flutter/fml/platform/win/errors_win.cc FILE: ../../../flutter/fml/platform/win/errors_win.h FILE: ../../../flutter/fml/platform/win/file_win.cc -FILE: ../../../flutter/fml/platform/win/file_win_unittests.cc FILE: ../../../flutter/fml/platform/win/mapping_win.cc FILE: ../../../flutter/fml/platform/win/message_loop_win.cc FILE: ../../../flutter/fml/platform/win/message_loop_win.h @@ -1029,55 +3499,42 @@ FILE: ../../../flutter/fml/platform/win/paths_win.cc FILE: ../../../flutter/fml/platform/win/posix_wrappers_win.cc FILE: ../../../flutter/fml/platform/win/wstring_conversion.cc FILE: ../../../flutter/fml/platform/win/wstring_conversion.h -FILE: ../../../flutter/fml/platform/win/wstring_conversion_unittests.cc FILE: ../../../flutter/fml/posix_wrappers.h FILE: ../../../flutter/fml/raster_thread_merger.cc FILE: ../../../flutter/fml/raster_thread_merger.h -FILE: ../../../flutter/fml/raster_thread_merger_unittests.cc FILE: ../../../flutter/fml/shared_thread_merger.cc FILE: ../../../flutter/fml/shared_thread_merger.h FILE: ../../../flutter/fml/size.h FILE: ../../../flutter/fml/status.h FILE: ../../../flutter/fml/string_conversion.cc FILE: ../../../flutter/fml/string_conversion.h -FILE: ../../../flutter/fml/string_conversion_unittests.cc FILE: ../../../flutter/fml/synchronization/atomic_object.h FILE: ../../../flutter/fml/synchronization/count_down_latch.cc FILE: ../../../flutter/fml/synchronization/count_down_latch.h -FILE: ../../../flutter/fml/synchronization/count_down_latch_unittests.cc FILE: ../../../flutter/fml/synchronization/semaphore.cc FILE: ../../../flutter/fml/synchronization/semaphore.h -FILE: ../../../flutter/fml/synchronization/semaphore_unittest.cc FILE: ../../../flutter/fml/synchronization/shared_mutex.h FILE: ../../../flutter/fml/synchronization/shared_mutex_std.cc FILE: ../../../flutter/fml/synchronization/shared_mutex_std.h FILE: ../../../flutter/fml/synchronization/sync_switch.cc FILE: ../../../flutter/fml/synchronization/sync_switch.h -FILE: ../../../flutter/fml/synchronization/sync_switch_unittest.cc FILE: ../../../flutter/fml/synchronization/waitable_event.cc FILE: ../../../flutter/fml/synchronization/waitable_event.h -FILE: ../../../flutter/fml/synchronization/waitable_event_unittest.cc FILE: ../../../flutter/fml/task_queue_id.h FILE: ../../../flutter/fml/task_runner.cc FILE: ../../../flutter/fml/task_runner.h FILE: ../../../flutter/fml/task_source.cc FILE: ../../../flutter/fml/task_source.h FILE: ../../../flutter/fml/task_source_grade.h -FILE: ../../../flutter/fml/task_source_unittests.cc FILE: ../../../flutter/fml/thread.cc FILE: ../../../flutter/fml/thread.h FILE: ../../../flutter/fml/thread_local.cc FILE: ../../../flutter/fml/thread_local.h -FILE: ../../../flutter/fml/thread_local_unittests.cc -FILE: ../../../flutter/fml/thread_unittests.cc FILE: ../../../flutter/fml/time/chrono_timestamp_provider.cc FILE: ../../../flutter/fml/time/chrono_timestamp_provider.h FILE: ../../../flutter/fml/time/time_delta.h -FILE: ../../../flutter/fml/time/time_delta_unittest.cc FILE: ../../../flutter/fml/time/time_point.cc FILE: ../../../flutter/fml/time/time_point.h -FILE: ../../../flutter/fml/time/time_point_unittest.cc -FILE: ../../../flutter/fml/time/time_unittest.cc FILE: ../../../flutter/fml/time/timestamp_provider.h FILE: ../../../flutter/fml/trace_event.cc FILE: ../../../flutter/fml/trace_event.h @@ -1089,7 +3546,6 @@ FILE: ../../../flutter/impeller/aiks/aiks_context.cc FILE: ../../../flutter/impeller/aiks/aiks_context.h FILE: ../../../flutter/impeller/aiks/aiks_playground.cc FILE: ../../../flutter/impeller/aiks/aiks_playground.h -FILE: ../../../flutter/impeller/aiks/aiks_unittests.cc FILE: ../../../flutter/impeller/aiks/canvas.cc FILE: ../../../flutter/impeller/aiks/canvas.h FILE: ../../../flutter/impeller/aiks/image.cc @@ -1120,11 +3576,9 @@ FILE: ../../../flutter/impeller/archivist/archive_vector.cc FILE: ../../../flutter/impeller/archivist/archive_vector.h FILE: ../../../flutter/impeller/archivist/archivist_fixture.cc FILE: ../../../flutter/impeller/archivist/archivist_fixture.h -FILE: ../../../flutter/impeller/archivist/archivist_unittests.cc FILE: ../../../flutter/impeller/base/allocation.cc FILE: ../../../flutter/impeller/base/allocation.h FILE: ../../../flutter/impeller/base/backend_cast.h -FILE: ../../../flutter/impeller/base/base_unittests.cc FILE: ../../../flutter/impeller/base/comparable.cc FILE: ../../../flutter/impeller/base/comparable.h FILE: ../../../flutter/impeller/base/config.h @@ -1153,7 +3607,6 @@ FILE: ../../../flutter/impeller/blobcat/blob_types.h FILE: ../../../flutter/impeller/blobcat/blob_writer.cc FILE: ../../../flutter/impeller/blobcat/blob_writer.h FILE: ../../../flutter/impeller/blobcat/blobcat_main.cc -FILE: ../../../flutter/impeller/blobcat/blobcat_unittests.cc FILE: ../../../flutter/impeller/compiler/code_gen_template.h FILE: ../../../flutter/impeller/compiler/compiler.cc FILE: ../../../flutter/impeller/compiler/compiler.h @@ -1161,7 +3614,6 @@ FILE: ../../../flutter/impeller/compiler/compiler_backend.cc FILE: ../../../flutter/impeller/compiler/compiler_backend.h FILE: ../../../flutter/impeller/compiler/compiler_test.cc FILE: ../../../flutter/impeller/compiler/compiler_test.h -FILE: ../../../flutter/impeller/compiler/compiler_unittests.cc FILE: ../../../flutter/impeller/compiler/impellerc_main.cc FILE: ../../../flutter/impeller/compiler/include_dir.h FILE: ../../../flutter/impeller/compiler/includer.cc @@ -1187,7 +3639,6 @@ FILE: ../../../flutter/impeller/compiler/spirv_sksl.cc FILE: ../../../flutter/impeller/compiler/spirv_sksl.h FILE: ../../../flutter/impeller/compiler/switches.cc FILE: ../../../flutter/impeller/compiler/switches.h -FILE: ../../../flutter/impeller/compiler/switches_unittests.cc FILE: ../../../flutter/impeller/compiler/types.cc FILE: ../../../flutter/impeller/compiler/types.h FILE: ../../../flutter/impeller/compiler/utilities.cc @@ -1198,45 +3649,10 @@ FILE: ../../../flutter/impeller/display_list/display_list_image_impeller.cc FILE: ../../../flutter/impeller/display_list/display_list_image_impeller.h FILE: ../../../flutter/impeller/display_list/display_list_playground.cc FILE: ../../../flutter/impeller/display_list/display_list_playground.h -FILE: ../../../flutter/impeller/display_list/display_list_unittests.cc FILE: ../../../flutter/impeller/display_list/display_list_vertices_geometry.cc FILE: ../../../flutter/impeller/display_list/display_list_vertices_geometry.h FILE: ../../../flutter/impeller/display_list/nine_patch_converter.cc FILE: ../../../flutter/impeller/display_list/nine_patch_converter.h -FILE: ../../../flutter/impeller/docs/assets/launch-app.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image1.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image10.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image11.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image12.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image13.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image14.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image15.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image16.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image17.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image18.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image2.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image3.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image4.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image5.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image6.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image7.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image8.png -FILE: ../../../flutter/impeller/docs/assets/read_frame_captures/image9.png -FILE: ../../../flutter/impeller/docs/assets/render-doc-capture.png -FILE: ../../../flutter/impeller/docs/assets/shader_pipeline.png -FILE: ../../../flutter/impeller/docs/assets/showcase.png -FILE: ../../../flutter/impeller/docs/assets/xcode_frame_capture/image1.png -FILE: ../../../flutter/impeller/docs/assets/xcode_frame_capture/image10.png -FILE: ../../../flutter/impeller/docs/assets/xcode_frame_capture/image11.png -FILE: ../../../flutter/impeller/docs/assets/xcode_frame_capture/image12.png -FILE: ../../../flutter/impeller/docs/assets/xcode_frame_capture/image2.png -FILE: ../../../flutter/impeller/docs/assets/xcode_frame_capture/image3.png -FILE: ../../../flutter/impeller/docs/assets/xcode_frame_capture/image4.png -FILE: ../../../flutter/impeller/docs/assets/xcode_frame_capture/image5.png -FILE: ../../../flutter/impeller/docs/assets/xcode_frame_capture/image6.png -FILE: ../../../flutter/impeller/docs/assets/xcode_frame_capture/image7.png -FILE: ../../../flutter/impeller/docs/assets/xcode_frame_capture/image8.png -FILE: ../../../flutter/impeller/docs/assets/xcode_frame_capture/image9.png FILE: ../../../flutter/impeller/entity/contents/atlas_contents.cc FILE: ../../../flutter/impeller/entity/contents/atlas_contents.h FILE: ../../../flutter/impeller/entity/contents/clip_contents.cc @@ -1265,7 +3681,6 @@ FILE: ../../../flutter/impeller/entity/contents/filters/inputs/filter_contents_f FILE: ../../../flutter/impeller/entity/contents/filters/inputs/filter_contents_filter_input.h FILE: ../../../flutter/impeller/entity/contents/filters/inputs/filter_input.cc FILE: ../../../flutter/impeller/entity/contents/filters/inputs/filter_input.h -FILE: ../../../flutter/impeller/entity/contents/filters/inputs/filter_input_unittests.cc FILE: ../../../flutter/impeller/entity/contents/filters/inputs/texture_filter_input.cc FILE: ../../../flutter/impeller/entity/contents/filters/inputs/texture_filter_input.h FILE: ../../../flutter/impeller/entity/contents/filters/linear_to_srgb_filter_contents.cc @@ -1310,7 +3725,6 @@ FILE: ../../../flutter/impeller/entity/entity_pass_delegate.cc FILE: ../../../flutter/impeller/entity/entity_pass_delegate.h FILE: ../../../flutter/impeller/entity/entity_playground.cc FILE: ../../../flutter/impeller/entity/entity_playground.h -FILE: ../../../flutter/impeller/entity/entity_unittests.cc FILE: ../../../flutter/impeller/entity/geometry.cc FILE: ../../../flutter/impeller/entity/geometry.h FILE: ../../../flutter/impeller/entity/inline_pass_context.cc @@ -1379,8 +3793,6 @@ FILE: ../../../flutter/impeller/geometry/color.h FILE: ../../../flutter/impeller/geometry/constants.cc FILE: ../../../flutter/impeller/geometry/constants.h FILE: ../../../flutter/impeller/geometry/geometry_benchmarks.cc -FILE: ../../../flutter/impeller/geometry/geometry_unittests.cc -FILE: ../../../flutter/impeller/geometry/geometry_unittests.h FILE: ../../../flutter/impeller/geometry/gradient.cc FILE: ../../../flutter/impeller/geometry/gradient.h FILE: ../../../flutter/impeller/geometry/matrix.cc @@ -1573,7 +3985,6 @@ FILE: ../../../flutter/impeller/renderer/compute_pipeline_builder.cc FILE: ../../../flutter/impeller/renderer/compute_pipeline_builder.h FILE: ../../../flutter/impeller/renderer/compute_pipeline_descriptor.cc FILE: ../../../flutter/impeller/renderer/compute_pipeline_descriptor.h -FILE: ../../../flutter/impeller/renderer/compute_unittests.cc FILE: ../../../flutter/impeller/renderer/context.cc FILE: ../../../flutter/impeller/renderer/context.h FILE: ../../../flutter/impeller/renderer/descriptor_set_layout.h @@ -1581,21 +3992,18 @@ FILE: ../../../flutter/impeller/renderer/device_buffer.cc FILE: ../../../flutter/impeller/renderer/device_buffer.h FILE: ../../../flutter/impeller/renderer/device_buffer_descriptor.cc FILE: ../../../flutter/impeller/renderer/device_buffer_descriptor.h -FILE: ../../../flutter/impeller/renderer/device_buffer_unittests.cc FILE: ../../../flutter/impeller/renderer/formats.cc FILE: ../../../flutter/impeller/renderer/formats.h FILE: ../../../flutter/impeller/renderer/gpu_tracer.cc FILE: ../../../flutter/impeller/renderer/gpu_tracer.h FILE: ../../../flutter/impeller/renderer/host_buffer.cc FILE: ../../../flutter/impeller/renderer/host_buffer.h -FILE: ../../../flutter/impeller/renderer/host_buffer_unittests.cc FILE: ../../../flutter/impeller/renderer/pipeline.cc FILE: ../../../flutter/impeller/renderer/pipeline.h FILE: ../../../flutter/impeller/renderer/pipeline_builder.cc FILE: ../../../flutter/impeller/renderer/pipeline_builder.h FILE: ../../../flutter/impeller/renderer/pipeline_descriptor.cc FILE: ../../../flutter/impeller/renderer/pipeline_descriptor.h -FILE: ../../../flutter/impeller/renderer/pipeline_descriptor_unittests.cc FILE: ../../../flutter/impeller/renderer/pipeline_library.cc FILE: ../../../flutter/impeller/renderer/pipeline_library.h FILE: ../../../flutter/impeller/renderer/platform.cc @@ -1608,7 +4016,6 @@ FILE: ../../../flutter/impeller/renderer/render_target.cc FILE: ../../../flutter/impeller/renderer/render_target.h FILE: ../../../flutter/impeller/renderer/renderer.cc FILE: ../../../flutter/impeller/renderer/renderer.h -FILE: ../../../flutter/impeller/renderer/renderer_unittests.cc FILE: ../../../flutter/impeller/renderer/sampler.cc FILE: ../../../flutter/impeller/renderer/sampler.h FILE: ../../../flutter/impeller/renderer/sampler_descriptor.cc @@ -1642,7 +4049,6 @@ FILE: ../../../flutter/impeller/runtime_stage/runtime_stage.fbs FILE: ../../../flutter/impeller/runtime_stage/runtime_stage.h FILE: ../../../flutter/impeller/runtime_stage/runtime_stage_playground.cc FILE: ../../../flutter/impeller/runtime_stage/runtime_stage_playground.h -FILE: ../../../flutter/impeller/runtime_stage/runtime_stage_unittests.cc FILE: ../../../flutter/impeller/runtime_stage/runtime_types.cc FILE: ../../../flutter/impeller/runtime_stage/runtime_types.h FILE: ../../../flutter/impeller/scene/camera.cc @@ -1653,7 +4059,6 @@ FILE: ../../../flutter/impeller/scene/importer/conversions.cc FILE: ../../../flutter/impeller/scene/importer/conversions.h FILE: ../../../flutter/impeller/scene/importer/importer.h FILE: ../../../flutter/impeller/scene/importer/importer_gltf.cc -FILE: ../../../flutter/impeller/scene/importer/importer_unittests.cc FILE: ../../../flutter/impeller/scene/importer/scene.fbs FILE: ../../../flutter/impeller/scene/importer/scenec_main.cc FILE: ../../../flutter/impeller/scene/importer/switches.cc @@ -1673,7 +4078,6 @@ FILE: ../../../flutter/impeller/scene/scene_context.cc FILE: ../../../flutter/impeller/scene/scene_context.h FILE: ../../../flutter/impeller/scene/scene_encoder.cc FILE: ../../../flutter/impeller/scene/scene_encoder.h -FILE: ../../../flutter/impeller/scene/scene_unittests.cc FILE: ../../../flutter/impeller/scene/shaders/geometry.vert FILE: ../../../flutter/impeller/scene/shaders/unlit.frag FILE: ../../../flutter/impeller/tessellator/c/tessellator.cc @@ -1681,7 +4085,6 @@ FILE: ../../../flutter/impeller/tessellator/c/tessellator.h FILE: ../../../flutter/impeller/tessellator/dart/lib/tessellator.dart FILE: ../../../flutter/impeller/tessellator/tessellator.cc FILE: ../../../flutter/impeller/tessellator/tessellator.h -FILE: ../../../flutter/impeller/tessellator/tessellator_unittests.cc FILE: ../../../flutter/impeller/toolkit/egl/config.cc FILE: ../../../flutter/impeller/toolkit/egl/config.h FILE: ../../../flutter/impeller/toolkit/egl/context.cc @@ -1716,10 +4119,8 @@ FILE: ../../../flutter/impeller/typographer/text_run.cc FILE: ../../../flutter/impeller/typographer/text_run.h FILE: ../../../flutter/impeller/typographer/typeface.cc FILE: ../../../flutter/impeller/typographer/typeface.h -FILE: ../../../flutter/impeller/typographer/typographer_unittests.cc FILE: ../../../flutter/lib/io/dart_io.cc FILE: ../../../flutter/lib/io/dart_io.h -FILE: ../../../flutter/lib/snapshot/libraries.json FILE: ../../../flutter/lib/snapshot/libraries_experimental.json FILE: ../../../flutter/lib/snapshot/snapshot.h FILE: ../../../flutter/lib/ui/annotations.dart @@ -1729,7 +4130,6 @@ FILE: ../../../flutter/lib/ui/compositing/scene.cc FILE: ../../../flutter/lib/ui/compositing/scene.h FILE: ../../../flutter/lib/ui/compositing/scene_builder.cc FILE: ../../../flutter/lib/ui/compositing/scene_builder.h -FILE: ../../../flutter/lib/ui/compositing/scene_builder_unittests.cc FILE: ../../../flutter/lib/ui/dart_runtime_hooks.cc FILE: ../../../flutter/lib/ui/dart_runtime_hooks.h FILE: ../../../flutter/lib/ui/dart_ui.cc @@ -1740,7 +4140,6 @@ FILE: ../../../flutter/lib/ui/experiments/ui.dart FILE: ../../../flutter/lib/ui/geometry.dart FILE: ../../../flutter/lib/ui/hash_codes.dart FILE: ../../../flutter/lib/ui/hooks.dart -FILE: ../../../flutter/lib/ui/hooks_unittests.cc FILE: ../../../flutter/lib/ui/io_manager.cc FILE: ../../../flutter/lib/ui/io_manager.h FILE: ../../../flutter/lib/ui/isolate_name_server.dart @@ -1781,10 +4180,8 @@ FILE: ../../../flutter/lib/ui/painting/image_decoder_impeller.cc FILE: ../../../flutter/lib/ui/painting/image_decoder_impeller.h FILE: ../../../flutter/lib/ui/painting/image_decoder_skia.cc FILE: ../../../flutter/lib/ui/painting/image_decoder_skia.h -FILE: ../../../flutter/lib/ui/painting/image_decoder_unittests.cc FILE: ../../../flutter/lib/ui/painting/image_descriptor.cc FILE: ../../../flutter/lib/ui/painting/image_descriptor.h -FILE: ../../../flutter/lib/ui/painting/image_dispose_unittests.cc FILE: ../../../flutter/lib/ui/painting/image_encoding.cc FILE: ../../../flutter/lib/ui/painting/image_encoding.h FILE: ../../../flutter/lib/ui/painting/image_encoding_impeller.cc @@ -1792,14 +4189,12 @@ FILE: ../../../flutter/lib/ui/painting/image_encoding_impeller.h FILE: ../../../flutter/lib/ui/painting/image_encoding_impl.h FILE: ../../../flutter/lib/ui/painting/image_encoding_skia.cc FILE: ../../../flutter/lib/ui/painting/image_encoding_skia.h -FILE: ../../../flutter/lib/ui/painting/image_encoding_unittests.cc FILE: ../../../flutter/lib/ui/painting/image_filter.cc FILE: ../../../flutter/lib/ui/painting/image_filter.h FILE: ../../../flutter/lib/ui/painting/image_generator.cc FILE: ../../../flutter/lib/ui/painting/image_generator.h FILE: ../../../flutter/lib/ui/painting/image_generator_registry.cc FILE: ../../../flutter/lib/ui/painting/image_generator_registry.h -FILE: ../../../flutter/lib/ui/painting/image_generator_registry_unittests.cc FILE: ../../../flutter/lib/ui/painting/image_shader.cc FILE: ../../../flutter/lib/ui/painting/image_shader.h FILE: ../../../flutter/lib/ui/painting/immutable_buffer.cc @@ -1810,12 +4205,10 @@ FILE: ../../../flutter/lib/ui/painting/multi_frame_codec.cc FILE: ../../../flutter/lib/ui/painting/multi_frame_codec.h FILE: ../../../flutter/lib/ui/painting/paint.cc FILE: ../../../flutter/lib/ui/painting/paint.h -FILE: ../../../flutter/lib/ui/painting/paint_unittests.cc FILE: ../../../flutter/lib/ui/painting/path.cc FILE: ../../../flutter/lib/ui/painting/path.h FILE: ../../../flutter/lib/ui/painting/path_measure.cc FILE: ../../../flutter/lib/ui/painting/path_measure.h -FILE: ../../../flutter/lib/ui/painting/path_unittests.cc FILE: ../../../flutter/lib/ui/painting/picture.cc FILE: ../../../flutter/lib/ui/painting/picture.h FILE: ../../../flutter/lib/ui/painting/picture_recorder.cc @@ -1826,7 +4219,6 @@ FILE: ../../../flutter/lib/ui/painting/shader.cc FILE: ../../../flutter/lib/ui/painting/shader.h FILE: ../../../flutter/lib/ui/painting/single_frame_codec.cc FILE: ../../../flutter/lib/ui/painting/single_frame_codec.h -FILE: ../../../flutter/lib/ui/painting/single_frame_codec_unittests.cc FILE: ../../../flutter/lib/ui/painting/vertices.cc FILE: ../../../flutter/lib/ui/painting/vertices.h FILE: ../../../flutter/lib/ui/platform_dispatcher.dart @@ -1843,7 +4235,6 @@ FILE: ../../../flutter/lib/ui/semantics/semantics_update.cc FILE: ../../../flutter/lib/ui/semantics/semantics_update.h FILE: ../../../flutter/lib/ui/semantics/semantics_update_builder.cc FILE: ../../../flutter/lib/ui/semantics/semantics_update_builder.h -FILE: ../../../flutter/lib/ui/semantics/semantics_update_builder_unittests.cc FILE: ../../../flutter/lib/ui/semantics/string_attribute.cc FILE: ../../../flutter/lib/ui/semantics/string_attribute.h FILE: ../../../flutter/lib/ui/snapshot_delegate.h @@ -1871,7 +4262,6 @@ FILE: ../../../flutter/lib/ui/window/key_data_packet.cc FILE: ../../../flutter/lib/ui/window/key_data_packet.h FILE: ../../../flutter/lib/ui/window/platform_configuration.cc FILE: ../../../flutter/lib/ui/window/platform_configuration.h -FILE: ../../../flutter/lib/ui/window/platform_configuration_unittests.cc FILE: ../../../flutter/lib/ui/window/platform_message.cc FILE: ../../../flutter/lib/ui/window/platform_message.h FILE: ../../../flutter/lib/ui/window/platform_message_response.cc @@ -1880,16 +4270,12 @@ FILE: ../../../flutter/lib/ui/window/platform_message_response_dart.cc FILE: ../../../flutter/lib/ui/window/platform_message_response_dart.h FILE: ../../../flutter/lib/ui/window/platform_message_response_dart_port.cc FILE: ../../../flutter/lib/ui/window/platform_message_response_dart_port.h -FILE: ../../../flutter/lib/ui/window/platform_message_response_dart_port_unittests.cc -FILE: ../../../flutter/lib/ui/window/platform_message_response_dart_unittests.cc FILE: ../../../flutter/lib/ui/window/pointer_data.cc FILE: ../../../flutter/lib/ui/window/pointer_data.h FILE: ../../../flutter/lib/ui/window/pointer_data_packet.cc FILE: ../../../flutter/lib/ui/window/pointer_data_packet.h FILE: ../../../flutter/lib/ui/window/pointer_data_packet_converter.cc FILE: ../../../flutter/lib/ui/window/pointer_data_packet_converter.h -FILE: ../../../flutter/lib/ui/window/pointer_data_packet_converter_unittests.cc -FILE: ../../../flutter/lib/ui/window/pointer_data_packet_unittests.cc FILE: ../../../flutter/lib/ui/window/viewport_metrics.cc FILE: ../../../flutter/lib/ui/window/viewport_metrics.h FILE: ../../../flutter/lib/ui/window/window.cc @@ -2086,14 +4472,10 @@ FILE: ../../../flutter/runtime/dart_isolate.cc FILE: ../../../flutter/runtime/dart_isolate.h FILE: ../../../flutter/runtime/dart_isolate_group_data.cc FILE: ../../../flutter/runtime/dart_isolate_group_data.h -FILE: ../../../flutter/runtime/dart_isolate_unittests.cc -FILE: ../../../flutter/runtime/dart_lifecycle_unittests.cc FILE: ../../../flutter/runtime/dart_plugin_registrant.cc FILE: ../../../flutter/runtime/dart_plugin_registrant.h -FILE: ../../../flutter/runtime/dart_plugin_registrant_unittests.cc FILE: ../../../flutter/runtime/dart_service_isolate.cc FILE: ../../../flutter/runtime/dart_service_isolate.h -FILE: ../../../flutter/runtime/dart_service_isolate_unittests.cc FILE: ../../../flutter/runtime/dart_snapshot.cc FILE: ../../../flutter/runtime/dart_snapshot.h FILE: ../../../flutter/runtime/dart_timestamp_provider.cc @@ -2106,12 +4488,10 @@ FILE: ../../../flutter/runtime/dart_vm_initializer.cc FILE: ../../../flutter/runtime/dart_vm_initializer.h FILE: ../../../flutter/runtime/dart_vm_lifecycle.cc FILE: ../../../flutter/runtime/dart_vm_lifecycle.h -FILE: ../../../flutter/runtime/dart_vm_unittests.cc FILE: ../../../flutter/runtime/embedder_resources.cc FILE: ../../../flutter/runtime/embedder_resources.h FILE: ../../../flutter/runtime/isolate_configuration.cc FILE: ../../../flutter/runtime/isolate_configuration.h -FILE: ../../../flutter/runtime/no_dart_plugin_registrant_unittests.cc FILE: ../../../flutter/runtime/platform_data.cc FILE: ../../../flutter/runtime/platform_data.h FILE: ../../../flutter/runtime/ptrace_check.cc @@ -2126,16 +4506,12 @@ FILE: ../../../flutter/runtime/skia_concurrent_executor.cc FILE: ../../../flutter/runtime/skia_concurrent_executor.h FILE: ../../../flutter/runtime/test_font_data.cc FILE: ../../../flutter/runtime/test_font_data.h -FILE: ../../../flutter/runtime/type_conversions_unittests.cc FILE: ../../../flutter/shell/common/animator.cc FILE: ../../../flutter/shell/common/animator.h -FILE: ../../../flutter/shell/common/animator_unittests.cc FILE: ../../../flutter/shell/common/canvas_spy.cc FILE: ../../../flutter/shell/common/canvas_spy.h -FILE: ../../../flutter/shell/common/canvas_spy_unittests.cc FILE: ../../../flutter/shell/common/context_options.cc FILE: ../../../flutter/shell/common/context_options.h -FILE: ../../../flutter/shell/common/context_options_unittests.cc FILE: ../../../flutter/shell/common/dart_native_benchmarks.cc FILE: ../../../flutter/shell/common/display.cc FILE: ../../../flutter/shell/common/display.h @@ -2143,12 +4519,8 @@ FILE: ../../../flutter/shell/common/display_manager.cc FILE: ../../../flutter/shell/common/display_manager.h FILE: ../../../flutter/shell/common/engine.cc FILE: ../../../flutter/shell/common/engine.h -FILE: ../../../flutter/shell/common/engine_unittests.cc -FILE: ../../../flutter/shell/common/input_events_unittests.cc -FILE: ../../../flutter/shell/common/persistent_cache_unittests.cc FILE: ../../../flutter/shell/common/pipeline.cc FILE: ../../../flutter/shell/common/pipeline.h -FILE: ../../../flutter/shell/common/pipeline_unittests.cc FILE: ../../../flutter/shell/common/platform_message_handler.h FILE: ../../../flutter/shell/common/platform_view.cc FILE: ../../../flutter/shell/common/platform_view.h @@ -2156,10 +4528,8 @@ FILE: ../../../flutter/shell/common/pointer_data_dispatcher.cc FILE: ../../../flutter/shell/common/pointer_data_dispatcher.h FILE: ../../../flutter/shell/common/rasterizer.cc FILE: ../../../flutter/shell/common/rasterizer.h -FILE: ../../../flutter/shell/common/rasterizer_unittests.cc FILE: ../../../flutter/shell/common/resource_cache_limit_calculator.cc FILE: ../../../flutter/shell/common/resource_cache_limit_calculator.h -FILE: ../../../flutter/shell/common/resource_cache_limit_calculator_unittests.cc FILE: ../../../flutter/shell/common/run_configuration.cc FILE: ../../../flutter/shell/common/run_configuration.h FILE: ../../../flutter/shell/common/serialization_callbacks.cc @@ -2167,10 +4537,8 @@ FILE: ../../../flutter/shell/common/serialization_callbacks.h FILE: ../../../flutter/shell/common/shell.cc FILE: ../../../flutter/shell/common/shell.h FILE: ../../../flutter/shell/common/shell_benchmarks.cc -FILE: ../../../flutter/shell/common/shell_fuchsia_unittests.cc FILE: ../../../flutter/shell/common/shell_io_manager.cc FILE: ../../../flutter/shell/common/shell_io_manager.h -FILE: ../../../flutter/shell/common/shell_io_manager_unittests.cc FILE: ../../../flutter/shell/common/shell_test.cc FILE: ../../../flutter/shell/common/shell_test.h FILE: ../../../flutter/shell/common/shell_test_external_view_embedder.cc @@ -2183,7 +4551,6 @@ FILE: ../../../flutter/shell/common/shell_test_platform_view_metal.h FILE: ../../../flutter/shell/common/shell_test_platform_view_metal.mm FILE: ../../../flutter/shell/common/shell_test_platform_view_vulkan.cc FILE: ../../../flutter/shell/common/shell_test_platform_view_vulkan.h -FILE: ../../../flutter/shell/common/shell_unittests.cc FILE: ../../../flutter/shell/common/skia_event_tracer_impl.cc FILE: ../../../flutter/shell/common/skia_event_tracer_impl.h FILE: ../../../flutter/shell/common/snapshot_controller.cc @@ -2195,18 +4562,15 @@ FILE: ../../../flutter/shell/common/snapshot_controller_skia.h FILE: ../../../flutter/shell/common/snapshot_surface_producer.h FILE: ../../../flutter/shell/common/switches.cc FILE: ../../../flutter/shell/common/switches.h -FILE: ../../../flutter/shell/common/switches_unittests.cc FILE: ../../../flutter/shell/common/thread_host.cc FILE: ../../../flutter/shell/common/thread_host.h FILE: ../../../flutter/shell/common/variable_refresh_rate_display.cc FILE: ../../../flutter/shell/common/variable_refresh_rate_display.h -FILE: ../../../flutter/shell/common/variable_refresh_rate_display_unittests.cc FILE: ../../../flutter/shell/common/variable_refresh_rate_reporter.h FILE: ../../../flutter/shell/common/vsync_waiter.cc FILE: ../../../flutter/shell/common/vsync_waiter.h FILE: ../../../flutter/shell/common/vsync_waiter_fallback.cc FILE: ../../../flutter/shell/common/vsync_waiter_fallback.h -FILE: ../../../flutter/shell/common/vsync_waiter_unittests.cc FILE: ../../../flutter/shell/common/vsync_waiters_test.cc FILE: ../../../flutter/shell/common/vsync_waiters_test.h FILE: ../../../flutter/shell/gpu/gpu_surface_gl_delegate.cc @@ -2238,7 +4602,6 @@ FILE: ../../../flutter/shell/platform/android/android_context_gl_impeller.cc FILE: ../../../flutter/shell/platform/android/android_context_gl_impeller.h FILE: ../../../flutter/shell/platform/android/android_context_gl_skia.cc FILE: ../../../flutter/shell/platform/android/android_context_gl_skia.h -FILE: ../../../flutter/shell/platform/android/android_context_gl_unittests.cc FILE: ../../../flutter/shell/platform/android/android_display.cc FILE: ../../../flutter/shell/platform/android/android_display.h FILE: ../../../flutter/shell/platform/android/android_egl_surface.cc @@ -2252,7 +4615,6 @@ FILE: ../../../flutter/shell/platform/android/android_image_generator.cc FILE: ../../../flutter/shell/platform/android/android_image_generator.h FILE: ../../../flutter/shell/platform/android/android_shell_holder.cc FILE: ../../../flutter/shell/platform/android/android_shell_holder.h -FILE: ../../../flutter/shell/platform/android/android_shell_holder_unittests.cc FILE: ../../../flutter/shell/platform/android/android_surface_gl_impeller.cc FILE: ../../../flutter/shell/platform/android/android_surface_gl_impeller.h FILE: ../../../flutter/shell/platform/android/android_surface_gl_skia.cc @@ -2263,18 +4625,14 @@ FILE: ../../../flutter/shell/platform/android/android_surface_vulkan_impeller.cc FILE: ../../../flutter/shell/platform/android/android_surface_vulkan_impeller.h FILE: ../../../flutter/shell/platform/android/apk_asset_provider.cc FILE: ../../../flutter/shell/platform/android/apk_asset_provider.h -FILE: ../../../flutter/shell/platform/android/apk_asset_provider_unittests.cc FILE: ../../../flutter/shell/platform/android/context/android_context.cc FILE: ../../../flutter/shell/platform/android/context/android_context.h FILE: ../../../flutter/shell/platform/android/external_view_embedder/external_view_embedder.cc FILE: ../../../flutter/shell/platform/android/external_view_embedder/external_view_embedder.h -FILE: ../../../flutter/shell/platform/android/external_view_embedder/external_view_embedder_unittests.cc FILE: ../../../flutter/shell/platform/android/external_view_embedder/surface_pool.cc FILE: ../../../flutter/shell/platform/android/external_view_embedder/surface_pool.h -FILE: ../../../flutter/shell/platform/android/external_view_embedder/surface_pool_unittests.cc FILE: ../../../flutter/shell/platform/android/flutter_main.cc FILE: ../../../flutter/shell/platform/android/flutter_main.h -FILE: ../../../flutter/shell/platform/android/flutter_shell_native_unittests.cc FILE: ../../../flutter/shell/platform/android/io/flutter/FlutterInjector.java FILE: ../../../flutter/shell/platform/android/io/flutter/Log.java FILE: ../../../flutter/shell/platform/android/io/flutter/app/FlutterActivity.java @@ -2422,7 +4780,6 @@ FILE: ../../../flutter/shell/platform/android/io/flutter/view/FlutterView.java FILE: ../../../flutter/shell/platform/android/io/flutter/view/TextureRegistry.java FILE: ../../../flutter/shell/platform/android/io/flutter/view/VsyncWaiter.java FILE: ../../../flutter/shell/platform/android/jni/jni_mock.h -FILE: ../../../flutter/shell/platform/android/jni/jni_mock_unittest.cc FILE: ../../../flutter/shell/platform/android/jni/platform_view_android_jni.cc FILE: ../../../flutter/shell/platform/android/jni/platform_view_android_jni.h FILE: ../../../flutter/shell/platform/android/library_loader.cc @@ -2434,7 +4791,6 @@ FILE: ../../../flutter/shell/platform/android/platform_view_android.cc FILE: ../../../flutter/shell/platform/android/platform_view_android.h FILE: ../../../flutter/shell/platform/android/platform_view_android_delegate/platform_view_android_delegate.cc FILE: ../../../flutter/shell/platform/android/platform_view_android_delegate/platform_view_android_delegate.h -FILE: ../../../flutter/shell/platform/android/platform_view_android_delegate/platform_view_android_delegate_unittests.cc FILE: ../../../flutter/shell/platform/android/platform_view_android_jni_impl.cc FILE: ../../../flutter/shell/platform/android/platform_view_android_jni_impl.h FILE: ../../../flutter/shell/platform/android/surface/android_native_window.cc @@ -2449,14 +4805,10 @@ FILE: ../../../flutter/shell/platform/android/vsync_waiter_android.cc FILE: ../../../flutter/shell/platform/android/vsync_waiter_android.h FILE: ../../../flutter/shell/platform/common/accessibility_bridge.cc FILE: ../../../flutter/shell/platform/common/accessibility_bridge.h -FILE: ../../../flutter/shell/platform/common/accessibility_bridge_unittests.cc -FILE: ../../../flutter/shell/platform/common/client_wrapper/basic_message_channel_unittests.cc FILE: ../../../flutter/shell/platform/common/client_wrapper/binary_messenger_impl.h FILE: ../../../flutter/shell/platform/common/client_wrapper/byte_buffer_streams.h FILE: ../../../flutter/shell/platform/common/client_wrapper/core_implementations.cc -FILE: ../../../flutter/shell/platform/common/client_wrapper/encodable_value_unittests.cc FILE: ../../../flutter/shell/platform/common/client_wrapper/engine_method_result.cc -FILE: ../../../flutter/shell/platform/common/client_wrapper/event_channel_unittests.cc FILE: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/basic_message_channel.h FILE: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/binary_messenger.h FILE: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/byte_streams.h @@ -2478,36 +4830,22 @@ FILE: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/stan FILE: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/standard_message_codec.h FILE: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/standard_method_codec.h FILE: ../../../flutter/shell/platform/common/client_wrapper/include/flutter/texture_registrar.h -FILE: ../../../flutter/shell/platform/common/client_wrapper/method_call_unittests.cc -FILE: ../../../flutter/shell/platform/common/client_wrapper/method_channel_unittests.cc -FILE: ../../../flutter/shell/platform/common/client_wrapper/method_result_functions_unittests.cc FILE: ../../../flutter/shell/platform/common/client_wrapper/plugin_registrar.cc -FILE: ../../../flutter/shell/platform/common/client_wrapper/plugin_registrar_unittests.cc FILE: ../../../flutter/shell/platform/common/client_wrapper/standard_codec.cc -FILE: ../../../flutter/shell/platform/common/client_wrapper/standard_message_codec_unittests.cc -FILE: ../../../flutter/shell/platform/common/client_wrapper/standard_method_codec_unittests.cc FILE: ../../../flutter/shell/platform/common/client_wrapper/texture_registrar_impl.h -FILE: ../../../flutter/shell/platform/common/client_wrapper/texture_registrar_unittests.cc FILE: ../../../flutter/shell/platform/common/engine_switches.cc FILE: ../../../flutter/shell/platform/common/engine_switches.h -FILE: ../../../flutter/shell/platform/common/engine_switches_unittests.cc FILE: ../../../flutter/shell/platform/common/flutter_platform_node_delegate.cc FILE: ../../../flutter/shell/platform/common/flutter_platform_node_delegate.h -FILE: ../../../flutter/shell/platform/common/flutter_platform_node_delegate_unittests.cc FILE: ../../../flutter/shell/platform/common/geometry.h -FILE: ../../../flutter/shell/platform/common/geometry_unittests.cc FILE: ../../../flutter/shell/platform/common/incoming_message_dispatcher.cc FILE: ../../../flutter/shell/platform/common/incoming_message_dispatcher.h -FILE: ../../../flutter/shell/platform/common/incoming_message_dispatcher_unittests.cc FILE: ../../../flutter/shell/platform/common/json_message_codec.cc FILE: ../../../flutter/shell/platform/common/json_message_codec.h -FILE: ../../../flutter/shell/platform/common/json_message_codec_unittests.cc FILE: ../../../flutter/shell/platform/common/json_method_codec.cc FILE: ../../../flutter/shell/platform/common/json_method_codec.h -FILE: ../../../flutter/shell/platform/common/json_method_codec_unittests.cc FILE: ../../../flutter/shell/platform/common/path_utils.cc FILE: ../../../flutter/shell/platform/common/path_utils.h -FILE: ../../../flutter/shell/platform/common/path_utils_unittests.cc FILE: ../../../flutter/shell/platform/common/platform_provided_menu.h FILE: ../../../flutter/shell/platform/common/public/flutter_export.h FILE: ../../../flutter/shell/platform/common/public/flutter_macros.h @@ -2518,12 +4856,9 @@ FILE: ../../../flutter/shell/platform/common/test_accessibility_bridge.cc FILE: ../../../flutter/shell/platform/common/test_accessibility_bridge.h FILE: ../../../flutter/shell/platform/common/text_editing_delta.cc FILE: ../../../flutter/shell/platform/common/text_editing_delta.h -FILE: ../../../flutter/shell/platform/common/text_editing_delta_unittests.cc FILE: ../../../flutter/shell/platform/common/text_input_model.cc FILE: ../../../flutter/shell/platform/common/text_input_model.h -FILE: ../../../flutter/shell/platform/common/text_input_model_unittests.cc FILE: ../../../flutter/shell/platform/common/text_range.h -FILE: ../../../flutter/shell/platform/common/text_range_unittests.cc FILE: ../../../flutter/shell/platform/darwin/common/buffer_conversions.h FILE: ../../../flutter/shell/platform/darwin/common/buffer_conversions.mm FILE: ../../../flutter/shell/platform/darwin/common/command_line.h @@ -2538,8 +4873,6 @@ FILE: ../../../flutter/shell/platform/darwin/common/framework/Source/FlutterChan FILE: ../../../flutter/shell/platform/darwin/common/framework/Source/FlutterCodecs.mm FILE: ../../../flutter/shell/platform/darwin/common/framework/Source/FlutterStandardCodec.mm FILE: ../../../flutter/shell/platform/darwin/common/framework/Source/FlutterStandardCodec_Internal.h -FILE: ../../../flutter/shell/platform/darwin/common/framework/Source/flutter_codecs_unittest.mm -FILE: ../../../flutter/shell/platform/darwin/common/framework/Source/flutter_standard_codec_unittest.mm FILE: ../../../flutter/shell/platform/darwin/graphics/FlutterDarwinContextMetalImpeller.h FILE: ../../../flutter/shell/platform/darwin/graphics/FlutterDarwinContextMetalImpeller.mm FILE: ../../../flutter/shell/platform/darwin/graphics/FlutterDarwinContextMetalSkia.h @@ -2814,7 +5147,6 @@ FILE: ../../../flutter/shell/platform/embedder/pixel_formats.cc FILE: ../../../flutter/shell/platform/embedder/pixel_formats.h FILE: ../../../flutter/shell/platform/embedder/platform_view_embedder.cc FILE: ../../../flutter/shell/platform/embedder/platform_view_embedder.h -FILE: ../../../flutter/shell/platform/embedder/platform_view_embedder_unittests.cc FILE: ../../../flutter/shell/platform/embedder/test_utils/key_codes.g.h FILE: ../../../flutter/shell/platform/embedder/test_utils/proc_table_replacement.h FILE: ../../../flutter/shell/platform/embedder/vsync_waiter_embedder.cc @@ -2867,7 +5199,6 @@ FILE: ../../../flutter/shell/platform/fuchsia/dart_runner/embedder/shim.dart FILE: ../../../flutter/shell/platform/fuchsia/dart_runner/embedder/snapshot.cc.tmpl FILE: ../../../flutter/shell/platform/fuchsia/dart_runner/embedder/snapshot.dart FILE: ../../../flutter/shell/platform/fuchsia/dart_runner/embedder/snapshot.h -FILE: ../../../flutter/shell/platform/fuchsia/dart_runner/kernel/libraries.json FILE: ../../../flutter/shell/platform/fuchsia/dart_runner/logging.h FILE: ../../../flutter/shell/platform/fuchsia/dart_runner/main.cc FILE: ../../../flutter/shell/platform/fuchsia/dart_runner/meta/common.shard.cml @@ -2880,13 +5211,10 @@ FILE: ../../../flutter/shell/platform/fuchsia/dart_runner/service_isolate.h FILE: ../../../flutter/shell/platform/fuchsia/dart_runner/vmservice/empty.dart FILE: ../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge.h -FILE: ../../../flutter/shell/platform/fuchsia/flutter/accessibility_bridge_unittest.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/component_v1.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/component_v1.h -FILE: ../../../flutter/shell/platform/fuchsia/flutter/component_v1_unittest.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/component_v2.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/component_v2.h -FILE: ../../../flutter/shell/platform/fuchsia/flutter/component_v2_unittest.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/engine.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/engine.h FILE: ../../../flutter/shell/platform/fuchsia/flutter/file_in_namespace_buffer.cc @@ -2902,10 +5230,8 @@ FILE: ../../../flutter/shell/platform/fuchsia/flutter/flutter_runner_product_con FILE: ../../../flutter/shell/platform/fuchsia/flutter/flutter_runner_product_configuration.h FILE: ../../../flutter/shell/platform/fuchsia/flutter/focus_delegate.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/focus_delegate.h -FILE: ../../../flutter/shell/platform/fuchsia/flutter/focus_delegate_unittests.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/fuchsia_intl.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/fuchsia_intl.h -FILE: ../../../flutter/shell/platform/fuchsia/flutter/fuchsia_intl_unittest.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/gfx_external_view_embedder.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/gfx_external_view_embedder.h FILE: ../../../flutter/shell/platform/fuchsia/flutter/gfx_platform_view.cc @@ -2915,10 +5241,8 @@ FILE: ../../../flutter/shell/platform/fuchsia/flutter/gfx_session_connection.h FILE: ../../../flutter/shell/platform/fuchsia/flutter/isolate_configurator.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/isolate_configurator.h FILE: ../../../flutter/shell/platform/fuchsia/flutter/kernel/framework_shim.dart -FILE: ../../../flutter/shell/platform/fuchsia/flutter/kernel/libraries.json FILE: ../../../flutter/shell/platform/fuchsia/flutter/keyboard.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/keyboard.h -FILE: ../../../flutter/shell/platform/fuchsia/flutter/keyboard_unittest.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/logging.h FILE: ../../../flutter/shell/platform/fuchsia/flutter/main.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/aot_product_runtime @@ -2936,18 +5260,13 @@ FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/jit_product_runtime FILE: ../../../flutter/shell/platform/fuchsia/flutter/meta/jit_runtime FILE: ../../../flutter/shell/platform/fuchsia/flutter/platform_view.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/platform_view.h -FILE: ../../../flutter/shell/platform/fuchsia/flutter/platform_view_unittest.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/pointer_delegate.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/pointer_delegate.h -FILE: ../../../flutter/shell/platform/fuchsia/flutter/pointer_delegate_unittests.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/pointer_injector_delegate.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/pointer_injector_delegate.h -FILE: ../../../flutter/shell/platform/fuchsia/flutter/pointer_injector_delegate_unittest.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/program_metadata.h FILE: ../../../flutter/shell/platform/fuchsia/flutter/runner.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/runner.h -FILE: ../../../flutter/shell/platform/fuchsia/flutter/runner_tzdata_missing_unittest.cc -FILE: ../../../flutter/shell/platform/fuchsia/flutter/runner_tzdata_unittest.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/software_surface.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/software_surface.h FILE: ../../../flutter/shell/platform/fuchsia/flutter/software_surface_producer.cc @@ -2959,11 +5278,9 @@ FILE: ../../../flutter/shell/platform/fuchsia/flutter/task_runner_adapter.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/task_runner_adapter.h FILE: ../../../flutter/shell/platform/fuchsia/flutter/text_delegate.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/text_delegate.h -FILE: ../../../flutter/shell/platform/fuchsia/flutter/text_delegate_unittests.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/unique_fdio_ns.h FILE: ../../../flutter/shell/platform/fuchsia/flutter/vsync_waiter.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/vsync_waiter.h -FILE: ../../../flutter/shell/platform/fuchsia/flutter/vsync_waiter_unittest.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/vulkan_surface.cc FILE: ../../../flutter/shell/platform/fuchsia/flutter/vulkan_surface.h FILE: ../../../flutter/shell/platform/fuchsia/flutter/vulkan_surface_pool.cc @@ -2973,7 +5290,6 @@ FILE: ../../../flutter/shell/platform/fuchsia/flutter/vulkan_surface_producer.h FILE: ../../../flutter/shell/platform/fuchsia/runtime/dart/profiler_symbols/dart_profiler_symbols.dart FILE: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/build_info.h FILE: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/build_info_in.cc -FILE: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/build_info_unittests.cc FILE: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/files.cc FILE: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/files.h FILE: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/handle_exception.cc @@ -2991,15 +5307,11 @@ FILE: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/vmo.h FILE: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/vmservice_object.cc FILE: ../../../flutter/shell/platform/fuchsia/runtime/dart/utils/vmservice_object.h FILE: ../../../flutter/shell/platform/glfw/client_wrapper/flutter_engine.cc -FILE: ../../../flutter/shell/platform/glfw/client_wrapper/flutter_engine_unittests.cc FILE: ../../../flutter/shell/platform/glfw/client_wrapper/flutter_window_controller.cc -FILE: ../../../flutter/shell/platform/glfw/client_wrapper/flutter_window_controller_unittests.cc -FILE: ../../../flutter/shell/platform/glfw/client_wrapper/flutter_window_unittests.cc FILE: ../../../flutter/shell/platform/glfw/client_wrapper/include/flutter/flutter_engine.h FILE: ../../../flutter/shell/platform/glfw/client_wrapper/include/flutter/flutter_window.h FILE: ../../../flutter/shell/platform/glfw/client_wrapper/include/flutter/flutter_window_controller.h FILE: ../../../flutter/shell/platform/glfw/client_wrapper/include/flutter/plugin_registrar_glfw.h -FILE: ../../../flutter/shell/platform/glfw/client_wrapper/plugin_registrar_glfw_unittests.cc FILE: ../../../flutter/shell/platform/glfw/event_loop.cc FILE: ../../../flutter/shell/platform/glfw/event_loop.h FILE: ../../../flutter/shell/platform/glfw/flutter_glfw.cc @@ -3170,32 +5482,23 @@ FILE: ../../../flutter/shell/platform/windows/accessibility_alert.cc FILE: ../../../flutter/shell/platform/windows/accessibility_alert.h FILE: ../../../flutter/shell/platform/windows/accessibility_bridge_windows.cc FILE: ../../../flutter/shell/platform/windows/accessibility_bridge_windows.h -FILE: ../../../flutter/shell/platform/windows/accessibility_bridge_windows_unittests.cc FILE: ../../../flutter/shell/platform/windows/accessibility_root_node.cc FILE: ../../../flutter/shell/platform/windows/accessibility_root_node.h FILE: ../../../flutter/shell/platform/windows/angle_surface_manager.cc FILE: ../../../flutter/shell/platform/windows/angle_surface_manager.h -FILE: ../../../flutter/shell/platform/windows/client_wrapper/dart_project_unittests.cc FILE: ../../../flutter/shell/platform/windows/client_wrapper/flutter_engine.cc -FILE: ../../../flutter/shell/platform/windows/client_wrapper/flutter_engine_unittests.cc FILE: ../../../flutter/shell/platform/windows/client_wrapper/flutter_view_controller.cc -FILE: ../../../flutter/shell/platform/windows/client_wrapper/flutter_view_controller_unittests.cc -FILE: ../../../flutter/shell/platform/windows/client_wrapper/flutter_view_unittests.cc FILE: ../../../flutter/shell/platform/windows/client_wrapper/include/flutter/dart_project.h FILE: ../../../flutter/shell/platform/windows/client_wrapper/include/flutter/flutter_engine.h FILE: ../../../flutter/shell/platform/windows/client_wrapper/include/flutter/flutter_view.h FILE: ../../../flutter/shell/platform/windows/client_wrapper/include/flutter/flutter_view_controller.h FILE: ../../../flutter/shell/platform/windows/client_wrapper/include/flutter/plugin_registrar_windows.h -FILE: ../../../flutter/shell/platform/windows/client_wrapper/plugin_registrar_windows_unittests.cc FILE: ../../../flutter/shell/platform/windows/cursor_handler.cc FILE: ../../../flutter/shell/platform/windows/cursor_handler.h -FILE: ../../../flutter/shell/platform/windows/cursor_handler_unittests.cc FILE: ../../../flutter/shell/platform/windows/direct_manipulation.cc FILE: ../../../flutter/shell/platform/windows/direct_manipulation.h -FILE: ../../../flutter/shell/platform/windows/direct_manipulation_unittests.cc FILE: ../../../flutter/shell/platform/windows/dpi_utils.cc FILE: ../../../flutter/shell/platform/windows/dpi_utils.h -FILE: ../../../flutter/shell/platform/windows/dpi_utils_unittests.cc FILE: ../../../flutter/shell/platform/windows/event_watcher.cc FILE: ../../../flutter/shell/platform/windows/event_watcher.h FILE: ../../../flutter/shell/platform/windows/external_texture.h @@ -3209,53 +5512,37 @@ FILE: ../../../flutter/shell/platform/windows/flutter_platform_node_delegate_win FILE: ../../../flutter/shell/platform/windows/flutter_platform_node_delegate_windows.h FILE: ../../../flutter/shell/platform/windows/flutter_project_bundle.cc FILE: ../../../flutter/shell/platform/windows/flutter_project_bundle.h -FILE: ../../../flutter/shell/platform/windows/flutter_project_bundle_unittests.cc FILE: ../../../flutter/shell/platform/windows/flutter_window.cc FILE: ../../../flutter/shell/platform/windows/flutter_window.h -FILE: ../../../flutter/shell/platform/windows/flutter_window_unittests.cc FILE: ../../../flutter/shell/platform/windows/flutter_windows.cc FILE: ../../../flutter/shell/platform/windows/flutter_windows_engine.cc FILE: ../../../flutter/shell/platform/windows/flutter_windows_engine.h -FILE: ../../../flutter/shell/platform/windows/flutter_windows_engine_unittests.cc FILE: ../../../flutter/shell/platform/windows/flutter_windows_texture_registrar.cc FILE: ../../../flutter/shell/platform/windows/flutter_windows_texture_registrar.h -FILE: ../../../flutter/shell/platform/windows/flutter_windows_texture_registrar_unittests.cc -FILE: ../../../flutter/shell/platform/windows/flutter_windows_unittests.cc FILE: ../../../flutter/shell/platform/windows/flutter_windows_view.cc FILE: ../../../flutter/shell/platform/windows/flutter_windows_view.h -FILE: ../../../flutter/shell/platform/windows/flutter_windows_view_unittests.cc FILE: ../../../flutter/shell/platform/windows/keyboard_handler_base.h FILE: ../../../flutter/shell/platform/windows/keyboard_key_channel_handler.cc FILE: ../../../flutter/shell/platform/windows/keyboard_key_channel_handler.h -FILE: ../../../flutter/shell/platform/windows/keyboard_key_channel_handler_unittests.cc FILE: ../../../flutter/shell/platform/windows/keyboard_key_embedder_handler.cc FILE: ../../../flutter/shell/platform/windows/keyboard_key_embedder_handler.h -FILE: ../../../flutter/shell/platform/windows/keyboard_key_embedder_handler_unittests.cc FILE: ../../../flutter/shell/platform/windows/keyboard_key_handler.cc FILE: ../../../flutter/shell/platform/windows/keyboard_key_handler.h -FILE: ../../../flutter/shell/platform/windows/keyboard_key_handler_unittests.cc FILE: ../../../flutter/shell/platform/windows/keyboard_manager.cc FILE: ../../../flutter/shell/platform/windows/keyboard_manager.h -FILE: ../../../flutter/shell/platform/windows/keyboard_unittests.cc FILE: ../../../flutter/shell/platform/windows/keyboard_utils.cc FILE: ../../../flutter/shell/platform/windows/keyboard_utils.h -FILE: ../../../flutter/shell/platform/windows/keyboard_utils_unittests.cc FILE: ../../../flutter/shell/platform/windows/platform_handler.cc FILE: ../../../flutter/shell/platform/windows/platform_handler.h -FILE: ../../../flutter/shell/platform/windows/platform_handler_unittests.cc FILE: ../../../flutter/shell/platform/windows/public/flutter_windows.h FILE: ../../../flutter/shell/platform/windows/sequential_id_generator.cc FILE: ../../../flutter/shell/platform/windows/sequential_id_generator.h -FILE: ../../../flutter/shell/platform/windows/sequential_id_generator_unittests.cc FILE: ../../../flutter/shell/platform/windows/settings_plugin.cc FILE: ../../../flutter/shell/platform/windows/settings_plugin.h -FILE: ../../../flutter/shell/platform/windows/settings_plugin_unittests.cc FILE: ../../../flutter/shell/platform/windows/system_utils.cc FILE: ../../../flutter/shell/platform/windows/system_utils.h -FILE: ../../../flutter/shell/platform/windows/system_utils_unittests.cc FILE: ../../../flutter/shell/platform/windows/task_runner.cc FILE: ../../../flutter/shell/platform/windows/task_runner.h -FILE: ../../../flutter/shell/platform/windows/task_runner_unittests.cc FILE: ../../../flutter/shell/platform/windows/task_runner_window.cc FILE: ../../../flutter/shell/platform/windows/task_runner_window.h FILE: ../../../flutter/shell/platform/windows/text_input_manager.cc @@ -3263,16 +5550,13 @@ FILE: ../../../flutter/shell/platform/windows/text_input_manager.h FILE: ../../../flutter/shell/platform/windows/text_input_plugin.cc FILE: ../../../flutter/shell/platform/windows/text_input_plugin.h FILE: ../../../flutter/shell/platform/windows/text_input_plugin_delegate.h -FILE: ../../../flutter/shell/platform/windows/text_input_plugin_unittest.cc FILE: ../../../flutter/shell/platform/windows/window.cc FILE: ../../../flutter/shell/platform/windows/window.h FILE: ../../../flutter/shell/platform/windows/window_binding_handler.h FILE: ../../../flutter/shell/platform/windows/window_binding_handler_delegate.h FILE: ../../../flutter/shell/platform/windows/window_proc_delegate_manager.cc FILE: ../../../flutter/shell/platform/windows/window_proc_delegate_manager.h -FILE: ../../../flutter/shell/platform/windows/window_proc_delegate_manager_unittests.cc FILE: ../../../flutter/shell/platform/windows/window_state.h -FILE: ../../../flutter/shell/platform/windows/window_unittests.cc FILE: ../../../flutter/shell/platform/windows/windows_proc_table.cc FILE: ../../../flutter/shell/platform/windows/windows_proc_table.h FILE: ../../../flutter/shell/platform/windows/windows_registry.cc @@ -3280,7 +5564,6 @@ FILE: ../../../flutter/shell/platform/windows/windows_registry.h FILE: ../../../flutter/shell/platform/windows/windowsx_shim.h FILE: ../../../flutter/shell/profiling/sampling_profiler.cc FILE: ../../../flutter/shell/profiling/sampling_profiler.h -FILE: ../../../flutter/shell/profiling/sampling_profiler_unittest.cc FILE: ../../../flutter/shell/version/version.cc FILE: ../../../flutter/shell/version/version.h FILE: ../../../flutter/shell/vmservice/empty.dart @@ -3290,7 +5573,6 @@ FILE: ../../../flutter/third_party/accessibility/base/compiler_specific.h FILE: ../../../flutter/third_party/accessibility/base/container_utils.h FILE: ../../../flutter/third_party/accessibility/base/logging.cc FILE: ../../../flutter/third_party/accessibility/base/logging.h -FILE: ../../../flutter/third_party/accessibility/base/logging_unittests.cc FILE: ../../../flutter/third_party/accessibility/base/macros.h FILE: ../../../flutter/third_party/accessibility/base/platform/darwin/scoped_nsobject.h FILE: ../../../flutter/third_party/accessibility/base/platform/darwin/scoped_nsobject.mm @@ -3298,7 +5580,6 @@ FILE: ../../../flutter/third_party/accessibility/base/simple_token.cc FILE: ../../../flutter/third_party/accessibility/base/simple_token.h FILE: ../../../flutter/third_party/accessibility/base/string_utils.cc FILE: ../../../flutter/third_party/accessibility/base/string_utils.h -FILE: ../../../flutter/third_party/accessibility/base/string_utils_unittest.cc FILE: ../../../flutter/third_party/accessibility/gfx/transform.cc FILE: ../../../flutter/third_party/accessibility/gfx/transform.h FILE: ../../../flutter/third_party/tonic/common/build_config.h @@ -3434,7 +5715,20 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree_id_registry.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree_id_registry.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_base.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_base.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_delegate.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_delegate_base.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_mac.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_mac.mm + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/numerics/safe_conversions.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/numerics/safe_conversions_impl.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/mac/coordinate_conversion.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/mac/coordinate_conversion.mm + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd FILE: ../../../flutter/third_party/accessibility/ax/ax_tree_id_registry.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_tree_id_registry.h @@ -3482,16 +5776,17 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../third_party/icu/scripts/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree_data.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree_data.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_win.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_win.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/test_ax_node_wrapper.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/test_ax_node_wrapper.h + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd FILE: ../../../flutter/third_party/accessibility/ax/ax_tree_data.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_tree_data.h -FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_mac_unittest.h -FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_mac_unittest.mm FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_win.cc FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_win.h -FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_win_unittest.cc -FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_unique_id_unittest.cc FILE: ../../../flutter/third_party/accessibility/ax/platform/test_ax_node_wrapper.cc FILE: ../../../flutter/third_party/accessibility/ax/platform/test_ax_node_wrapper.h ---------------------------------------------------------------------------------------------------- @@ -3526,13 +5821,20 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_action_data.cc + ../../../LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_action_data.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_action_data.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_node_position.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_node_position.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_position.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_range.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_relative_bounds.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_relative_bounds.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/gfx/range/gfx_range_export.h + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd FILE: ../../../flutter/third_party/accessibility/ax/ax_action_data.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_action_data.h FILE: ../../../flutter/third_party/accessibility/ax/ax_node_position.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_node_position.h -FILE: ../../../flutter/third_party/accessibility/ax/ax_node_position_unittest.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_position.h FILE: ../../../flutter/third_party/accessibility/ax/ax_range.h FILE: ../../../flutter/third_party/accessibility/ax/ax_relative_bounds.cc @@ -3570,19 +5872,38 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_unittest.cc + ../../../LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_action_handler.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_action_handler.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_event_generator.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_event_generator.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_mode.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_mode_observer.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_role_properties.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_role_properties.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_relation_win.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_relation_win.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_unique_id.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_unique_id.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/numerics/checked_math.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/numerics/checked_math_impl.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/numerics/clamped_math.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/numerics/clamped_math_impl.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/numerics/math_constants.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/numerics/ranges.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/numerics/safe_conversions_arm_impl.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/numerics/safe_math.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/numerics/safe_math_arm_impl.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/numerics/safe_math_clang_gcc_impl.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/numerics/safe_math_shared_impl.h + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd FILE: ../../../flutter/third_party/accessibility/ax/ax_action_handler.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_action_handler.h FILE: ../../../flutter/third_party/accessibility/ax/ax_event_generator.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_event_generator.h -FILE: ../../../flutter/third_party/accessibility/ax/ax_event_generator_unittest.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_mode.h FILE: ../../../flutter/third_party/accessibility/ax/ax_mode_observer.h FILE: ../../../flutter/third_party/accessibility/ax/ax_role_properties.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_role_properties.h -FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_unittest.cc -FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_unittest.h FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_relation_win.cc FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_relation_win.h FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_unique_id.cc @@ -3630,15 +5951,26 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_delegate_base.cc + ../../../LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_enum_util.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_enum_util.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_enums.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_table_info.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_table_info.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree_id.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree_id.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree_observer.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree_observer.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_delegate_base.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/compute_attributes.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/compute_attributes.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/no_destructor.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/atl.h + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd FILE: ../../../flutter/third_party/accessibility/ax/ax_enum_util.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_enum_util.h FILE: ../../../flutter/third_party/accessibility/ax/ax_enums.h -FILE: ../../../flutter/third_party/accessibility/ax/ax_node_data_unittest.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_table_info.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_table_info.h -FILE: ../../../flutter/third_party/accessibility/ax/ax_table_info_unittest.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_tree_id.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_tree_id.h FILE: ../../../flutter/third_party/accessibility/ax/ax_tree_observer.cc @@ -3680,33 +6012,43 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_fragment_root_delegate_win.h + ../../../LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_active_popup.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_active_popup.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_clipping_behavior.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_constants.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_coordinate_system.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_mode.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_node_text_styles.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_node_text_styles.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_offscreen_result.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree_manager.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree_manager_map.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_tree_manager_map.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_fragment_root_delegate_win.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_fragment_root_win.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_fragment_root_win.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_delegate_utils_win.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_delegate_utils_win.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/scoped_safearray.h + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd FILE: ../../../flutter/third_party/accessibility/ax/ax_active_popup.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_active_popup.h FILE: ../../../flutter/third_party/accessibility/ax/ax_clipping_behavior.h FILE: ../../../flutter/third_party/accessibility/ax/ax_constants.h FILE: ../../../flutter/third_party/accessibility/ax/ax_coordinate_system.h -FILE: ../../../flutter/third_party/accessibility/ax/ax_enum_util_unittest.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_mode.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_node_text_styles.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_node_text_styles.h FILE: ../../../flutter/third_party/accessibility/ax/ax_offscreen_result.h -FILE: ../../../flutter/third_party/accessibility/ax/ax_range_unittest.cc -FILE: ../../../flutter/third_party/accessibility/ax/ax_role_properties_unittest.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_tree_manager.h FILE: ../../../flutter/third_party/accessibility/ax/ax_tree_manager_map.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_tree_manager_map.h FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_fragment_root_delegate_win.h FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_fragment_root_win.cc FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_fragment_root_win.h -FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_fragment_root_win_unittest.cc -FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_base_unittest.cc FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_delegate_utils_win.cc FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_delegate_utils_win.h -FILE: ../../../flutter/third_party/accessibility/ax/platform/ax_platform_node_win_unittest.h FILE: ../../../flutter/third_party/accessibility/base/win/scoped_safearray.h -FILE: ../../../flutter/third_party/accessibility/base/win/scoped_safearray_unittest.cc ---------------------------------------------------------------------------------------------------- Copyright 2019 The Chromium Authors. All rights reserved. @@ -3739,7 +6081,22 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: accessibility -ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/uia_registrar_win.cc + ../../../LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_action_handler_base.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_action_handler_base.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_base_export.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_event_intent.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/ax_event_intent.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/uia_registrar_win.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/platform/uia_registrar_win.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/test_ax_node_helper.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/test_ax_node_helper.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/test_ax_tree_manager.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/ax/test_ax_tree_manager.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/dispatch_stub.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/dispatch_stub.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/variant_util.h + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/variant_vector.cc + ../../../flutter/third_party/accessibility/LICENSE +ORIGIN: ../../../flutter/third_party/accessibility/base/win/variant_vector.h + ../../../flutter/third_party/accessibility/LICENSE TYPE: LicenseType.bsd FILE: ../../../flutter/third_party/accessibility/ax/ax_action_handler_base.cc FILE: ../../../flutter/third_party/accessibility/ax/ax_action_handler_base.h @@ -3757,7 +6114,6 @@ FILE: ../../../flutter/third_party/accessibility/base/win/dispatch_stub.h FILE: ../../../flutter/third_party/accessibility/base/win/variant_util.h FILE: ../../../flutter/third_party/accessibility/base/win/variant_vector.cc FILE: ../../../flutter/third_party/accessibility/base/win/variant_vector.h -FILE: ../../../flutter/third_party/accessibility/base/win/variant_vector_unittest.cc ---------------------------------------------------------------------------------------------------- Copyright 2020 The Chromium Authors. All rights reserved. @@ -3789,12 +6145,114 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: web_unicode -ORIGIN: ../../../flutter/third_party/web_unicode/LICENSE +LIBRARY: engine +ORIGIN: ../../../flutter/runtime/test_font_data.cc TYPE: LicenseType.unknown +FILE: ../../../flutter/runtime/test_font_data.cc +---------------------------------------------------------------------------------------------------- +License for the Ahem font embedded below is from: +https://www.w3.org/Style/CSS/Test/Fonts/Ahem/COPYING + +The Ahem font in this directory belongs to the public domain. In +jurisdictions that do not recognize public domain ownership of these +files, the following Creative Commons Zero declaration applies: + + + +which is quoted below: + + The person who has associated a work with this document (the "Work") + affirms that he or she (the "Affirmer") is the/an author or owner of + the Work. The Work may be any work of authorship, including a + database. + + The Affirmer hereby fully, permanently and irrevocably waives and + relinquishes all of her or his copyright and related or neighboring + legal rights in the Work available under any federal or state law, + treaty or contract, including but not limited to moral rights, + publicity and privacy rights, rights protecting against unfair + competition and any rights protecting the extraction, dissemination + and reuse of data, whether such rights are present or future, vested + or contingent (the "Waiver"). The Affirmer makes the Waiver for the + benefit of the public at large and to the detriment of the Affirmer's + heirs or successors. + + The Affirmer understands and intends that the Waiver has the effect + of eliminating and entirely removing from the Affirmer's control all + the copyright and related or neighboring legal rights previously held + by the Affirmer in the Work, to that extent making the Work freely + available to the public for any and all uses and purposes without + restriction of any kind, including commercial use and uses in media + and formats or by methods that have not yet been invented or + conceived. Should the Waiver for any reason be judged legally + ineffective in any jurisdiction, the Affirmer hereby grants a free, + full, permanent, irrevocable, nonexclusive and worldwide license for + all her or his copyright and related or neighboring legal rights in + the Work. +==================================================================================================== + +==================================================================================================== +LIBRARY: web_unicode +ORIGIN: http://www.unicode.org/terms_of_use.html referenced by ../../../flutter/third_party/web_unicode/properties/LineBreak.txt +ORIGIN: http://www.unicode.org/terms_of_use.html referenced by ../../../flutter/third_party/web_unicode/properties/WordBreakProperty.txt +ORIGIN: https://www.unicode.org/copyright.html referenced by ../../../flutter/third_party/web_unicode/lib/web_unicode/codegen/line_break_properties.dart +ORIGIN: https://www.unicode.org/copyright.html referenced by ../../../flutter/third_party/web_unicode/lib/web_unicode/codegen/word_break_properties.dart +ORIGIN: https://www.unicode.org/copyright.html referenced by ../../../flutter/third_party/web_unicode/tool/unicode_sync_script.dart +TYPE: LicenseType.unicode FILE: ../../../flutter/third_party/web_unicode/lib/web_unicode/codegen/line_break_properties.dart FILE: ../../../flutter/third_party/web_unicode/lib/web_unicode/codegen/word_break_properties.dart +FILE: ../../../flutter/third_party/web_unicode/properties/LineBreak.txt +FILE: ../../../flutter/third_party/web_unicode/properties/WordBreakProperty.txt +FILE: ../../../flutter/third_party/web_unicode/tool/unicode_sync_script.dart ---------------------------------------------------------------------------------------------------- +Unicode® Copyright and Terms of Use +For the general privacy policy governing access to this site, see the Unicode Privacy Policy. + +A. Unicode Copyright +1. Copyright © 1991-2022 Unicode, Inc. All rights reserved. +B. Definitions +Unicode Data Files ("DATA FILES") include all data files under the directories: +https://www.unicode.org/Public/ +https://www.unicode.org/reports/ +https://www.unicode.org/ivd/data/ + +Unicode Data Files do not include PDF online code charts under the directory: +https://www.unicode.org/Public/ + +Unicode Software ("SOFTWARE") includes any source code published in the Unicode Standard +or any source code or compiled code under the directories: +https://www.unicode.org/Public/PROGRAMS/ +https://www.unicode.org/Public/cldr/ +http://site.icu-project.org/download/ +C. Terms of Use +1. Certain documents and files on this website contain a legend indicating that "Modification is permitted." Any person is hereby authorized, without fee, to modify such documents and files to create derivative works conforming to the Unicode® Standard, subject to Terms and Conditions herein. +2. Any person is hereby authorized, without fee, to view, use, reproduce, and distribute all documents and files, subject to the Terms and Conditions herein. +3. Further specifications of rights and restrictions pertaining to the use of the Unicode DATA FILES and SOFTWARE can be found in the Unicode Data Files and Software License. +4. Each version of the Unicode Standard has further specifications of rights and restrictions of use. For the book editions (Unicode 5.0 and earlier), these are found on the back of the title page. +5. The Unicode PDF online code charts carry specific restrictions. Those restrictions are incorporated as the first page of each PDF code chart. +6. All other files, including online documentation of the core specification for Unicode 6.0 and later, are covered under these general Terms of Use. +7. No license is granted to "mirror" the Unicode website where a fee is charged for access to the "mirror" site. +8. Modification is not permitted with respect to this document. All copies of this document must be verbatim. +D. Restricted Rights Legend +1. Any technical data or software which is licensed to the United States of America, its agencies and/or instrumentalities under this Agreement is commercial technical data or commercial computer software developed exclusively at private expense as defined in FAR 2.101, or DFARS 252.227-7014 (June 1995), as applicable. For technical data, use, duplication, or disclosure by the Government is subject to restrictions as set forth in DFARS 202.227-7015 Technical Data, Commercial and Items (Nov 1995) and this Agreement. For Software, in accordance with FAR 12-212 or DFARS 227-7202, as applicable, use, duplication or disclosure by the Government is subject to the restrictions set forth in this Agreement. +E.Warranties and Disclaimers +1. This publication and/or website may include technical or typographical errors or other inaccuracies. Changes are periodically added to the information herein; these changes will be incorporated in new editions of the publication and/or website. Unicode, Inc. may make improvements and/or changes in the product(s) and/or program(s) described in this publication and/or website at any time. +2. If this file has been purchased on magnetic or optical media from Unicode, Inc. the sole and exclusive remedy for any claim will be exchange of the defective media within ninety (90) days of original purchase. +3. EXCEPT AS PROVIDED IN SECTION E.2, THIS PUBLICATION AND/OR SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. UNICODE, INC. AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH ARE REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE. +F. Waiver of Damages +1. In no event shall Unicode, Inc. or its licensors be liable for any special, incidental, indirect or consequential damages of any kind, or any damages whatsoever, whether or not Unicode, Inc. was advised of the possibility of the damage, including, without limitation, those resulting from the following: loss of use, data or profits, in connection with the use, modification or distribution of this information or its derivatives. +G. Trademarks & Logos +1. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode, Inc. “The Unicode Consortium” and “Unicode, Inc.” are trade names of Unicode, Inc. Use of the information and materials found on this website indicates your acknowledgement of Unicode, Inc.’s exclusive worldwide rights in the Unicode Word Mark, the Unicode Logo, and the Unicode trade names. +3. The Unicode Consortium Name and Trademark Usage Policy (“Trademark Policy”) are incorporated herein by reference and you agree to abide by the provisions of the Trademark Policy, which may be changed from time to time in the sole discretion of Unicode, Inc. +4. All third party trademarks referenced herein are the property of their respective owners. +H. Miscellaneous +1. Jurisdiction and Venue. This website is operated from a location in the State of California, United States of America. Unicode, Inc. makes no representation that the materials are appropriate for use in other locations. If you access this website from other locations, you are responsible for compliance with local laws. This Agreement, all use of this website and any claims and damages resulting from use of this website are governed solely by the laws of the State of California without regard to any principles which would apply the laws of a different jurisdiction. The user agrees that any disputes regarding this website shall be resolved solely in the courts located in Santa Clara County, California. The user agrees said courts have personal jurisdiction and agree to waive any right to transfer the dispute to any other forum. +2. Modification by Unicode, Inc. Unicode, Inc. shall have the right to modify this Agreement at any time by posting it to this website. The user may not assign any part of this Agreement without Unicode, Inc.’s prior written consent. +3. Taxes. The user agrees to pay any taxes arising from access to this website or use of the information herein, except for those based on Unicode’s net income. +4. Severability. If any provision of this Agreement is declared invalid or unenforceable, the remaining provisions of this Agreement shall remain in effect. +5. Entire Agreement. This Agreement constitutes the entire agreement between the parties. + +EXHIBIT 1 UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE See Terms of Use @@ -3842,4 +6300,5 @@ shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. ==================================================================================================== + Total license count: 19 diff --git a/ci/licenses_golden/licenses_fuchsia b/ci/licenses_golden/licenses_fuchsia index 5a511aea4ff51..ef9bbde28bf25 100644 --- a/ci/licenses_golden/licenses_fuchsia +++ b/ci/licenses_golden/licenses_fuchsia @@ -1,1848 +1,641 @@ -Signature: b3bb1f4903eff6cb7d46f97876e28959 - -UNUSED LICENSES: - - -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -USED LICENSES: - -==================================================================================================== -LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/service_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/service_provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/input_event_constants.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/input_events.fidl ----------------------------------------------------------------------------------------------------- -Copyright 2014 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/debug.h + ../../../fuchsia/sdk/linux/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/assert.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/compiler.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/listnode.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/pixelformat.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/processargs.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/status.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/debug.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/exception.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/log.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/object.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/pci.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/port.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/profile.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/resource.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/types.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/types.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/assert.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/compiler.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/listnode.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/pixelformat.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/processargs.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/status.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/debug.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/exception.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/log.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/object.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/pci.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/port.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/profile.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/resource.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/types.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/types.h -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/interface.dart -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.runner/component_runner.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/font_provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.math/math.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/problem.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/seeking_reader.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/module_context.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/session_shell.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_controller.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_info.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/component_controller.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/environment.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/environment_controller.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/launcher.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/loader.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/runner.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.provider/provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/presenter.fidl -FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/fdio.h -FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/io.h -FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/vfs.h -FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/watcher.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/thread_checker.h -FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/include/lib/media/cpp/timeline_function.h -FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/include/lib/media/cpp/timeline_rate.h -FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/timeline_function.cc -FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/timeline_rate.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/completion.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/termination_reason.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/channel.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/event.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/eventpair.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/channel.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/event.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/eventpair.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/job.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/object.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/object_traits.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/port.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/process.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/socket.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/task.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/thread.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/time.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/vmar.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/vmo.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/job.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/port.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/process.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/socket.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/thread.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/vmar.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/vmo.cc ----------------------------------------------------------------------------------------------------- -Copyright 2016 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +Signature: 4b0162e54f800056ccba552592ba5b88 ==================================================================================================== LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/device/audio.h + ../../../fuchsia/sdk/linux/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/device/audio.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/fidl.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/hw/gpt.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/process.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/rights.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/sanitizer.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/hypervisor.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/iommu.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/policy.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/system.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/tls.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/device/audio.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/fidl.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/hw/gpt.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/process.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/rights.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/sanitizer.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/hypervisor.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/iommu.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/policy.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/system.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/tls.h -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/auth_provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/token_manager.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/client.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/server.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/peripheral.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/types_deprecated.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/presentation_info.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_capturer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mem/buffer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/agent.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/agent_controller.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/component_context.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/intent.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/lifecycle.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/module_data.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/module_state.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_shell.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_state.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/surface.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/mdns.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/flat_namespace.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/commands.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/display_info.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/events.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/nodes.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/renderer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/resources.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/shapes.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/types.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/ime_service.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/input_device_registry.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/input_reports.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/text_editing.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/text_input.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/usages.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/presentation.fidl -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/receiver.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/task.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/wait.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/receiver.cc -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/task.cc -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/trap.cc -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/wait.cc -FILE: ../../../fuchsia/sdk/linux/pkg/async-default/include/lib/async/default.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-cpp/include/lib/async-loop/cpp/loop.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-cpp/loop_wrapper.cc -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-testing/real_loop.cc -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop/include/lib/async-loop/loop.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop/loop.c -FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/dispatcher_stub.cc -FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/include/lib/async-testing/dispatcher_stub.h -FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/dispatcher.h -FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/irq.h -FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/receiver.h -FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/task.h -FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/wait.h -FILE: ../../../fuchsia/sdk/linux/pkg/async/ops.c -FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/limits.h -FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/namespace.h -FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/unsafe.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/decoding_and_validating.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/encoding.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/formatting.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/coding.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/internal.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/string_view.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/vector_view.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/function.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/function.h -FILE: ../../../fuchsia/sdk/linux/pkg/memfs/include/lib/memfs/memfs.h -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/commands.cc -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/commands.h -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/resources.h -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/session.h -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/resources.cc -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/session.cc -FILE: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/context.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/fields.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/handler.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/instrumentation.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/types.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace-provider-so/include/lib/trace-provider/handler.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace-provider-so/include/lib/trace-provider/provider.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace/event.cc -FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/event.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/event_common.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/event_internal.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/pairs_internal.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/string_traits.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/observer.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace/observer.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/fifo.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/fifo.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/handle.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/timer.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/timer.cc ----------------------------------------------------------------------------------------------------- -Copyright 2017 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/fidl.dart + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/fidl.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia/lib/fuchsia.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/zircon_fakes.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/zircon.dart ----------------------------------------------------------------------------------------------------- -Copyright 2018 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/bootfs.h + ../../../fuchsia/sdk/linux/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/bootfs.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/image.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/dlfcn.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/features.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/hw/pci.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/limits.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/smc.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/threads.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/time.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/boot/bootfs.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/boot/image.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/dlfcn.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/features.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/hw/pci.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/limits.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/smc.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/threads.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/time.h -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/codec.dart -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/enum.dart -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/error.dart -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/hash_codes.dart -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/interface_async.dart -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/message.dart -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/struct.dart -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/table.dart -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/types.dart -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/unknown_data.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia/lib/src/fakes/fuchsia_fakes.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/logger.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/internal/_fuchsia_log_writer.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/internal/_log_message.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/internal/_log_writer.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/internal/_stdout_log_writer.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/logger/logger.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/services.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/service_provider_impl.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/internal/_error_node.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/pseudo_dir.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/pseudo_file.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/service.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/vnode.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/vfs.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/channel.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/channel_reader.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/constants.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/errors.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/eventpair.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/handle.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/handle_waiter.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/system.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/handle_wrapper.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/socket.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/socket_reader.dart -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/vmo.dart -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/attestation_signer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/common.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/types.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/central.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera/camera.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera/manager.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.data/data.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.developer.tiles/tiles.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.magma/magma.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/encoded_image.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/image_info.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/memory_type.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/intl.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/directory.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/node.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ldsvc/ldsvc.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.logger/logger.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/gain_control.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/player.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/source_manager.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_device_enumerator.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_renderer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/metadata.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/stream.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/stream_common.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/stream_processor.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/stream_type.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/timeline_function.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediacodec/codec_factory.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/module_manifest.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/puppet_master.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_command.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_options.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.http/client.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net/net.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process/launcher.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process/resolver.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/job_provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysinfo/sysinfo.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/allocator.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/collection.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/collections_deprecated.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/constraints.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/driver_connector.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/format_modifier.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/formats_deprecated.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/image_formats.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/image_formats_deprecated.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/usages.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/view_provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/pose_buffer_provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/commands.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/display_usage.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/commands.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/events.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/scenic.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/session.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/snapshot.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/commands.fidl -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/time.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/trap.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/include/lib/async-testing/test_loop.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/include/lib/async-testing/test_loop_dispatcher.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/include/lib/async-testing/test_subloop.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/test_loop.cc -FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/test_loop_dispatcher.cc -FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/time.h -FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/trap.h -FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/spawn.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl/epitaph.c -FILE: ../../../fuchsia/sdk/linux/pkg/fidl/include/lib/fidl/epitaph.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/walker.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/binding.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/binding_set.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/interface_ptr.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/interface_ptr_set.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/header.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/implementation.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/message_handler.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/message_reader.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/pending_response.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/proxy.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/proxy_controller.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/stub.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/stub_controller.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/weak_stub_controller.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/type_converter.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/message_handler.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/message_reader.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/pending_response.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/proxy.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/proxy_controller.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/stub.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/stub_controller.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/weak_stub_controller.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/clone.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/decoder.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/encoder.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/clone.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/coding_traits.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/comparison.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/decoder.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/encoder.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/enum.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/interface_handle.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/interface_request.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/message.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/message_buffer.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/message_part.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/string.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/traits.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/vector.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/message.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/message_buffer.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/include/lib/fidl/cpp/internal/logging.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/include/lib/fidl/cpp/internal/synchronous_proxy.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/include/lib/fidl/cpp/synchronous_interface_ptr.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/internal/logging.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/internal/synchronous_proxy.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/array.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/traits.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/message.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/bridge.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/bridge_internal.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/promise.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/promise_internal.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/result.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/scheduler.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/scope.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/sequencer.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/single_threaded_executor.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/promise.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/scheduler.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/scope.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/sequencer.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/single_threaded_executor.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/defer.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/function_traits.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/nullable.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/thread_safety.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/traits.h -FILE: ../../../fuchsia/sdk/linux/pkg/images_cpp/images.cc -FILE: ../../../fuchsia/sdk/linux/pkg/images_cpp/include/lib/images/cpp/images.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/inspector.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/heap.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/limits.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/state.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/types.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/inspector.cc -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/heap.cc -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/state.cc -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/types.cc -FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp/include/lib/media/cpp/type_converters.h -FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp/type_converters.cc -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/id.h -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/view_token_pair.cc -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/optional.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/queue.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/type_traits.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/variant.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/vector.h -FILE: ../../../fuchsia/sdk/linux/pkg/svc/include/lib/svc/dir.h -FILE: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/condition.h -FILE: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/internal/condition-template.h -FILE: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/mutex.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/enclosing_environment.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/fake_component.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/fake_launcher.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/launcher_impl.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/test_with_environment.cc -FILE: ../../../fuchsia/sdk/linux/pkg/syslog/include/lib/syslog/global.h -FILE: ../../../fuchsia/sdk/linux/pkg/syslog/include/lib/syslog/logger.h -FILE: ../../../fuchsia/sdk/linux/pkg/syslog/include/lib/syslog/wire_format.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace-provider-so/include/lib/trace-provider/fdio_connect.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/event_args.h -FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/event_args.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/composed_service_dir.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/composed_service_dir.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/bti.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/debuglog.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/guest.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/bti.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/debuglog.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/guest.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/interrupt.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/iommu.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/pmt.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/profile.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/resource.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/suspend_token.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/vcpu.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/interrupt.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/iommu.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/profile.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/resource.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/vcpu.cc ----------------------------------------------------------------------------------------------------- -Copyright 2018 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys.test/cache.fidl + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys.test/cache.fidl ----------------------------------------------------------------------------------------------------- -Copyright 2019 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../fuchsia/sdk/linux/.versions/core.cipd_version -FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/VkLayer_image_pipe_swapchain.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/VkLayer_khronos_validation.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libasync-default.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libfdio.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libmemfs.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libsvc.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libsyslog.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libtrace-engine.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libtrace-provider-so.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libvulkan.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libasync-default.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libasync-loop-default.a -FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libfdio.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libmemfs.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libsvc.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libsync.a -FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libsyslog.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libtrace-engine.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libtrace-provider-so.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libvulkan.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/alloca.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/ar.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/arpa/ftp.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/arpa/inet.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/arpa/nameser.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/arpa/nameser_compat.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/arpa/telnet.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/arpa/tftp.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/assert.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/endian.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/fenv.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/ioctl.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/ipc.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/reg.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/setjmp.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/signal.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/stat.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/alltypes.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/endian.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/errno.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/fcntl.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/fenv.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/io.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/ioctl.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/ipc.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/limits.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/msg.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/null.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/posix.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/reg.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/sem.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/setjmp.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/shm.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/signal.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/stat.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/statfs.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/termios.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/endian.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/fenv.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/io.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/ioctl.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/ipc.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/reg.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/setjmp.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/signal.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/stat.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/byteswap.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/complex.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/cpio.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/ctype.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/dirent.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/dlfcn.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/elf.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/endian.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/err.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/errno.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/fcntl.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/features.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/fenv.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/fmtmsg.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/fnmatch.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/getopt.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/glob.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/grp.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/iconv.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/ifaddrs.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/inttypes.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/iso646.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/langinfo.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/libgen.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/limits.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/link.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/locale.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/malloc.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/math.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/memory.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/monetary.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/net/ethernet.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/net/if.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/net/if_arp.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/net/route.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netdb.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/ether.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/icmp6.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/if_ether.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/igmp.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/in.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/in_systm.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/ip.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/ip6.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/ip_icmp.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/tcp.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/udp.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netpacket/packet.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/nl_types.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/paths.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/poll.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/pthread.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/pwd.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/regex.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/resolv.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sched.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/search.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/semaphore.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/setjmp.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/signal.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/spawn.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/stdio.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/stdlib.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/string.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/strings.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/stropts.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/acct.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/auxv.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/dir.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/errno.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/eventfd.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/fcntl.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/file.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/fsuid.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/inotify.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/io.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/ioctl.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/ipc.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/klog.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/mman.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/mount.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/msg.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/mtio.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/param.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/personality.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/poll.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/quota.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/random.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/reboot.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/reg.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/select.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/sem.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/shm.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/signal.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/signalfd.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/socket.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/stat.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/statfs.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/statvfs.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/stropts.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/swap.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/syslog.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/termios.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/time.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/timeb.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/timerfd.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/times.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/timex.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/ttydefaults.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/types.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/ucontext.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/uio.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/un.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/utsname.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/vfs.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/wait.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sysexits.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/syslog.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/tar.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/termios.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/threads.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/time.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/uchar.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/ucontext.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/unistd.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/utime.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/values.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/wait.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/wchar.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/wctype.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/wordexp.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/Scrt1.o -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/libc.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/libdl.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/libm.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/libpthread.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/librt.so -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/libzircon.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/VkLayer_image_pipe_swapchain.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/VkLayer_khronos_validation.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libasync-default.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libfdio.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libmemfs.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libsvc.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libsyslog.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libtrace-engine.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libtrace-provider-so.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libvulkan.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libasync-default.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libasync-loop-default.a -FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libfdio.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libmemfs.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libsvc.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libsync.a -FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libsyslog.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libtrace-engine.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libtrace-provider-so.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libvulkan.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/alloca.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/ar.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/arpa/ftp.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/arpa/inet.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/arpa/nameser.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/arpa/nameser_compat.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/arpa/telnet.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/arpa/tftp.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/assert.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/endian.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/fenv.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/ioctl.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/ipc.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/reg.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/setjmp.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/signal.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/stat.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/alltypes.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/endian.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/errno.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/fcntl.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/fenv.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/io.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/ioctl.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/ipc.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/limits.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/msg.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/null.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/posix.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/reg.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/sem.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/setjmp.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/shm.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/signal.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/stat.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/statfs.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/termios.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/endian.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/fenv.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/io.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/ioctl.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/ipc.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/reg.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/setjmp.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/signal.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/stat.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/byteswap.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/complex.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/cpio.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/ctype.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/dirent.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/dlfcn.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/elf.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/endian.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/err.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/errno.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/fcntl.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/features.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/fenv.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/fmtmsg.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/fnmatch.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/getopt.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/glob.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/grp.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/iconv.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/ifaddrs.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/inttypes.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/iso646.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/langinfo.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/libgen.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/limits.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/link.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/locale.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/malloc.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/math.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/memory.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/monetary.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/net/ethernet.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/net/if.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/net/if_arp.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/net/route.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netdb.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/ether.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/icmp6.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/if_ether.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/igmp.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/in.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/in_systm.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/ip.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/ip6.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/ip_icmp.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/tcp.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/udp.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netpacket/packet.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/nl_types.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/paths.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/poll.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/pthread.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/pwd.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/regex.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/resolv.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sched.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/search.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/semaphore.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/setjmp.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/signal.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/spawn.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/stdio.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/stdlib.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/string.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/strings.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/stropts.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/acct.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/auxv.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/dir.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/errno.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/eventfd.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/fcntl.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/file.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/fsuid.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/inotify.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/io.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/ioctl.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/ipc.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/klog.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/mman.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/mount.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/msg.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/mtio.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/param.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/personality.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/poll.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/quota.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/random.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/reboot.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/reg.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/select.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/sem.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/shm.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/signal.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/signalfd.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/socket.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/stat.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/statfs.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/statvfs.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/stropts.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/swap.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/syslog.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/termios.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/time.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/timeb.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/timerfd.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/times.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/timex.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/ttydefaults.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/types.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/ucontext.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/uio.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/un.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/utsname.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/vfs.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/wait.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sysexits.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/syslog.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/tar.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/termios.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/threads.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/time.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/uchar.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/ucontext.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/unistd.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/utime.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/values.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/wait.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/wchar.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/wctype.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/wordexp.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/Scrt1.o -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libc.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libdl.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libm.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libpthread.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/librt.so -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libzircon.so -FILE: ../../../fuchsia/sdk/linux/dart/fidl/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_view/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/zircon/meta.json -FILE: ../../../fuchsia/sdk/linux/data/config/symbol-index/config.json -FILE: ../../../fuchsia/sdk/linux/data/config/symbol-index/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.gesture/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.semantics/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.virtualkeyboard/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.audio.effects/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth.oldtokens/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.a2dp/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.fastpair/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.hfp/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2.hal/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castauth/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castconfig/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castremotecontrol/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsetup/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsysteminfo/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castwindow/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.runner/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.types/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.data/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.debugdata/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.developer.tiles/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics.types/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.driver.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.factory.wlan/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.factory/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.agis/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.magma/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.adc/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.light/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.power.statecontrol/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.radar/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hwinfo/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.virtualkeyboard/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.inspect/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ldsvc/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.legacymetrics/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.namedplace/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.position/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.sensor/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.logger/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.bootstrap/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.thread/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.math/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sounds/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.target/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediacodec/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mem/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.memorypressure/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.metrics/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.migration/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.http/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.interfaces/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.reachability/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.routes/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.clientlevel/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.profile/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.systemmode/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process.lifecycle/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery.ui/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.scenic.scheduling/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.session/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings.policy/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysinfo/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.thermal/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.perfetto/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.provider/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity.control/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.brightness/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.observation.geometry/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer.augment/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.scene/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.types/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ultrasound/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.unknown/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.channel/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.channelcontrol/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.config/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.url/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.version/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.common/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedclient/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedconfiguration/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/zx/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-default/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-default/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fdio/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_hlcpp_conversion/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_natural_ostream/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fit/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/images_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/inspect.json -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/memfs/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/modular_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp_testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/svc/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sync/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys/component/realm_builder_shard_sdk.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_inspect_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/syslog/client.shard.cmx -FILE: ../../../fuchsia/sdk/linux/pkg/syslog/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/syslog/syslog.json -FILE: ../../../fuchsia/sdk/linux/pkg/syslog_structured_backend/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sysroot/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/trace-engine/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/trace-provider-so/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/trace/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/vulkan/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/vulkan/vulkan.json -FILE: ../../../fuchsia/sdk/linux/pkg/vulkan_layers/data/vulkan/explicit_layer.d/VkLayer_image_pipe_swapchain.json -FILE: ../../../fuchsia/sdk/linux/pkg/vulkan_layers/data/vulkan/explicit_layer.d/VkLayer_khronos_validation.json -FILE: ../../../fuchsia/sdk/linux/pkg/vulkan_layers/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/zx/meta.json -FILE: ../../../fuchsia/sdk/linux/version_history.json ----------------------------------------------------------------------------------------------------- -Copyright 2019 The Fuchsia Authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/hw/debug/arm64.h + ../../../fuchsia/sdk/linux/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/exception.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/hw/debug/arm64.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/hw/debug/x86.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/lookup.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/clock.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/internal/cdecls.inc -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/scheduler.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/utc.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/exception.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/hw/debug/arm64.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/hw/debug/x86.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/lookup.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/clock.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/internal/cdecls.inc -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/scheduler.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/utc.h -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/bits.dart -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/union.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/inspect.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/inspect/inspect.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/inspect/internal/_inspect_impl.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/inspect/node.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/inspect/property.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/bitfield64.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/block.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/heap.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/little_big_slab.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/util.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/vmo_fields.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/vmo_holder.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/vmo_writer.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/testing.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic/lib/src/view_token_pair.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic/lib/views.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/incoming.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/outgoing.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/composed_pseudo_dir.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/internal/_flags.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/pseudo_vmo_file.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/vmo_file.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/sl4f.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/audio.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/device_log.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/dump.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/exceptions.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/factory_store.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/input.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/inspect.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/modular.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/performance.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/scenic.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/setui.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/sl4f_client.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/ssh.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/storage.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/common.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/cpu_metrics.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/drm_fps.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/flutter_frame_stats.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/input_latency.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/memory_metrics.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/scenic_frame_stats.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/temperature_metrics.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics_results.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics_spec.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/time_delta.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/time_point.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/trace_importing.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/trace_model.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/webdriver.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/trace_processing.dart -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.semantics/node.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.semantics/semantics_manager.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth.oldtokens/credentials_producer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/constants.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/advertising_data.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/peer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/access.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/bootstrap.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/host_watcher.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/identity.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/peer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/address.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/appearance.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/connection_role.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/device_class.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/id.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/uuid.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2.hal/hal.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2/manager.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2/stream.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castauth/cast_auth.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castconfig/cast_config.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsetup/cast_setup.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsysteminfo/cast_system_info.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/events.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/format.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/reader.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/selector.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/annotations.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/element_manager.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.factory/factory.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/annotation.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/attachment.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/crash_reporter.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/data_provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/device_id_provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/events.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/styles.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/ring_buffer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/stream.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/stream_config_connector.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.light/light.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.power.statecontrol/admin.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hwinfo/hwinfo.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/image_pipe2.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/descriptor.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/device.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/keyboard.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/led.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/mouse.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/report.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/sensor.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/touch.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/units.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.inspect/tree.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/property_provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/directory2.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/file2.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/io.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/node-protocols.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/node2.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/rights-request.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/kernel-counter.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/kernel-debug.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/kernel-stats.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/root-job.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.namedplace/namedplace.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/misc.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/provisioning_params.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/volume_control.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/content_decryption.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/error.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/license_session.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/provisioning.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/services.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/discovery.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/images.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/player.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/publisher.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sounds/sound_player.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_consumer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_core.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/usage_reporter.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mem/range.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.migration/migration.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/annotation.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_shell_factory.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery.ui/countdown.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery.ui/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery/factory_reset.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.scenic.scheduling/prediction_info.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.session/launcher.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/accessibility.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/audio.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/display.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/do_not_disturb.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/intl.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/privacy.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/settings.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/setup.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/types.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/secure_mem.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.test/suite.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.thermal/thermal.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity.control/control.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/activity.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/state.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/tracker.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/view.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/view_config.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.brightness/brightness.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.brightness/color_adjustment.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/tokens.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/pointer_capture.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/device_listener.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.types/types.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/focuser.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view_token.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.channel/channel.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.channelcontrol/channelcontrol.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/constants.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/context.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/cookie.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/debug.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/frame.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/navigation.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/url_request_rewrite_rules.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/access_point_provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/client_provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/zx/rights.fidl -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/executor.cc -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/executor.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/irq.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/paged_vmo.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/irq.cc -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/paged_vmo.cc -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-default/include/lib/async-loop/default.h -FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/paged_vmo.h -FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/directory.h -FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/fd.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/internal_callable_traits.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/txn_header.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/visitor.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/internal.c -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/event_sender.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/member_connector.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/service_connector.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/service_handler_base.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/include/lib/fidl/cpp/internal/message_sender.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/internal/message_sender.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/async_binding.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/async_transaction.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/async_binding.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/async_transaction.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/connect_service.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/message_storage.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/server.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/service_handler.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/sync_call.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/transaction.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/transaction.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/barrier.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/barrier.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/utility.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/health.cc -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/hierarchy.cc -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/health.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/hierarchy.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/inspect.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/reader.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/block.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/scanner.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/snapshot.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/reader.cc -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/scanner.cc -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/snapshot.cc -FILE: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/include/lib/inspect/service/cpp/reader.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/include/lib/inspect/service/cpp/service.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/reader.cc -FILE: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/service.cc -FILE: ../../../fuchsia/sdk/linux/pkg/modular_cpp/agent.cc -FILE: ../../../fuchsia/sdk/linux/pkg/modular_cpp/include/lib/modular/cpp/agent.h -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/view_ref_pair.h -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/view_token_pair.h -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/view_ref_pair.cc -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/constructors.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/storage.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/utility.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/string_view.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/utility.h -FILE: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/internal/mutex-internal.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/component_context.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/file_descriptor.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/component_context.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/file_descriptor.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/outgoing_directory.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/service_directory.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/outgoing_directory.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/service_directory.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/termination_reason.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/component_context_provider.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/service_directory_provider.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_inspect_cpp/component.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_inspect_cpp/include/lib/sys/inspect/cpp/component.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/include/lib/sys/service/cpp/service.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/include/lib/sys/service/cpp/service_aggregate.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/include/lib/sys/service/cpp/service_handler.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/include/lib/sys/service/cpp/service_watcher.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/service.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/service_aggregate.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/service_watcher.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/flags.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/connection.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/directory.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/directory_connection.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/dirent_filler.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/file.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/file_connection.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/node.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/node_connection.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/lazy_dir.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/pseudo_dir.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/pseudo_file.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/remote_dir.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/service.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/vmo_file.h -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/connection.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/directory.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/directory_connection.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/dirent_filler.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/file.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/file_connection.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/node.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/node_connection.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/lazy_dir.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/pseudo_dir.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/pseudo_file.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/remote_dir.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/service.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/vmo_file.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/clock.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/exception.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/pager.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/pager.cc ----------------------------------------------------------------------------------------------------- -Copyright 2019 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/crash-reason.h + ../../../fuchsia/sdk/linux/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/analyzer.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/crash-reason.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/string_view.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls-next.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/testonly-syscalls.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/analyzer.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/boot/crash-reason.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/string_view.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls-next.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/testonly-syscalls.h -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/fuchsia_view.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/fuchsia_view.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/fuchsia_view_connection.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/fuchsia_view_controller.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/pointer_injector.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/component.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/device.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/diagnostics.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/feedback_data_provider.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/proxy.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/tiles.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/time.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/gpu_metrics.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/total_trace_wall_time.dart -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.gesture/gesture_listener.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.a2dp/audio_mode.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.hfp/hfp.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/connection_options.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/configuration.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/pairing_options.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/security_mode.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/deprecated.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/device_name.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo/buildinfo.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/device.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/device_watcher.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/stream.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castremotecontrol/remote_control.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsetup/server.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castwindow/window.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.types/constants.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/constants.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/error.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/types.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/interest.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/severity.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/graphical_presenter.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.factory.wlan/iovar.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/crash_register.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/data_register.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/last_reboot_info.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.adc/adc.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/codec.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/dai.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/dai_format.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/device.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/frames.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/instance.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/mac.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/session.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.power.statecontrol/reboot_reason.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/consumer_control.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/device_ids.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input/keys.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/locking.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/debug-resource.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/hypervisor-resource.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/info-resource.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/ioport-resource.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/irq-resource.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/mexec-resource.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/mmio-resource.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/power-resource.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/smc-resource.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/vmex-resource.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.legacymetrics/event.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.legacymetrics/metrics_recorder.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.position/position.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.sensor/sensor.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location/types.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.bootstrap/thread.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/device.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/energy_scanner.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/effects_controller.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/properties.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/types.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.target/target_discovery.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/activity_reporter.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/profile_provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.memorypressure/memorypressure.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.metrics/metric_event_logger.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/session_restart_controller.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.interfaces/interfaces.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.routes/routes.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net/socket.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process.lifecycle/lifecycle.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings.policy/error.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings.policy/volume_policy.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/factory_reset.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/input.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/light.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/night_mode.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/events.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/keyboard.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/modifiers.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer.augment/augment.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/mouse.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/state.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/touch.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/view.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/config.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/device.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/event.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/display_backlight.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view_ref.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view_ref_focused.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view_ref_installed.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ultrasound/factory.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update/commit.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update/update.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.url/url.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/auth.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/bootstrap.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/common.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/weavestack.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/reason_code.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/status_code.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedclient/wlan_deprecated_client.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedconfiguration/wlan_deprecated_configuration.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/zx/zx_common.fidl -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/handle_close_many.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/trace.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/internal/bitset.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/internal/natural_types_header.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/internal/natural_types_implementation.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/types.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/arena.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/client_base.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/arena.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/client.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/client_base.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/decoded_value.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/envelope.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/extract_resource_on_destruction.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/message.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/object_view.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/status.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/server.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/compiler.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/result.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/result.h -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/commands_sizing.cc -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/commands_sizing.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/array.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/bit.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/array.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/bit.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/memory.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/source_location.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/version.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/msi.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/result.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/stream.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/msi.cc -FILE: ../../../fuchsia/sdk/linux/pkg/zx/stream.cc +ORIGIN: ../../../fuchsia/sdk/linux/LICENSE.vulkan +TYPE: LicenseType.apache +FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/VkLayer_image_pipe_swapchain.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/VkLayer_khronos_validation.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libasync-default.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libfdio.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libmemfs.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libsvc.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libsyslog.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libtrace-engine.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libtrace-provider-so.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libvulkan.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libasync-default.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libasync-loop-default.a +FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libfdio.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libmemfs.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libsvc.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libsync.a +FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libsyslog.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libtrace-engine.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libtrace-provider-so.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/lib/libvulkan.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/alloca.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/ar.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/arpa/ftp.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/arpa/inet.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/arpa/nameser.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/arpa/nameser_compat.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/arpa/telnet.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/arpa/tftp.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/assert.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/endian.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/fenv.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/ioctl.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/ipc.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/reg.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/setjmp.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/signal.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/aarch64/stat.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/alltypes.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/endian.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/errno.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/fcntl.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/fenv.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/io.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/ioctl.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/ipc.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/limits.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/msg.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/null.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/posix.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/reg.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/sem.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/setjmp.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/shm.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/signal.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/stat.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/statfs.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/termios.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/endian.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/fenv.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/io.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/ioctl.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/ipc.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/reg.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/setjmp.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/signal.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/bits/x86_64/stat.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/byteswap.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/complex.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/cpio.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/ctype.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/dirent.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/dlfcn.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/elf.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/endian.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/err.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/errno.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/fcntl.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/features.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/fenv.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/fmtmsg.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/fnmatch.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/getopt.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/glob.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/grp.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/iconv.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/ifaddrs.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/inttypes.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/iso646.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/langinfo.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/libgen.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/limits.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/link.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/locale.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/malloc.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/math.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/memory.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/monetary.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/net/ethernet.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/net/if.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/net/if_arp.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/net/route.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netdb.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/ether.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/icmp6.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/if_ether.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/igmp.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/in.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/in_systm.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/ip.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/ip6.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/ip_icmp.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/tcp.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netinet/udp.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/netpacket/packet.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/nl_types.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/paths.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/poll.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/pthread.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/pwd.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/regex.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/resolv.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sched.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/search.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/semaphore.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/setjmp.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/signal.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/spawn.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/stdio.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/stdlib.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/string.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/strings.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/stropts.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/acct.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/auxv.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/dir.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/errno.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/eventfd.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/fcntl.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/file.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/fsuid.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/inotify.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/io.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/ioctl.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/ipc.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/klog.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/mman.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/mount.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/msg.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/mtio.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/param.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/personality.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/poll.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/quota.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/random.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/reboot.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/reg.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/select.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/sem.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/shm.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/signal.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/signalfd.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/socket.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/stat.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/statfs.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/statvfs.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/stropts.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/swap.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/syslog.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/termios.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/time.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/timeb.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/timerfd.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/times.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/timex.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/ttydefaults.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/types.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/ucontext.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/uio.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/un.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/utsname.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/vfs.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sys/wait.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/sysexits.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/syslog.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/tar.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/termios.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/threads.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/time.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/uchar.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/ucontext.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/unistd.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/utime.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/values.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/wait.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/wchar.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/wctype.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/wordexp.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/Scrt1.o +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/libc.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/libdl.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/libm.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/libpthread.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/librt.so +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/lib/libzircon.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/VkLayer_image_pipe_swapchain.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/VkLayer_khronos_validation.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libasync-default.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libfdio.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libmemfs.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libsvc.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libsyslog.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libtrace-engine.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libtrace-provider-so.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/dist/libvulkan.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libasync-default.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libasync-loop-default.a +FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libfdio.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libmemfs.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libsvc.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libsync.a +FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libsyslog.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libtrace-engine.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libtrace-provider-so.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/lib/libvulkan.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/alloca.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/ar.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/arpa/ftp.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/arpa/inet.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/arpa/nameser.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/arpa/nameser_compat.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/arpa/telnet.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/arpa/tftp.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/assert.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/endian.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/fenv.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/ioctl.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/ipc.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/reg.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/setjmp.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/signal.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/aarch64/stat.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/alltypes.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/endian.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/errno.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/fcntl.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/fenv.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/io.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/ioctl.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/ipc.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/limits.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/msg.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/null.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/posix.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/reg.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/sem.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/setjmp.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/shm.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/signal.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/stat.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/statfs.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/termios.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/endian.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/fenv.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/io.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/ioctl.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/ipc.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/reg.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/setjmp.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/signal.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/bits/x86_64/stat.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/byteswap.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/complex.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/cpio.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/ctype.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/dirent.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/dlfcn.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/elf.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/endian.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/err.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/errno.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/fcntl.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/features.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/fenv.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/fmtmsg.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/fnmatch.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/getopt.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/glob.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/grp.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/iconv.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/ifaddrs.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/inttypes.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/iso646.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/langinfo.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/libgen.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/limits.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/link.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/locale.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/malloc.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/math.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/memory.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/monetary.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/net/ethernet.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/net/if.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/net/if_arp.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/net/route.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netdb.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/ether.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/icmp6.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/if_ether.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/igmp.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/in.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/in_systm.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/ip.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/ip6.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/ip_icmp.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/tcp.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netinet/udp.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/netpacket/packet.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/nl_types.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/paths.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/poll.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/pthread.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/pwd.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/regex.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/resolv.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sched.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/search.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/semaphore.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/setjmp.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/signal.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/spawn.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/stdio.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/stdlib.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/string.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/strings.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/stropts.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/acct.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/auxv.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/dir.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/errno.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/eventfd.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/fcntl.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/file.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/fsuid.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/inotify.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/io.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/ioctl.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/ipc.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/klog.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/mman.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/mount.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/msg.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/mtio.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/param.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/personality.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/poll.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/quota.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/random.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/reboot.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/reg.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/select.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/sem.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/shm.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/signal.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/signalfd.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/socket.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/stat.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/statfs.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/statvfs.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/stropts.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/swap.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/syslog.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/termios.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/time.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/timeb.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/timerfd.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/times.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/timex.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/ttydefaults.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/types.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/ucontext.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/uio.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/un.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/utsname.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/vfs.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sys/wait.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/sysexits.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/syslog.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/tar.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/termios.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/threads.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/time.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/uchar.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/ucontext.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/unistd.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/utime.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/values.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/wait.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/wchar.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/wctype.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/wordexp.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/Scrt1.o +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libc.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libdl.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libm.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libpthread.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/librt.so +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libzircon.so +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/handle_disposition.dart +FILE: ../../../fuchsia/sdk/linux/data/config/symbol-index/config.json +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/inspect.json +FILE: ../../../fuchsia/sdk/linux/pkg/sys/component/realm_builder_shard_sdk.json +FILE: ../../../fuchsia/sdk/linux/pkg/syslog/client.shard.cmx +FILE: ../../../fuchsia/sdk/linux/pkg/syslog/syslog.json +FILE: ../../../fuchsia/sdk/linux/pkg/vulkan/vulkan.json +FILE: ../../../fuchsia/sdk/linux/pkg/vulkan_layers/data/vulkan/explicit_layer.d/VkLayer_image_pipe_swapchain.json +FILE: ../../../fuchsia/sdk/linux/pkg/vulkan_layers/data/vulkan/explicit_layer.d/VkLayer_khronos_validation.json ---------------------------------------------------------------------------------------------------- -Copyright 2020 The Fuchsia Authors. All rights reserved. +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses/ + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +==================================================================================================== + +==================================================================================================== +LIBRARY: fuchsia_sdk +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/service_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/input_event_constants.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/input_events.fidl + ../../../fuchsia/sdk/linux/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/service_provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/input_event_constants.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/input_events.fidl +---------------------------------------------------------------------------------------------------- +Copyright 2014 The Fuchsia Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -1870,11 +663,453 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/component_context.dart + ../../../LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/assert.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/compiler.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/listnode.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/pixelformat.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/processargs.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/status.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/debug.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/exception.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/log.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/object.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/pci.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/port.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/profile.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/resource.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/types.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/types.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/assert.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/compiler.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/listnode.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/pixelformat.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/processargs.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/status.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/debug.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/exception.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/log.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/object.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/pci.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/port.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/profile.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/resource.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/types.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/types.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/interface.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.runner/component_runner.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/font_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.math/math.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/problem.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/seeking_reader.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/module_context.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/session_shell.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_controller.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_info.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/component_controller.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/environment.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/environment_controller.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/launcher.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/loader.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/runner.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.provider/provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/presenter.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/fdio.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/io.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/vfs.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/watcher.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/thread_checker.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/include/lib/media/cpp/timeline_function.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/include/lib/media/cpp/timeline_rate.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/timeline_function.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/timeline_rate.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/completion.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/termination_reason.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/channel.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/event.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/eventpair.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/channel.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/event.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/eventpair.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/job.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/object.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/object_traits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/port.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/process.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/socket.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/task.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/thread.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/time.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/vmar.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/vmo.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/job.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/port.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/process.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/socket.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/thread.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/vmar.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/vmo.cc + ../../../fuchsia/sdk/linux/LICENSE TYPE: LicenseType.bsd -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/component_context.dart +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/assert.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/compiler.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/listnode.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/pixelformat.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/processargs.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/status.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/debug.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/exception.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/log.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/object.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/pci.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/port.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/profile.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/resource.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/types.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/types.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/assert.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/compiler.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/listnode.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/pixelformat.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/processargs.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/status.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/debug.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/exception.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/log.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/object.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/pci.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/port.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/profile.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/resource.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/types.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/types.h +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/interface.dart +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.runner/component_runner.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/font_provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.math/math.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/problem.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/seeking_reader.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/module_context.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/session_shell.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_controller.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_info.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/component_controller.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/environment.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/environment_controller.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/launcher.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/loader.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/runner.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.provider/provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/presenter.fidl +FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/fdio.h +FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/io.h +FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/vfs.h +FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/watcher.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/thread_checker.h +FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/include/lib/media/cpp/timeline_function.h +FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/include/lib/media/cpp/timeline_rate.h +FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/timeline_function.cc +FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/timeline_rate.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/completion.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/termination_reason.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/channel.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/event.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/eventpair.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/channel.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/event.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/eventpair.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/job.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/object.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/object_traits.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/port.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/process.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/socket.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/task.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/thread.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/time.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/vmar.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/vmo.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/job.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/port.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/process.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/socket.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/thread.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/vmar.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/vmo.cc +---------------------------------------------------------------------------------------------------- +Copyright 2016 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: fuchsia_sdk +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/device/audio.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/fidl.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/hw/gpt.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/process.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/rights.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/sanitizer.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/hypervisor.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/iommu.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/policy.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/system.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/tls.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/device/audio.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/fidl.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/hw/gpt.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/process.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/rights.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/sanitizer.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/hypervisor.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/iommu.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/policy.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/system.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/tls.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/auth_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/token_manager.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/client.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/server.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/peripheral.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/types_deprecated.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/presentation_info.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_capturer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.mem/buffer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/agent.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/agent_controller.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/component_context.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/intent.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/lifecycle.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/module_data.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/module_state.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_shell.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_state.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/surface.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/mdns.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/flat_namespace.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/commands.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/display_info.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/events.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/nodes.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/renderer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/resources.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/shapes.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/types.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/ime_service.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/input_device_registry.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/input_reports.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/text_editing.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/text_input.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/usages.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/presentation.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/receiver.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/task.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/wait.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/receiver.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/task.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/trap.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/wait.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-default/include/lib/async/default.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-loop-cpp/include/lib/async-loop/cpp/loop.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-loop-cpp/loop_wrapper.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-loop-testing/real_loop.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-loop/include/lib/async-loop/loop.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-loop/loop.c + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-testing/dispatcher_stub.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-testing/include/lib/async-testing/dispatcher_stub.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/dispatcher.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/irq.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/receiver.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/task.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/wait.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async/ops.c + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/limits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/namespace.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/unsafe.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/decoding_and_validating.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/encoding.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/formatting.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/coding.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/internal.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/string_view.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/vector_view.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/function.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/function.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/memfs/include/lib/memfs/memfs.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/commands.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/commands.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/resources.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/session.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/resources.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/session.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/context.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/fields.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/handler.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/instrumentation.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/types.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace-provider-so/include/lib/trace-provider/handler.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace-provider-so/include/lib/trace-provider/provider.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace/event.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/event.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/event_common.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/event_internal.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/pairs_internal.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/string_traits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/observer.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace/observer.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/fifo.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/fifo.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/handle.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/timer.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/timer.cc + ../../../fuchsia/sdk/linux/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/device/audio.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/fidl.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/hw/gpt.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/process.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/rights.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/sanitizer.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/hypervisor.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/iommu.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/policy.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/system.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/tls.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/device/audio.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/fidl.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/hw/gpt.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/process.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/rights.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/sanitizer.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/hypervisor.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/iommu.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/policy.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/system.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/tls.h +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/auth_provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/token_manager.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/client.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/server.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/peripheral.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/types_deprecated.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/presentation_info.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_capturer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mem/buffer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/agent.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/agent_controller.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/component_context.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/intent.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/lifecycle.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/module_data.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/module_state.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_shell.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_state.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/surface.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/mdns.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/flat_namespace.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/commands.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/display_info.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/events.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/nodes.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/renderer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/resources.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/shapes.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/types.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/ime_service.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/input_device_registry.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/input_reports.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/text_editing.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/text_input.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/usages.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/presentation.fidl +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/receiver.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/task.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/wait.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/receiver.cc +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/task.cc +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/trap.cc +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/wait.cc +FILE: ../../../fuchsia/sdk/linux/pkg/async-default/include/lib/async/default.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-cpp/include/lib/async-loop/cpp/loop.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-cpp/loop_wrapper.cc +FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-testing/real_loop.cc +FILE: ../../../fuchsia/sdk/linux/pkg/async-loop/include/lib/async-loop/loop.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-loop/loop.c +FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/dispatcher_stub.cc +FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/include/lib/async-testing/dispatcher_stub.h +FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/dispatcher.h +FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/irq.h +FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/receiver.h +FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/task.h +FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/wait.h +FILE: ../../../fuchsia/sdk/linux/pkg/async/ops.c +FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/limits.h +FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/namespace.h +FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/unsafe.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/decoding_and_validating.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/encoding.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/formatting.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/coding.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/internal.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/string_view.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/vector_view.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/function.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/function.h +FILE: ../../../fuchsia/sdk/linux/pkg/memfs/include/lib/memfs/memfs.h +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/commands.cc +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/commands.h +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/resources.h +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/session.h +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/resources.cc +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/session.cc +FILE: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/context.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/fields.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/handler.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/instrumentation.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace-engine/include/lib/trace-engine/types.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace-provider-so/include/lib/trace-provider/handler.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace-provider-so/include/lib/trace-provider/provider.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace/event.cc +FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/event.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/event_common.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/event_internal.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/pairs_internal.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/string_traits.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/observer.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace/observer.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/fifo.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/fifo.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/handle.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/timer.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/timer.cc ---------------------------------------------------------------------------------------------------- -Copyright 2021 The Chromium Authors. All rights reserved. +Copyright 2017 The Fuchsia Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -1886,9 +1121,6 @@ notice, this list of conditions and the following disclaimer. copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT @@ -1905,178 +1137,552 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/handle_disposition.dart + ../../../flutter/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/fidl.dart + ../../../LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia/lib/fuchsia.dart + ../../../LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/zircon_fakes.dart + ../../../LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/zircon.dart + ../../../LICENSE TYPE: LicenseType.bsd -FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/handle_disposition.dart +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/fidl.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia/lib/fuchsia.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/zircon_fakes.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/zircon.dart ---------------------------------------------------------------------------------------------------- -Copyright 2021 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/availability.h + ../../../fuchsia/sdk/linux/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/availability.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/availability.h -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/codegen_common.dart -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/wire_format.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/reader.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/reader/diagnostic_config.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/reader/diagnostic_data.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/reader/reader.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic/lib/src/scenic_context.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/focus_state.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/fuchsia_views_service.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/dart_vm.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/remote_dir.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/camera_metrics.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/flatland_latency.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/virtual_camera.dart -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.virtualkeyboard/virtual_keyboard.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.audio.effects/creator.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.audio.effects/processor.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/client.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/constants.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/server.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/types.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/specs.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/value.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/capability.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/child.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/collection.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/component.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/config.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/environment.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/events.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/expose.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/offer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/program.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/relative_refs.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/types.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/use.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.test/realm_builder.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/binder.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/realm.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics.types/component.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/log_settings.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.driver.test/realm.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/data_provider_controller.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.agis/agis.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/signal_processing.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/codec_connector.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/dai_connector.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/health.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/port.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.radar/radar.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.virtualkeyboard/virtual_keyboard.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input/keymap.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/calendar.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/time_zones.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/inotify.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/rights-abilities.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/cpu-resource.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/calibrator.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/sensor.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/types.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/counters.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/audio_format.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/compression.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/encryption.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/media_format.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/video_format.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.profile/profile.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/keyboard.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.thermal/client_state.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/allocator.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/flatland.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.observation.geometry/watcher.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/flatland_tokens.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.common/wlan_common.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/constants.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/rsn.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/types.fidl -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/wire_format_metadata.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/internal/natural_types.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/natural_types.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/any_error_in.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/client.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/client_details.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/make_response_context.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/natural_client_base.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/unified_messaging.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/client_details.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/container_utils.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/helper_macros.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/node_utils.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/pointer_traits.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/wavl_tree.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/wavl_tree_internal.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/server_details.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/synchronization_checker.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/transport.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/transport_channel.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/soft_migration.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_messaging.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_types.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/message_storage.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/status.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/transport.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/transport_channel.cc -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/view_creation_tokens.h -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/view_identity.h -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/view_creation_tokens.cc -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/view_identity.cc -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/algorithm.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/atomic.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/cstddef.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/functional.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/algorithm.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/atomic.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/erase.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/exception.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/functional.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/span.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/tuple.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/type_traits.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/iterator.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/span.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/tuple.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/internal/errors.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/internal/local_component_runner.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/internal/realm.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/realm_builder.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/realm_builder_types.cc -FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/scoped_child.cc -FILE: ../../../fuchsia/sdk/linux/pkg/syslog_structured_backend/fuchsia_syslog.cc -FILE: ../../../fuchsia/sdk/linux/pkg/syslog_structured_backend/include/lib/syslog/structured_backend/cpp/fuchsia_syslog.h -FILE: ../../../fuchsia/sdk/linux/pkg/syslog_structured_backend/include/lib/syslog/structured_backend/fuchsia_syslog.h -FILE: ../../../fuchsia/sdk/linux/pkg/zx/status_string.cc +Copyright 2018 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: fuchsia_sdk +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/bootfs.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/image.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/dlfcn.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/features.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/hw/pci.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/limits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/smc.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/threads.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/time.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/boot/bootfs.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/boot/image.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/dlfcn.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/features.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/hw/pci.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/limits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/smc.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/threads.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/time.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/codec.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/enum.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/error.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/hash_codes.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/interface_async.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/message.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/struct.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/table.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/types.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/unknown_data.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia/lib/src/fakes/fuchsia_fakes.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/logger.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/internal/_fuchsia_log_writer.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/internal/_log_message.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/internal/_log_writer.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/internal/_stdout_log_writer.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/logger/logger.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/services.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/service_provider_impl.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/internal/_error_node.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/pseudo_dir.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/pseudo_file.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/service.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/vnode.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/vfs.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/channel.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/channel_reader.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/constants.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/errors.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/eventpair.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/handle.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/handle_waiter.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/system.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/handle_wrapper.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/socket.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/socket_reader.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/vmo.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/attestation_signer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/common.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/types.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/central.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera/camera.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera/manager.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.data/data.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.developer.tiles/tiles.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.magma/magma.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/encoded_image.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/image_info.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/memory_type.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/intl.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/directory.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/node.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ldsvc/ldsvc.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.logger/logger.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/gain_control.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/player.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/source_manager.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_device_enumerator.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_renderer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/metadata.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/stream.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/stream_common.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/stream_processor.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/stream_type.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/timeline_function.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediacodec/codec_factory.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/module_manifest.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/puppet_master.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_command.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_options.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.http/client.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net/net.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.process/launcher.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.process/resolver.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/job_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysinfo/sysinfo.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/allocator.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/collection.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/collections_deprecated.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/constraints.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/driver_connector.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/format_modifier.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/formats_deprecated.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/image_formats.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/image_formats_deprecated.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/usages.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/view_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/pose_buffer_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/commands.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/display_usage.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/commands.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/events.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/scenic.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/session.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/snapshot.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/commands.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/time.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/trap.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-testing/include/lib/async-testing/test_loop.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-testing/include/lib/async-testing/test_loop_dispatcher.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-testing/include/lib/async-testing/test_subloop.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-testing/test_loop.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-testing/test_loop_dispatcher.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/time.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/trap.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/spawn.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl/epitaph.c + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl/include/lib/fidl/epitaph.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/walker.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/binding.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/binding_set.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/interface_ptr.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/interface_ptr_set.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/header.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/implementation.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/message_handler.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/message_reader.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/pending_response.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/proxy.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/proxy_controller.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/stub.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/stub_controller.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/weak_stub_controller.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/type_converter.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/message_handler.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/message_reader.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/pending_response.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/proxy.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/proxy_controller.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/stub.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/stub_controller.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/weak_stub_controller.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/clone.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/decoder.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/encoder.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/clone.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/coding_traits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/comparison.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/decoder.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/encoder.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/enum.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/interface_handle.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/interface_request.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/message.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/message_buffer.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/message_part.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/string.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/traits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/vector.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/message.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/message_buffer.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/include/lib/fidl/cpp/internal/logging.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/include/lib/fidl/cpp/internal/synchronous_proxy.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/include/lib/fidl/cpp/synchronous_interface_ptr.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/internal/logging.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/internal/synchronous_proxy.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/array.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/traits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/message.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/bridge.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/bridge_internal.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/promise.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/promise_internal.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/result.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/scheduler.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/scope.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/sequencer.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/single_threaded_executor.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/promise.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/scheduler.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/scope.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/sequencer.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/single_threaded_executor.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/defer.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/function_traits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/nullable.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/thread_safety.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/traits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/images_cpp/images.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/images_cpp/include/lib/images/cpp/images.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/inspector.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/heap.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/limits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/state.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/types.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/inspector.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/heap.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/state.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/types.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/media_cpp/include/lib/media/cpp/type_converters.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/media_cpp/type_converters.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/id.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/view_token_pair.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/optional.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/queue.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/type_traits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/variant.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/vector.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/svc/include/lib/svc/dir.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/condition.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/internal/condition-template.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/mutex.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/enclosing_environment.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/fake_component.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/fake_launcher.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/launcher_impl.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/test_with_environment.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/syslog/include/lib/syslog/global.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/syslog/include/lib/syslog/logger.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/syslog/include/lib/syslog/wire_format.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace-provider-so/include/lib/trace-provider/fdio_connect.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/event_args.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/event_args.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/composed_service_dir.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/composed_service_dir.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/bti.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/debuglog.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/guest.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/bti.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/debuglog.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/guest.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/interrupt.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/iommu.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/pmt.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/profile.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/resource.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/suspend_token.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/vcpu.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/interrupt.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/iommu.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/profile.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/resource.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/vcpu.cc + ../../../fuchsia/sdk/linux/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/bootfs.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/image.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/dlfcn.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/features.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/hw/pci.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/limits.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/smc.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/threads.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/time.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/boot/bootfs.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/boot/image.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/dlfcn.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/features.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/hw/pci.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/limits.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/smc.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/threads.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/time.h +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/codec.dart +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/enum.dart +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/error.dart +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/hash_codes.dart +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/interface_async.dart +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/message.dart +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/struct.dart +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/table.dart +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/types.dart +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/unknown_data.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia/lib/src/fakes/fuchsia_fakes.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/logger.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/internal/_fuchsia_log_writer.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/internal/_log_message.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/internal/_log_writer.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/internal/_stdout_log_writer.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/lib/src/logger/logger.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/services.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/service_provider_impl.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/internal/_error_node.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/pseudo_dir.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/pseudo_file.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/service.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/vnode.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/vfs.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/channel.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/channel_reader.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/constants.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/errors.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/eventpair.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/handle.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/handle_waiter.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/system.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/handle_wrapper.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/socket.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/socket_reader.dart +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/vmo.dart +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/attestation_signer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/common.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/types.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/central.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera/camera.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera/manager.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.data/data.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.developer.tiles/tiles.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.magma/magma.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/encoded_image.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/image_info.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/memory_type.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/intl.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/directory.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/node.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ldsvc/ldsvc.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.logger/logger.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/gain_control.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/player.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/source_manager.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_device_enumerator.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_renderer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/metadata.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/stream.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/stream_common.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/stream_processor.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/stream_type.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/timeline_function.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediacodec/codec_factory.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/module_manifest.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/puppet_master.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_command.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_options.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.http/client.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net/net.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process/launcher.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process/resolver.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/job_provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysinfo/sysinfo.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/allocator.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/collection.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/collections_deprecated.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/constraints.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/driver_connector.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/format_modifier.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/formats_deprecated.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/image_formats.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/image_formats_deprecated.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/usages.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/view_provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/pose_buffer_provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/commands.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/display_usage.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/commands.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/events.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/scenic.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/session.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/snapshot.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/commands.fidl +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/time.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/trap.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/include/lib/async-testing/test_loop.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/include/lib/async-testing/test_loop_dispatcher.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/include/lib/async-testing/test_subloop.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/test_loop.cc +FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/test_loop_dispatcher.cc +FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/time.h +FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/trap.h +FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/spawn.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl/epitaph.c +FILE: ../../../fuchsia/sdk/linux/pkg/fidl/include/lib/fidl/epitaph.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/walker.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/binding.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/binding_set.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/interface_ptr.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/interface_ptr_set.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/header.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/implementation.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/message_handler.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/message_reader.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/pending_response.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/proxy.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/proxy_controller.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/stub.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/stub_controller.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/weak_stub_controller.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/type_converter.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/message_handler.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/message_reader.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/pending_response.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/proxy.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/proxy_controller.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/stub.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/stub_controller.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/weak_stub_controller.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/clone.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/decoder.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/encoder.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/clone.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/coding_traits.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/comparison.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/decoder.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/encoder.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/enum.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/interface_handle.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/interface_request.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/message.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/message_buffer.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/message_part.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/string.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/traits.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/vector.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/message.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/message_buffer.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/include/lib/fidl/cpp/internal/logging.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/include/lib/fidl/cpp/internal/synchronous_proxy.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/include/lib/fidl/cpp/synchronous_interface_ptr.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/internal/logging.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/internal/synchronous_proxy.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/array.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/traits.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/message.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/bridge.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/bridge_internal.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/promise.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/promise_internal.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/result.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/scheduler.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/scope.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/sequencer.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/single_threaded_executor.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/promise.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/scheduler.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/scope.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/sequencer.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/single_threaded_executor.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/defer.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/function_traits.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/nullable.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/thread_safety.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/traits.h +FILE: ../../../fuchsia/sdk/linux/pkg/images_cpp/images.cc +FILE: ../../../fuchsia/sdk/linux/pkg/images_cpp/include/lib/images/cpp/images.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/inspector.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/heap.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/limits.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/state.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/types.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/inspector.cc +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/heap.cc +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/state.cc +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/types.cc +FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp/include/lib/media/cpp/type_converters.h +FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp/type_converters.cc +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/id.h +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/view_token_pair.cc +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/optional.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/queue.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/type_traits.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/variant.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/vector.h +FILE: ../../../fuchsia/sdk/linux/pkg/svc/include/lib/svc/dir.h +FILE: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/condition.h +FILE: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/internal/condition-template.h +FILE: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/mutex.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/enclosing_environment.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/fake_component.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/fake_launcher.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/launcher_impl.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/test_with_environment.cc +FILE: ../../../fuchsia/sdk/linux/pkg/syslog/include/lib/syslog/global.h +FILE: ../../../fuchsia/sdk/linux/pkg/syslog/include/lib/syslog/logger.h +FILE: ../../../fuchsia/sdk/linux/pkg/syslog/include/lib/syslog/wire_format.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace-provider-so/include/lib/trace-provider/fdio_connect.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/event_args.h +FILE: ../../../fuchsia/sdk/linux/pkg/trace/include/lib/trace/internal/event_args.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/composed_service_dir.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/composed_service_dir.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/bti.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/debuglog.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/guest.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/bti.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/debuglog.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/guest.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/interrupt.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/iommu.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/pmt.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/profile.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/resource.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/suspend_token.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/vcpu.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/interrupt.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/iommu.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/profile.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/resource.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/vcpu.cc ---------------------------------------------------------------------------------------------------- -Copyright 2021 The Fuchsia Authors. All rights reserved. +Copyright 2018 The Fuchsia Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -2104,225 +1710,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/driver-config.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys.test/cache.fidl + ../../../LICENSE TYPE: LicenseType.bsd -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/driver-config.h -FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/errors.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/boot/driver-config.h -FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/errors.h -FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/optional_nullable.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/realm_builder.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/error.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/internal/local_component.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/internal/local_component_runner.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/local_component_handles.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/realm_builder.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_view/lib/src/view_creation_token_pair.dart -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_view/lib/tokens.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/performance_publish.dart -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/power_metrics.dart -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.semantics/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.audio.effects/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.fastpair/provider.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/pairing.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo.test/buildinfotest.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsetup/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/resolved.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/component.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/package.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/resolver.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.debugdata/publisher.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/connector.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/dynamics.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/equalizer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/gain.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/vendor_specific.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/diagnostics.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.power.statecontrol/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.legacymetrics/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.thread/dataset.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.thread/meshcop.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.thread/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan/lowpan.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mem/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/common.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/host_name_resolver.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/host_name_subscriber.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/proxy_host_publisher.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/service_instance_publisher.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/service_instance_resolver.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/service_subscriber.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.reachability/reachability.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.clientlevel/clientlevel.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.systemmode/systemmode.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery.ui/progress.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings.policy/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.thermal/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.perfetto/consumer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.perfetto/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.perfetto/producer.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.brightness/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/screen_capture.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/screenshot.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.observation.geometry/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/media_buttons.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/mouse.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/registry.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/text.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/touch.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.scene/controller.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.scene/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.unknown/unknown.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.config/config.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.version/version.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.common/driver_features.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.common/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/fields.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/overview.fidl -FILE: ../../../fuchsia/sdk/linux/fidl/zx/overview.fidl -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/sequence_checker.h -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/sequence_checker.cc -FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/sequence_id.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/cpp/transaction_header.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/cpp/transport_err.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/cpp/wire_format_metadata.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/unknown_interactions_table.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/unknown_interactions_hlcpp.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/unknown_interactions_table.c -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/unknown_interactions_hlcpp.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/box.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/internal/transport_err.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/natural_coding_traits.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/natural_decoder.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/natural_encoder.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/wire_natural_conversions.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/natural_coding_traits.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/natural_decoder.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/natural_encoder.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/natural_types.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_hlcpp_conversion/include/lib/fidl/cpp/hlcpp_conversion.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_natural_ostream/include/lib/fidl/cpp/natural_ostream.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/any_error_in.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/channel.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/channel_endpoint_conversions.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/natural_message_encoder.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/thenable.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/unified_messaging_declarations.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/internal/natural_message_encoder.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/client_details.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/coding_errors.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/display_error.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/base_wire_result.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/channel.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/coding_errors.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/incoming_message.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/arrow.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/client_continuation.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/coding_config.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/display_error.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/endpoints.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/make_response_context.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/thenable.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/transport_err.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/optional.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/outgoing_message.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/unknown_interaction_handler.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/unknown_interactions.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_coding_common.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_coding_traits.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_decoder.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_encoder.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_messaging_declarations.h -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/incoming_message.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/outgoing_message.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/thenable.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/unknown_interactions.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_coding_traits.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_decoder.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_encoder.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_messaging.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_types.cc -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/inline_any.h -FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/inline_any.h -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/client.shard.cml -FILE: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/include/lib/inspect/service/cpp/tree_handler_settings.h -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp_testing/fake_flatland.cc -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp_testing/fake_flatland_types.cc -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/linkage.h -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/variant.h -FILE: ../../../fuchsia/sdk/linux/pkg/sys/component/realm_builder_absolute.shard.cml -FILE: ../../../fuchsia/sdk/linux/pkg/sys/component/realm_builder_base.shard.cml -FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/internal/convert.cc -FILE: ../../../fuchsia/sdk/linux/pkg/syslog/client.shard.cml -FILE: ../../../fuchsia/sdk/linux/pkg/syslog/offer.shard.cml -FILE: ../../../fuchsia/sdk/linux/pkg/syslog/use.shard.cml -FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/arm-neon.h -FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/generic-simd.h -FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/scalar.h -FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/x86-avx2.h -FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/x86-ssse3.h -FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/utf-utils.h -FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/internal/scalar.cc -FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/utf-utils.cc -FILE: ../../../fuchsia/sdk/linux/pkg/vulkan/client.shard.cml +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys.test/cache.fidl ---------------------------------------------------------------------------------------------------- -Copyright 2022 The Fuchsia Authors. All rights reserved. +Copyright 2019 The Chromium Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -2334,6 +1726,9 @@ notice, this list of conditions and the following disclaimer. copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT @@ -2349,10 +1744,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: fuchsia_sdk -ORIGIN: ../../../fuchsia/sdk/linux/LICENSE.vulkan -TYPE: LicenseType.apache -FILE: ../../../fuchsia/sdk/linux/.versions/core.cipd_version +LIBRARY: fuchsia_sdk +ORIGIN: ../../../fuchsia/sdk/linux/LICENSE +TYPE: LicenseType.bsd FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/VkLayer_image_pipe_swapchain.so FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/VkLayer_khronos_validation.so FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libasync-default.so @@ -2761,440 +2155,1867 @@ FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libm.so FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libpthread.so FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/librt.so FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libzircon.so -FILE: ../../../fuchsia/sdk/linux/dart/fidl/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_view/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/zircon/meta.json +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/handle_disposition.dart FILE: ../../../fuchsia/sdk/linux/data/config/symbol-index/config.json -FILE: ../../../fuchsia/sdk/linux/data/config/symbol-index/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.gesture/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.semantics/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.virtualkeyboard/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.audio.effects/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth.oldtokens/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.a2dp/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.fastpair/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.hfp/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2.hal/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castauth/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castconfig/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castremotecontrol/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsetup/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsysteminfo/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castwindow/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.runner/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.types/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.data/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.debugdata/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.developer.tiles/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics.types/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.driver.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.factory.wlan/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.factory/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.agis/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.magma/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.adc/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.light/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.power.statecontrol/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.radar/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hwinfo/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.virtualkeyboard/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.inspect/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ldsvc/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.legacymetrics/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.namedplace/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.position/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.sensor/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.logger/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.bootstrap/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.thread/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.math/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sounds/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.target/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediacodec/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mem/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.memorypressure/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.metrics/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.migration/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.http/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.interfaces/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.reachability/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.routes/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.clientlevel/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.profile/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.systemmode/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process.lifecycle/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery.ui/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.scenic.scheduling/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.session/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings.policy/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysinfo/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.thermal/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.perfetto/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.provider/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity.control/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.brightness/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.observation.geometry/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer.augment/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.scene/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.types/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ultrasound/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.unknown/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.channel/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.channelcontrol/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.config/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.url/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.version/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.common/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedclient/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedconfiguration/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/zx/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-default/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-default/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fdio/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_hlcpp_conversion/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_natural_ostream/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fit/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/images_cpp/meta.json FILE: ../../../fuchsia/sdk/linux/pkg/inspect/inspect.json -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/memfs/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/modular_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp_testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/svc/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sync/meta.json FILE: ../../../fuchsia/sdk/linux/pkg/sys/component/realm_builder_shard_sdk.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_inspect_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/meta.json FILE: ../../../fuchsia/sdk/linux/pkg/syslog/client.shard.cmx -FILE: ../../../fuchsia/sdk/linux/pkg/syslog/meta.json FILE: ../../../fuchsia/sdk/linux/pkg/syslog/syslog.json -FILE: ../../../fuchsia/sdk/linux/pkg/syslog_structured_backend/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sysroot/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/trace-engine/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/trace-provider-so/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/trace/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/vulkan/meta.json FILE: ../../../fuchsia/sdk/linux/pkg/vulkan/vulkan.json FILE: ../../../fuchsia/sdk/linux/pkg/vulkan_layers/data/vulkan/explicit_layer.d/VkLayer_image_pipe_swapchain.json FILE: ../../../fuchsia/sdk/linux/pkg/vulkan_layers/data/vulkan/explicit_layer.d/VkLayer_khronos_validation.json -FILE: ../../../fuchsia/sdk/linux/pkg/vulkan_layers/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/zx/meta.json -FILE: ../../../fuchsia/sdk/linux/version_history.json ---------------------------------------------------------------------------------------------------- -The majority of files in this project use the Apache 2.0 License. -There are a few exceptions and their license can be found in the source. -Any license deviations from Apache 2.0 are "more permissive" licenses. - -=========================================================================================== - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. +Copyright 2019 The Fuchsia Authors. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: fuchsia_sdk +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/exception.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/hw/debug/arm64.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/hw/debug/x86.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/lookup.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/clock.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/internal/cdecls.inc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/scheduler.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/utc.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/exception.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/hw/debug/arm64.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/hw/debug/x86.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/lookup.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/clock.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/internal/cdecls.inc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/scheduler.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/utc.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/bits.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/union.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/inspect.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/inspect/inspect.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/inspect/internal/_inspect_impl.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/inspect/node.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/inspect/property.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/bitfield64.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/block.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/heap.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/little_big_slab.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/util.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/vmo_fields.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/vmo_holder.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/vmo_writer.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/testing.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic/lib/src/view_token_pair.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic/lib/views.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/incoming.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/outgoing.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/composed_pseudo_dir.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/internal/_flags.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/pseudo_vmo_file.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/vmo_file.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/sl4f.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/audio.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/device_log.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/dump.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/exceptions.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/factory_store.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/input.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/inspect.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/modular.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/performance.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/scenic.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/setui.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/sl4f_client.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/ssh.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/storage.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/common.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/cpu_metrics.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/drm_fps.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/flutter_frame_stats.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/input_latency.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/memory_metrics.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/scenic_frame_stats.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/temperature_metrics.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics_results.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics_spec.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/time_delta.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/time_point.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/trace_importing.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/trace_model.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/webdriver.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/trace_processing.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.semantics/node.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.semantics/semantics_manager.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth.oldtokens/credentials_producer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/constants.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/advertising_data.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/peer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/access.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/bootstrap.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/host_watcher.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/identity.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/peer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/address.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/appearance.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/connection_role.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/device_class.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/id.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/uuid.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2.hal/hal.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2/manager.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2/stream.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.castauth/cast_auth.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.castconfig/cast_config.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsetup/cast_setup.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsysteminfo/cast_system_info.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/events.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/format.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/reader.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/selector.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/annotations.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/element_manager.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.factory/factory.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/annotation.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/attachment.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/crash_reporter.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/data_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/device_id_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/events.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/styles.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/ring_buffer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/stream.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/stream_config_connector.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.light/light.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.power.statecontrol/admin.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hwinfo/hwinfo.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/image_pipe2.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/descriptor.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/device.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/keyboard.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/led.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/mouse.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/report.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/sensor.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/touch.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/units.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.inspect/tree.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/property_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/directory2.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/file2.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/io.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/node-protocols.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/node2.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/rights-request.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/kernel-counter.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/kernel-debug.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/kernel-stats.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/root-job.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.namedplace/namedplace.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/misc.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/provisioning_params.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/volume_control.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/content_decryption.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/error.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/license_session.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/provisioning.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/services.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/discovery.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/images.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/player.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/publisher.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sounds/sound_player.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_consumer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_core.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/usage_reporter.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.mem/range.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.migration/migration.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/annotation.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_shell_factory.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery.ui/countdown.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery.ui/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery/factory_reset.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.scenic.scheduling/prediction_info.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.session/launcher.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/accessibility.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/audio.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/display.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/do_not_disturb.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/intl.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/privacy.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/settings.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/setup.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/types.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/secure_mem.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.test/suite.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.thermal/thermal.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity.control/control.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/activity.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/state.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/tracker.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/view.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/view_config.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.brightness/brightness.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.brightness/color_adjustment.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/tokens.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/pointer_capture.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/device_listener.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.types/types.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/focuser.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view_token.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.channel/channel.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.channelcontrol/channelcontrol.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/constants.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/context.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/cookie.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/debug.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/frame.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/navigation.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/url_request_rewrite_rules.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/access_point_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/client_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/zx/rights.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/executor.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/executor.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/irq.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/paged_vmo.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/irq.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/paged_vmo.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-loop-default/include/lib/async-loop/default.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/paged_vmo.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/directory.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/fd.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/internal_callable_traits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/txn_header.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/visitor.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/internal.c + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/event_sender.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/member_connector.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/service_connector.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/service_handler_base.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/include/lib/fidl/cpp/internal/message_sender.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/internal/message_sender.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/async_binding.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/async_transaction.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/async_binding.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/async_transaction.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/connect_service.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/message_storage.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/server.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/service_handler.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/sync_call.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/transaction.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/transaction.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/barrier.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/barrier.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/utility.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/health.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/hierarchy.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/health.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/hierarchy.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/inspect.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/reader.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/block.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/scanner.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/snapshot.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/reader.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/scanner.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/snapshot.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/include/lib/inspect/service/cpp/reader.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/include/lib/inspect/service/cpp/service.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/reader.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/service.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/modular_cpp/agent.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/modular_cpp/include/lib/modular/cpp/agent.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/view_ref_pair.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/view_token_pair.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/view_ref_pair.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/constructors.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/storage.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/utility.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/string_view.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/utility.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/internal/mutex-internal.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp/component_context.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp/file_descriptor.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/component_context.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/file_descriptor.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/outgoing_directory.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/service_directory.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp/outgoing_directory.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp/service_directory.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp/termination_reason.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/component_context_provider.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/service_directory_provider.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_inspect_cpp/component.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_inspect_cpp/include/lib/sys/inspect/cpp/component.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/include/lib/sys/service/cpp/service.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/include/lib/sys/service/cpp/service_aggregate.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/include/lib/sys/service/cpp/service_handler.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/include/lib/sys/service/cpp/service_watcher.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/service.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/service_aggregate.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/service_watcher.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/flags.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/connection.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/directory.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/directory_connection.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/dirent_filler.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/file.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/file_connection.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/node.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/node_connection.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/lazy_dir.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/pseudo_dir.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/pseudo_file.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/remote_dir.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/service.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/vmo_file.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/connection.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/directory.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/directory_connection.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/dirent_filler.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/file.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/file_connection.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/node.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/node_connection.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/lazy_dir.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/pseudo_dir.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/pseudo_file.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/remote_dir.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/service.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/vmo_file.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/clock.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/exception.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/pager.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/pager.cc + ../../../fuchsia/sdk/linux/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/exception.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/hw/debug/arm64.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/hw/debug/x86.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/lookup.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/clock.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/internal/cdecls.inc +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls/scheduler.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/utc.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/exception.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/hw/debug/arm64.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/hw/debug/x86.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/lookup.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/clock.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/internal/cdecls.inc +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls/scheduler.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/utc.h +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/bits.dart +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/union.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/inspect.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/inspect/inspect.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/inspect/internal/_inspect_impl.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/inspect/node.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/inspect/property.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/bitfield64.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/block.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/heap.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/little_big_slab.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/util.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/vmo_fields.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/vmo_holder.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/vmo/vmo_writer.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/testing.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic/lib/src/view_token_pair.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic/lib/views.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/incoming.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/outgoing.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/composed_pseudo_dir.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/internal/_flags.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/pseudo_vmo_file.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/vmo_file.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/sl4f.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/audio.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/device_log.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/dump.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/exceptions.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/factory_store.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/input.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/inspect.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/modular.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/performance.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/scenic.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/setui.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/sl4f_client.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/ssh.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/storage.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/common.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/cpu_metrics.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/drm_fps.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/flutter_frame_stats.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/input_latency.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/memory_metrics.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/scenic_frame_stats.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/temperature_metrics.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics_results.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics_spec.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/time_delta.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/time_point.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/trace_importing.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/trace_model.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/webdriver.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/trace_processing.dart +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.semantics/node.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.semantics/semantics_manager.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth.oldtokens/credentials_producer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/constants.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/advertising_data.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/peer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/access.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/bootstrap.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/host_watcher.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/identity.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/peer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/address.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/appearance.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/connection_role.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/device_class.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/id.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/uuid.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2.hal/hal.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2/manager.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2/stream.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castauth/cast_auth.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castconfig/cast_config.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsetup/cast_setup.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsysteminfo/cast_system_info.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/events.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/format.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/reader.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/selector.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/annotations.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/element_manager.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.factory/factory.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/annotation.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/attachment.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/crash_reporter.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/data_provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/device_id_provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/events.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/styles.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/ring_buffer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/stream.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/stream_config_connector.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.light/light.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.power.statecontrol/admin.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hwinfo/hwinfo.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/image_pipe2.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/descriptor.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/device.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/keyboard.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/led.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/mouse.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/report.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/sensor.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/touch.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/units.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.inspect/tree.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/property_provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/directory2.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/file2.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/io.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/node-protocols.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/node2.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/rights-request.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/kernel-counter.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/kernel-debug.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/kernel-stats.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/root-job.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.namedplace/namedplace.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/misc.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/provisioning_params.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/volume_control.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/content_decryption.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/error.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/license_session.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/provisioning.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/services.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/discovery.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/images.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/player.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/publisher.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sounds/sound_player.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_consumer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/audio_core.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/usage_reporter.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mem/range.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.migration/migration.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/annotation.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/story_shell_factory.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery.ui/countdown.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery.ui/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery/factory_reset.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.scenic.scheduling/prediction_info.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.session/launcher.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/accessibility.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/audio.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/display.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/do_not_disturb.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/intl.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/privacy.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/settings.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/setup.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/types.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/secure_mem.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.test/suite.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.thermal/thermal.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity.control/control.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/activity.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/state.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/tracker.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/view.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/view_config.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.brightness/brightness.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.brightness/color_adjustment.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/tokens.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/pointer_capture.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/device_listener.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.types/types.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/focuser.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view_token.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.channel/channel.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.channelcontrol/channelcontrol.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/constants.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/context.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/cookie.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/debug.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/frame.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/navigation.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/url_request_rewrite_rules.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/access_point_provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/client_provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/zx/rights.fidl +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/executor.cc +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/executor.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/irq.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/paged_vmo.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/irq.cc +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/paged_vmo.cc +FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-default/include/lib/async-loop/default.h +FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/paged_vmo.h +FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/directory.h +FILE: ../../../fuchsia/sdk/linux/pkg/fdio/include/lib/fdio/fd.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/internal_callable_traits.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/txn_header.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/visitor.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/internal.c +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/event_sender.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/member_connector.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/service_connector.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/service_handler_base.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/include/lib/fidl/cpp/internal/message_sender.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/internal/message_sender.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/async_binding.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/async_transaction.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/async_binding.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/async_transaction.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/connect_service.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/message_storage.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/server.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/service_handler.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/sync_call.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/transaction.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/transaction.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/barrier.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/include/lib/fpromise/barrier.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/utility.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/health.cc +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/hierarchy.cc +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/health.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/hierarchy.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/inspect.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/reader.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/block.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/scanner.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/include/lib/inspect/cpp/vmo/snapshot.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/reader.cc +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/scanner.cc +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/vmo/snapshot.cc +FILE: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/include/lib/inspect/service/cpp/reader.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/include/lib/inspect/service/cpp/service.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/reader.cc +FILE: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/service.cc +FILE: ../../../fuchsia/sdk/linux/pkg/modular_cpp/agent.cc +FILE: ../../../fuchsia/sdk/linux/pkg/modular_cpp/include/lib/modular/cpp/agent.h +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/view_ref_pair.h +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/view_token_pair.h +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/view_ref_pair.cc +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/constructors.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/storage.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/utility.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/string_view.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/utility.h +FILE: ../../../fuchsia/sdk/linux/pkg/sync/include/lib/sync/internal/mutex-internal.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/component_context.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/file_descriptor.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/component_context.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/file_descriptor.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/outgoing_directory.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/include/lib/sys/cpp/service_directory.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/outgoing_directory.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/service_directory.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/termination_reason.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/component_context_provider.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/service_directory_provider.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_inspect_cpp/component.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_inspect_cpp/include/lib/sys/inspect/cpp/component.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/include/lib/sys/service/cpp/service.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/include/lib/sys/service/cpp/service_aggregate.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/include/lib/sys/service/cpp/service_handler.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/include/lib/sys/service/cpp/service_watcher.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/service.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/service_aggregate.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/service_watcher.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/flags.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/connection.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/directory.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/directory_connection.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/dirent_filler.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/file.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/file_connection.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/node.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/internal/node_connection.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/lazy_dir.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/pseudo_dir.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/pseudo_file.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/remote_dir.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/service.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/include/lib/vfs/cpp/vmo_file.h +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/connection.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/directory.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/directory_connection.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/dirent_filler.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/file.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/file_connection.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/node.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/internal/node_connection.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/lazy_dir.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/pseudo_dir.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/pseudo_file.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/remote_dir.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/service.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/vmo_file.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/clock.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/exception.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/pager.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/pager.cc +---------------------------------------------------------------------------------------------------- +Copyright 2019 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: fuchsia_sdk +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/analyzer.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/crash-reason.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/string_view.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls-next.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/testonly-syscalls.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/analyzer.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/boot/crash-reason.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/string_view.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls-next.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/testonly-syscalls.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/fuchsia_view.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/fuchsia_view.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/fuchsia_view_connection.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/fuchsia_view_controller.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/pointer_injector.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/component.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/device.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/diagnostics.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/feedback_data_provider.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/proxy.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/tiles.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/time.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/gpu_metrics.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/total_trace_wall_time.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.gesture/gesture_listener.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.a2dp/audio_mode.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.hfp/hfp.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/connection_options.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/configuration.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/pairing_options.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/security_mode.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/deprecated.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/device_name.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo/buildinfo.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/device.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/device_watcher.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/stream.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.castremotecontrol/remote_control.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsetup/server.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.castwindow/window.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.types/constants.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/constants.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/error.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/types.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/interest.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/severity.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/graphical_presenter.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.factory.wlan/iovar.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/crash_register.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/data_register.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/last_reboot_info.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.adc/adc.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/codec.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/dai.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/dai_format.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/device.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/frames.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/instance.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/mac.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/session.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.power.statecontrol/reboot_reason.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/consumer_control.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/device_ids.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input/keys.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/locking.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/debug-resource.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/hypervisor-resource.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/info-resource.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/ioport-resource.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/irq-resource.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/mexec-resource.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/mmio-resource.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/power-resource.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/smc-resource.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/vmex-resource.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.legacymetrics/event.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.legacymetrics/metrics_recorder.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.position/position.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.sensor/sensor.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.location/types.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.bootstrap/thread.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/device.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/energy_scanner.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/effects_controller.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/properties.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/types.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.target/target_discovery.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/activity_reporter.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/profile_provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.memorypressure/memorypressure.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.metrics/metric_event_logger.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/session_restart_controller.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.interfaces/interfaces.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.routes/routes.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net/socket.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.process.lifecycle/lifecycle.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings.policy/error.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings.policy/volume_policy.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/factory_reset.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/input.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/light.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/night_mode.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/events.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/keyboard.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/modifiers.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer.augment/augment.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/mouse.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/state.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/touch.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/view.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/config.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/device.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/event.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/display_backlight.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view_ref.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view_ref_focused.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view_ref_installed.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ultrasound/factory.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.update/commit.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.update/update.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.url/url.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/auth.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/bootstrap.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/common.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/weavestack.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/reason_code.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/status_code.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedclient/wlan_deprecated_client.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedconfiguration/wlan_deprecated_configuration.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/zx/zx_common.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/handle_close_many.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/trace.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/internal/bitset.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/internal/natural_types_header.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/internal/natural_types_implementation.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/types.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/arena.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/client_base.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/arena.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/client.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/client_base.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/decoded_value.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/envelope.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/extract_resource_on_destruction.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/message.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/object_view.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/status.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/server.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/compiler.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/result.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/result.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/commands_sizing.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/commands_sizing.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/array.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/bit.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/array.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/bit.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/memory.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/source_location.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/version.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/msi.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/result.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/stream.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/msi.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/stream.cc + ../../../fuchsia/sdk/linux/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/analyzer.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/crash-reason.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/string_view.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/syscalls-next.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/testonly-syscalls.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/analyzer.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/boot/crash-reason.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/string_view.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/syscalls-next.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/testonly-syscalls.h +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/fuchsia_view.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/fuchsia_view.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/fuchsia_view_connection.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/fuchsia_view_controller.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/pointer_injector.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/component.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/device.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/diagnostics.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/feedback_data_provider.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/proxy.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/tiles.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/time.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/gpu_metrics.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/total_trace_wall_time.dart +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.gesture/gesture_listener.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.a2dp/audio_mode.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.hfp/hfp.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/connection_options.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/configuration.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/pairing_options.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/security_mode.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/deprecated.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/device_name.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo/buildinfo.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/device.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/device_watcher.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/stream.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castremotecontrol/remote_control.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsetup/server.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castwindow/window.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.types/constants.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/constants.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/error.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/types.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/interest.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/severity.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/graphical_presenter.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.factory.wlan/iovar.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/crash_register.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/data_register.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/last_reboot_info.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.adc/adc.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/codec.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/dai.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/dai_format.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/device.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/frames.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/instance.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/mac.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/session.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.power.statecontrol/reboot_reason.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/consumer_control.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/device_ids.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input/keys.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/locking.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/debug-resource.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/hypervisor-resource.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/info-resource.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/ioport-resource.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/irq-resource.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/mexec-resource.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/mmio-resource.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/power-resource.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/smc-resource.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/vmex-resource.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.legacymetrics/event.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.legacymetrics/metrics_recorder.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.position/position.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.sensor/sensor.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location/types.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.bootstrap/thread.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/device.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/energy_scanner.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/effects_controller.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/properties.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/types.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.target/target_discovery.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/activity_reporter.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/profile_provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.memorypressure/memorypressure.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.metrics/metric_event_logger.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/session_restart_controller.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.interfaces/interfaces.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.routes/routes.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net/socket.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process.lifecycle/lifecycle.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings.policy/error.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings.policy/volume_policy.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/factory_reset.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/input.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/light.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/night_mode.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/events.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/keyboard.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/modifiers.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer.augment/augment.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/mouse.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/state.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/touch.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/view.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/config.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/device.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/event.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/display_backlight.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view_ref.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view_ref_focused.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/view_ref_installed.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ultrasound/factory.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update/commit.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update/update.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.url/url.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/auth.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/bootstrap.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/common.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/weavestack.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/reason_code.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/status_code.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedclient/wlan_deprecated_client.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedconfiguration/wlan_deprecated_configuration.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/zx/zx_common.fidl +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/handle_close_many.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/trace.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/internal/bitset.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/internal/natural_types_header.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/internal/natural_types_implementation.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/include/lib/fidl/cpp/types.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/arena.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/client_base.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/arena.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/client.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/client_base.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/decoded_value.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/envelope.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/extract_resource_on_destruction.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/message.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/object_view.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/status.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/server.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/compiler.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/result.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/result.h +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/commands_sizing.cc +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/commands_sizing.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/array.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/bit.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/array.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/bit.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/memory.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/source_location.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/version.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/msi.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/result.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/include/lib/zx/stream.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/msi.cc +FILE: ../../../fuchsia/sdk/linux/pkg/zx/stream.cc +---------------------------------------------------------------------------------------------------- +Copyright 2020 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: fuchsia_sdk +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/component_context.dart + ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/component_context.dart +---------------------------------------------------------------------------------------------------- +Copyright 2021 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: fuchsia_sdk +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/availability.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/availability.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/codegen_common.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/wire_format.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/reader.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/reader/diagnostic_config.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/reader/diagnostic_data.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/reader/reader.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic/lib/src/scenic_context.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/focus_state.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/fuchsia_views_service.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/dart_vm.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/remote_dir.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/camera_metrics.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/flatland_latency.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/virtual_camera.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.virtualkeyboard/virtual_keyboard.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.audio.effects/creator.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.audio.effects/processor.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/client.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/constants.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/server.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/types.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/specs.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/value.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/capability.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/child.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/collection.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/component.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/config.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/environment.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/events.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/expose.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/offer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/program.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/relative_refs.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/types.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/use.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.test/realm_builder.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/binder.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/realm.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics.types/component.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/log_settings.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.driver.test/realm.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/data_provider_controller.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.agis/agis.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/signal_processing.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/codec_connector.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/dai_connector.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/health.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/port.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.radar/radar.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.virtualkeyboard/virtual_keyboard.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input/keymap.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/calendar.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/time_zones.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/inotify.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/rights-abilities.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/cpu-resource.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/calibrator.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/sensor.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/types.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/counters.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/audio_format.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/compression.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/encryption.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/media_format.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/video_format.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.profile/profile.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/keyboard.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.thermal/client_state.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/allocator.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/flatland.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.observation.geometry/watcher.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/flatland_tokens.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.common/wlan_common.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/constants.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/rsn.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/types.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/wire_format_metadata.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/internal/natural_types.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/natural_types.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/any_error_in.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/client.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/client_details.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/make_response_context.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/natural_client_base.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/unified_messaging.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/client_details.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/container_utils.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/helper_macros.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/node_utils.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/pointer_traits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/wavl_tree.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/wavl_tree_internal.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/server_details.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/synchronization_checker.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/transport.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/transport_channel.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/soft_migration.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_messaging.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_types.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/message_storage.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/status.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/transport.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/transport_channel.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/view_creation_tokens.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/view_identity.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/view_creation_tokens.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/view_identity.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/algorithm.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/atomic.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/cstddef.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/functional.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/algorithm.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/atomic.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/erase.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/exception.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/functional.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/span.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/tuple.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/type_traits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/iterator.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/span.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/tuple.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/internal/errors.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/internal/local_component_runner.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/internal/realm.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/realm_builder.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/realm_builder_types.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/scoped_child.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/syslog_structured_backend/fuchsia_syslog.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/syslog_structured_backend/include/lib/syslog/structured_backend/cpp/fuchsia_syslog.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/syslog_structured_backend/include/lib/syslog/structured_backend/fuchsia_syslog.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/zx/status_string.cc + ../../../fuchsia/sdk/linux/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/availability.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/availability.h +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/codegen_common.dart +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/wire_format.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/reader.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/reader/diagnostic_config.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/reader/diagnostic_data.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/lib/src/reader/reader.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic/lib/src/scenic_context.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/focus_state.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/lib/src/fuchsia_views_service.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/lib/src/dart_vm.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/lib/src/remote_dir.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/camera_metrics.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/flatland_latency.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/virtual_camera.dart +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.virtualkeyboard/virtual_keyboard.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.audio.effects/creator.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.audio.effects/processor.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/client.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/constants.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/server.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/types.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/specs.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/value.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/capability.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/child.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/collection.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/component.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/config.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/environment.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/events.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/expose.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/offer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/program.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/relative_refs.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/types.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/use.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.test/realm_builder.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/binder.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/realm.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics.types/component.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/log_settings.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.driver.test/realm.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/data_provider_controller.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.agis/agis.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/signal_processing.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/codec_connector.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/dai_connector.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/health.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/port.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.radar/radar.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.virtualkeyboard/virtual_keyboard.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input/keymap.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/calendar.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/time_zones.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/inotify.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/rights-abilities.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/cpu-resource.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/calibrator.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/sensor.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/types.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/counters.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/audio_format.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/compression.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/encryption.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/media_format.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/video_format.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.profile/profile.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/keyboard.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.thermal/client_state.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/allocator.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/flatland.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.observation.geometry/watcher.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/flatland_tokens.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.common/wlan_common.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/constants.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/rsn.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/types.fidl +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/wire_format_metadata.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/internal/natural_types.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/natural_types.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/any_error_in.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/client.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/client_details.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/make_response_context.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/natural_client_base.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/unified_messaging.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/client_details.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/container_utils.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/helper_macros.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/node_utils.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/pointer_traits.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/wavl_tree.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/intrusive_container/wavl_tree_internal.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/server_details.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/synchronization_checker.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/transport.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/transport_channel.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/soft_migration.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_messaging.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_types.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/message_storage.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/status.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/transport.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/transport_channel.cc +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/view_creation_tokens.h +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/include/lib/ui/scenic/cpp/view_identity.h +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/view_creation_tokens.cc +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/view_identity.cc +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/algorithm.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/atomic.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/cstddef.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/functional.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/algorithm.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/atomic.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/erase.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/exception.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/functional.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/span.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/tuple.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/type_traits.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/iterator.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/span.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/tuple.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/internal/errors.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/internal/local_component_runner.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/internal/realm.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/realm_builder.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/realm_builder_types.cc +FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/scoped_child.cc +FILE: ../../../fuchsia/sdk/linux/pkg/syslog_structured_backend/fuchsia_syslog.cc +FILE: ../../../fuchsia/sdk/linux/pkg/syslog_structured_backend/include/lib/syslog/structured_backend/cpp/fuchsia_syslog.h +FILE: ../../../fuchsia/sdk/linux/pkg/syslog_structured_backend/include/lib/syslog/structured_backend/fuchsia_syslog.h +FILE: ../../../fuchsia/sdk/linux/pkg/zx/status_string.cc +---------------------------------------------------------------------------------------------------- +Copyright 2021 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: fuchsia_sdk +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/driver-config.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/errors.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/boot/driver-config.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/errors.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/optional_nullable.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/realm_builder.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/error.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/internal/local_component.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/internal/local_component_runner.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/local_component_handles.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/realm_builder.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_view/lib/src/view_creation_token_pair.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/fuchsia_view/lib/tokens.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/performance_publish.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/power_metrics.dart + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.semantics/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.audio.effects/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.fastpair/provider.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/pairing.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo.test/buildinfotest.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsetup/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/resolved.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/component.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/package.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/resolver.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.debugdata/publisher.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/connector.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/dynamics.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/equalizer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/gain.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/vendor_specific.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/diagnostics.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.power.statecontrol/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.input/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.legacymetrics/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.thread/dataset.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.thread/meshcop.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.thread/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan/lowpan.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.mem/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/common.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/host_name_resolver.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/host_name_subscriber.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/proxy_host_publisher.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/service_instance_publisher.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/service_instance_resolver.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/service_subscriber.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.reachability/reachability.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.net/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.clientlevel/clientlevel.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.systemmode/systemmode.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.process/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery.ui/progress.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings.policy/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.thermal/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.perfetto/consumer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.perfetto/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.perfetto/producer.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.brightness/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/screen_capture.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/screenshot.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.observation.geometry/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/media_buttons.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/mouse.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/registry.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/text.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/touch.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.scene/controller.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.scene/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.unknown/unknown.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.config/config.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.update/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.version/version.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.common/driver_features.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.common/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/fields.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/fidl/zx/overview.fidl + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/sequence_checker.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async-cpp/sequence_checker.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/sequence_id.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/cpp/transaction_header.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/cpp/transport_err.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/cpp/wire_format_metadata.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/unknown_interactions_table.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/unknown_interactions_hlcpp.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/unknown_interactions_table.c + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/unknown_interactions_hlcpp.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/box.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/internal/transport_err.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/natural_coding_traits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/natural_decoder.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/natural_encoder.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/wire_natural_conversions.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/natural_coding_traits.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/natural_decoder.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/natural_encoder.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/natural_types.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_hlcpp_conversion/include/lib/fidl/cpp/hlcpp_conversion.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_natural_ostream/include/lib/fidl/cpp/natural_ostream.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/any_error_in.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/channel.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/channel_endpoint_conversions.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/natural_message_encoder.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/thenable.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/unified_messaging_declarations.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/internal/natural_message_encoder.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/client_details.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/coding_errors.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/display_error.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/base_wire_result.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/channel.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/coding_errors.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/incoming_message.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/arrow.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/client_continuation.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/coding_config.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/display_error.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/endpoints.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/make_response_context.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/thenable.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/transport_err.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/optional.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/outgoing_message.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/unknown_interaction_handler.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/unknown_interactions.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_coding_common.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_coding_traits.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_decoder.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_encoder.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_messaging_declarations.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/incoming_message.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/outgoing_message.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/thenable.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/unknown_interactions.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_coding_traits.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_decoder.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_encoder.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_messaging.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_types.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/inline_any.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/inline_any.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect/client.shard.cml + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/include/lib/inspect/service/cpp/tree_handler_settings.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp_testing/fake_flatland.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/scenic_cpp_testing/fake_flatland_types.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/linkage.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/variant.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys/component/realm_builder_absolute.shard.cml + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys/component/realm_builder_base.shard.cml + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/internal/convert.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/syslog/client.shard.cml + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/syslog/offer.shard.cml + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/syslog/use.shard.cml + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/arm-neon.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/generic-simd.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/scalar.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/x86-avx2.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/x86-ssse3.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/utf-utils.h + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/utf-utils/internal/scalar.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/utf-utils/utf-utils.cc + ../../../fuchsia/sdk/linux/LICENSE +ORIGIN: ../../../fuchsia/sdk/linux/pkg/vulkan/client.shard.cml + ../../../fuchsia/sdk/linux/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/boot/driver-config.h +FILE: ../../../fuchsia/sdk/linux/arch/arm64/sysroot/include/zircon/errors.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/boot/driver-config.h +FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/include/zircon/errors.h +FILE: ../../../fuchsia/sdk/linux/dart/fidl/lib/src/optional_nullable.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/realm_builder.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/error.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/internal/local_component.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/internal/local_component_runner.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/local_component_handles.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/lib/src/realm_builder.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_view/lib/src/view_creation_token_pair.dart +FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_view/lib/tokens.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/performance_publish.dart +FILE: ../../../fuchsia/sdk/linux/dart/sl4f/lib/src/trace_processing/metrics/power_metrics.dart +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.semantics/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.audio.effects/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.fastpair/provider.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/pairing.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo.test/buildinfotest.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsetup/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/resolved.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/component.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/package.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/resolver.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.debugdata/publisher.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/connector.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/dynamics.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/equalizer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/gain.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/vendor_specific.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/diagnostics.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.power.statecontrol/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.legacymetrics/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.thread/dataset.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.thread/meshcop.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.thread/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan/lowpan.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mem/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/common.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/host_name_resolver.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/host_name_subscriber.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/proxy_host_publisher.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/service_instance_publisher.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/service_instance_resolver.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/service_subscriber.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.reachability/reachability.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.clientlevel/clientlevel.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.systemmode/systemmode.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery.ui/progress.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings.policy/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.thermal/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.perfetto/consumer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.perfetto/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.perfetto/producer.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.brightness/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/screen_capture.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/screenshot.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.observation.geometry/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/media_buttons.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/mouse.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/registry.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/text.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/touch.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.scene/controller.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.scene/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.unknown/unknown.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.config/config.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.version/version.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.common/driver_features.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.common/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/fields.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/overview.fidl +FILE: ../../../fuchsia/sdk/linux/fidl/zx/overview.fidl +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/include/lib/async/cpp/sequence_checker.h +FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/sequence_checker.cc +FILE: ../../../fuchsia/sdk/linux/pkg/async/include/lib/async/sequence_id.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/cpp/transaction_header.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/cpp/transport_err.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/include/lib/fidl/cpp/wire_format_metadata.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/internal/unknown_interactions_table.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/include/lib/fidl/cpp/unknown_interactions_hlcpp.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/internal/unknown_interactions_table.c +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/unknown_interactions_hlcpp.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/box.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/internal/transport_err.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/natural_coding_traits.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/natural_decoder.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/natural_encoder.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/include/lib/fidl/cpp/wire_natural_conversions.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/natural_coding_traits.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/natural_decoder.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/natural_encoder.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/natural_types.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_hlcpp_conversion/include/lib/fidl/cpp/hlcpp_conversion.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_natural_ostream/include/lib/fidl/cpp/natural_ostream.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/any_error_in.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/channel.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/channel_endpoint_conversions.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/natural_message_encoder.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/internal/thenable.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/include/lib/fidl/cpp/unified_messaging_declarations.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/internal/natural_message_encoder.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/client_details.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/coding_errors.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/display_error.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/base_wire_result.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/channel.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/coding_errors.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/incoming_message.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/arrow.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/client_continuation.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/coding_config.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/display_error.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/endpoints.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/make_response_context.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/thenable.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/internal/transport_err.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/optional.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/outgoing_message.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/unknown_interaction_handler.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/unknown_interactions.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_coding_common.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_coding_traits.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_decoder.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_encoder.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/include/lib/fidl/cpp/wire/wire_messaging_declarations.h +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/incoming_message.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/outgoing_message.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/thenable.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/unknown_interactions.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_coding_traits.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_decoder.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_encoder.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_messaging.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/wire_types.cc +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/inline_any.h +FILE: ../../../fuchsia/sdk/linux/pkg/fit/include/lib/fit/internal/inline_any.h +FILE: ../../../fuchsia/sdk/linux/pkg/inspect/client.shard.cml +FILE: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/include/lib/inspect/service/cpp/tree_handler_settings.h +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp_testing/fake_flatland.cc +FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp_testing/fake_flatland_types.cc +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/linkage.h +FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/include/lib/stdcompat/internal/variant.h +FILE: ../../../fuchsia/sdk/linux/pkg/sys/component/realm_builder_absolute.shard.cml +FILE: ../../../fuchsia/sdk/linux/pkg/sys/component/realm_builder_base.shard.cml +FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/internal/convert.cc +FILE: ../../../fuchsia/sdk/linux/pkg/syslog/client.shard.cml +FILE: ../../../fuchsia/sdk/linux/pkg/syslog/offer.shard.cml +FILE: ../../../fuchsia/sdk/linux/pkg/syslog/use.shard.cml +FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/arm-neon.h +FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/generic-simd.h +FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/scalar.h +FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/x86-avx2.h +FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/internal/x86-ssse3.h +FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/include/lib/utf-utils/utf-utils.h +FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/internal/scalar.cc +FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/utf-utils.cc +FILE: ../../../fuchsia/sdk/linux/pkg/vulkan/client.shard.cml +---------------------------------------------------------------------------------------------------- +Copyright 2022 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== LIBRARY: fuchsia_sdk ORIGIN: ../../../fuchsia/sdk/linux/COPYRIGHT.musl TYPE: LicenseType.mit -FILE: ../../../fuchsia/sdk/linux/.versions/core.cipd_version FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/VkLayer_image_pipe_swapchain.so FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/VkLayer_khronos_validation.so FILE: ../../../fuchsia/sdk/linux/arch/arm64/dist/libasync-default.so @@ -3603,228 +4424,19 @@ FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libm.so FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libpthread.so FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/librt.so FILE: ../../../fuchsia/sdk/linux/arch/x64/sysroot/lib/libzircon.so -FILE: ../../../fuchsia/sdk/linux/dart/fidl/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_component_test/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_inspect/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_logger/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_scenic_flutter/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_services/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_vfs/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/fuchsia_view/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/sl4f/meta.json -FILE: ../../../fuchsia/sdk/linux/dart/zircon/meta.json +FILE: ../../../fuchsia/sdk/linux/dart/zircon/lib/src/fakes/handle_disposition.dart FILE: ../../../fuchsia/sdk/linux/data/config/symbol-index/config.json -FILE: ../../../fuchsia/sdk/linux/data/config/symbol-index/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.gesture/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.semantics/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.accessibility.virtualkeyboard/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.audio.effects/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth.oldtokens/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.auth/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.a2dp/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.fastpair/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.gatt2/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.hfp/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.le/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth.sys/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.bluetooth/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.buildinfo/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2.hal/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera2/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.camera3/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castauth/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castconfig/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castremotecontrol/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsetup/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castsysteminfo/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.castwindow/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.config/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.decl/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.resolution/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.runner/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component.types/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.component/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.data/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.debugdata/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.developer.tiles/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics.types/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.diagnostics/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.driver.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.element/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.factory.wlan/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.factory/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.feedback/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.fonts/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.agis/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.gpu.magma/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.adc/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio.signalprocessing/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.audio/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.light/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.network/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.power.statecontrol/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hardware.radar/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.hwinfo/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.images/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.report/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input.virtualkeyboard/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.input/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.inspect/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.intl/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.io/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.kernel/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ldsvc/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.legacymetrics/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lightsensor/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.namedplace/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.position/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location.sensor/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.location/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.logger/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.bootstrap/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.device/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan.thread/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.lowpan/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.math/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.audio/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.drm/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.playback/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sessions2/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.sounds/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media.target/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.media/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediacodec/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mediastreams/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.mem/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.memorypressure/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.metrics/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.migration/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.modular/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.http/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.interfaces/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.mdns/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.reachability/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net.routes/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.net/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.clientlevel/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.profile/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.power.systemmode/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process.lifecycle/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.process/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery.ui/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.recovery/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.scenic.scheduling/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.session/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings.policy/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.settings/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sys/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysinfo/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.sysmem/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.test/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.thermal/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.perfetto/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.tracing.provider/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity.control/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.activity/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.app/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.brightness/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.composition/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.gfx/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.input3/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.observation.geometry/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer.augment/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointer/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.pointerinjector/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.policy/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.scenic/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.input/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.test.scene/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.types/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ui.views/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.ultrasound/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.unknown/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.channel/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.channelcontrol/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update.config/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.update/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.url/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.version/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.weave/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.web/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.common/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.ieee80211/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.policy/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedclient/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/fuchsia.wlan.product.deprecatedconfiguration/meta.json -FILE: ../../../fuchsia/sdk/linux/fidl/zx/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-default/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-default/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop-testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-loop/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async-testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/async/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fdio/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_base/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_base_v2/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_hlcpp_conversion/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_natural_ostream/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_sync/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_v2/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fidl_cpp_wire/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fit-promise/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/fit/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/images_cpp/meta.json FILE: ../../../fuchsia/sdk/linux/pkg/inspect/inspect.json -FILE: ../../../fuchsia/sdk/linux/pkg/inspect/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/inspect_service_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/media_cpp_no_converters/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/memfs/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/modular_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/scenic_cpp_testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/stdcompat/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/svc/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sync/meta.json FILE: ../../../fuchsia/sdk/linux/pkg/sys/component/realm_builder_shard_sdk.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_component_cpp_testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_cpp_testing/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_inspect_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sys_service_cpp/meta.json FILE: ../../../fuchsia/sdk/linux/pkg/syslog/client.shard.cmx -FILE: ../../../fuchsia/sdk/linux/pkg/syslog/meta.json FILE: ../../../fuchsia/sdk/linux/pkg/syslog/syslog.json -FILE: ../../../fuchsia/sdk/linux/pkg/syslog_structured_backend/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/sysroot/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/trace-engine/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/trace-provider-so/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/trace/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/utf-utils/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/vfs_cpp/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/vulkan/meta.json FILE: ../../../fuchsia/sdk/linux/pkg/vulkan/vulkan.json FILE: ../../../fuchsia/sdk/linux/pkg/vulkan_layers/data/vulkan/explicit_layer.d/VkLayer_image_pipe_swapchain.json FILE: ../../../fuchsia/sdk/linux/pkg/vulkan_layers/data/vulkan/explicit_layer.d/VkLayer_khronos_validation.json -FILE: ../../../fuchsia/sdk/linux/pkg/vulkan_layers/meta.json -FILE: ../../../fuchsia/sdk/linux/pkg/zx/meta.json -FILE: ../../../fuchsia/sdk/linux/version_history.json ---------------------------------------------------------------------------------------------------- musl as a whole is licensed under the following standard MIT license: + Copyright © 2005-2014 Rich Felker, et al. Permission is hereby granted, free of charge, to any person obtaining @@ -3846,6 +4458,7 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + Authors/contributors include: Alex Dowad @@ -3951,4 +4564,5 @@ negated the permissions granted in the license. In the spirit of permissive licensing, and of not having licensing issues being an obstacle to adoption, that text has been removed. ==================================================================================================== -Total license count: 15 + +Total license count: 14 diff --git a/ci/licenses_golden/licenses_gpu b/ci/licenses_golden/licenses_gpu index a1f8f8e87988c..dcffbcface07a 100644 --- a/ci/licenses_golden/licenses_gpu +++ b/ci/licenses_golden/licenses_gpu @@ -1,14 +1,9 @@ Signature: ffe64a3daaf0ad982854594ad155dd56 -UNUSED LICENSES: - - -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -USED LICENSES: - ==================================================================================================== -LIBRARY: gpu -ORIGIN: ../../../flutter/LICENSE +LIBRARY: engine +ORIGIN: ../../../gpu/GLES2/gl2chromium.h + ../../../gpu/LICENSE +ORIGIN: ../../../gpu/command_buffer/client/gles2_c_lib_export.h + ../../../gpu/LICENSE TYPE: LicenseType.bsd FILE: ../../../gpu/GLES2/gl2chromium.h FILE: ../../../gpu/command_buffer/client/gles2_c_lib_export.h @@ -39,4 +34,5 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== + Total license count: 1 diff --git a/ci/licenses_golden/licenses_skia b/ci/licenses_golden/licenses_skia index 15baf889955fc..676d67335d048 100644 --- a/ci/licenses_golden/licenses_skia +++ b/ci/licenses_golden/licenses_skia @@ -1,184 +1,18 @@ -Signature: c0a052c343282adbf0b3869c095ba4cd - -UNUSED LICENSES: - - -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -USED LICENSES: - -==================================================================================================== -LIBRARY: etc1 -ORIGIN: ../../../third_party/skia/third_party/etc1/LICENSE -TYPE: LicenseType.apache -FILE: ../../../third_party/skia/third_party/etc1/BUILD.bazel ----------------------------------------------------------------------------------------------------- -Apache License - -Version 2.0, January 2004 - -http://www.apache.org/licenses - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the -copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other -entities that control, are controlled by, or are under common control with -that entity. For the purposes of this definition, "control" means (i) the -power, direct or indirect, to cause the direction or management of such -entity, whether by contract or otherwise, or (ii) ownership of fifty -percent (50%) or more of the outstanding shares, or (iii) beneficial -ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, -including but not limited to software source code, documentation -source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation -or translation of a Source form, including but not limited to compiled -object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object -form, made available under the License, as indicated by a copyright -notice that is included in or attached to the work (an example is -provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object -form, that is based on (or derived from) the Work and for which the -editorial revisions, annotations, elaborations, or other modifications -represent, as a whole, an original work of authorship. For the purposes -of this License, Derivative Works shall not include works that remain -separable from, or merely link (or bind by name) to the interfaces of, -the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original -version of the Work and any modifications or additions to that Work or -Derivative Works thereof, that is intentionally submitted to Licensor -for inclusion in the Work by the copyright owner or by an individual or -Legal Entity authorized to submit on behalf of the copyright owner. For -the purposes of this definition, "submitted" means any form of electronic, -verbal, or written communication sent to the Licensor or its -representatives, including but not limited to communication on electronic -mailing lists, source code control systems, and issue tracking systems that -are managed by, or on behalf of, the Licensor for the purpose of discussing -and improving the Work, but excluding communication that is conspicuously -marked or otherwise designated in writing by the copyright owner as "Not -a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on -behalf of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this -License, each Contributor hereby grants to You a perpetual, worldwide, -non-exclusive, no-charge, royalty-free, irrevocable copyright license to -reproduce, prepare Derivative Works of, publicly display, publicly perform, -sublicense, and distribute the Work and such Derivative Works in Source or -Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this -License, each Contributor hereby grants to You a perpetual, worldwide, -non-exclusive, no-charge, royalty-free, irrevocable (except as stated in -this section) patent license to make, have made, use, offer to sell, sell, -import, and otherwise transfer the Work, where such license applies only to -those patent claims licensable by such Contributor that are necessarily -infringed by their Contribution(s) alone or by combination of their -Contribution(s) with the Work to which such Contribution(s) was submitted. -If You institute patent litigation against any entity (including a cross-claim -or counterclaim in a lawsuit) alleging that the Work or a Contribution -incorporated within the Work constitutes direct or contributory patent -infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or -Derivative Works thereof in any medium, with or without modifications, and -in Source or Object form, provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that -You changed the files; and -You must retain, in the Source form of any Derivative Works that You -distribute, all copyright, patent, trademark, and attribution notices -from the Source form of the Work, excluding those notices that do not -pertain to any part of the Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, -then any Derivative Works that You distribute must include a readable -copy of the attribution notices contained within such NOTICE file, excluding -those notices that do not pertain to any part of the Derivative Works, in -at least one of the following places: within a NOTICE text file distributed -as part of the Derivative Works; within the Source form or documentation, if -provided along with the Derivative Works; or, within a display generated by -the Derivative Works, if and wherever such third-party notices normally -appear. The contents of the NOTICE file are for informational purposes -only and do not modify the License. You may add Your own attribution -notices within Derivative Works that You distribute, alongside or as -an addendum to the NOTICE text from the Work, provided that such additional -attribution notices cannot be construed as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a -whole, provided Your use, reproduction, and distribution of the Work otherwise -complies with the conditions stated in this License. -5. Submission of Contributions. Unless You explicitly state otherwise, any -Contribution intentionally submitted for inclusion in the Work by You to the -Licensor shall be under the terms and conditions of this License, without any -additional terms or conditions. Notwithstanding the above, nothing herein -shall supersede or modify the terms of any separate license agreement you -may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, -trademarks, service marks, or product names of the Licensor, except as -required for reasonable and customary use in describing the origin of the -Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to -in writing, Licensor provides the Work (and each Contributor provides its -Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF -ANY KIND, either express or implied, including, without limitation, any -warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or -FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining -the appropriateness of using or redistributing the Work and assume any risks -associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in -tort (including negligence), contract, or otherwise, unless required by -applicable law (such as deliberate and grossly negligent acts) or agreed to -in writing, shall any Contributor be liable to You for damages, including -any direct, indirect, special, incidental, or consequential damages of any -character arising as a result of this License or out of the use or inability -to use the Work (including but not limited to damages for loss of goodwill, -work stoppage, computer failure or malfunction, or any and all other -commercial damages or losses), even if such Contributor has been advised -of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the -Work or Derivative Works thereof, You may choose to offer, and charge a -fee for, acceptance of support, warranty, indemnity, or other liability -obligations and/or rights consistent with this License. However, in accepting -such obligations, You may act only on Your own behalf and on Your sole -responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any -liability incurred by, or claims asserted against, such Contributor by -reason of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS -==================================================================================================== +Signature: 72decec94e29d73f575ce3bd17f2d6f0 ==================================================================================================== LIBRARY: etc1 LIBRARY: vulkan -ORIGIN: ../../../flutter/third_party/txt/LICENSE +ORIGIN: Apache-2.0 referenced by ../../../third_party/skia/include/third_party/vulkan/vulkan/vk_platform.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/skia/include/third_party/vulkan/vulkan/vulkan.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/skia/include/third_party/vulkan/vulkan/vulkan_android.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/skia/include/third_party/vulkan/vulkan/vulkan_core.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/skia/include/third_party/vulkan/vulkan/vulkan_ios.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/skia/include/third_party/vulkan/vulkan/vulkan_macos.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/skia/include/third_party/vulkan/vulkan/vulkan_win32.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/skia/include/third_party/vulkan/vulkan/vulkan_xcb.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/skia/third_party/etc1/etc1.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/skia/third_party/etc1/etc1.h TYPE: LicenseType.apache FILE: ../../../third_party/skia/include/third_party/vulkan/vulkan/vk_platform.h FILE: ../../../third_party/skia/include/third_party/vulkan/vulkan/vulkan.h @@ -193,7 +27,7 @@ FILE: ../../../third_party/skia/third_party/etc1/etc1.h ---------------------------------------------------------------------------------------------------- Apache License Version 2.0, January 2004 -http://www.apache.org/licenses +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -433,15 +267,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -LIBRARY: vulkanmemoryallocator ORIGIN: ../../../third_party/skia/modules/canvaskit/npm_build/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/modules/canvaskit/npm_build/example.html FILE: ../../../third_party/skia/modules/canvaskit/npm_build/extra.html FILE: ../../../third_party/skia/modules/canvaskit/npm_build/multicanvas.html FILE: ../../../third_party/skia/modules/canvaskit/npm_build/node.example.js FILE: ../../../third_party/skia/modules/canvaskit/npm_build/package-lock.json -FILE: ../../../third_party/skia/modules/canvaskit/npm_build/package.json FILE: ../../../third_party/skia/modules/canvaskit/npm_build/paragraphs.html FILE: ../../../third_party/skia/modules/canvaskit/npm_build/shaping.html FILE: ../../../third_party/skia/modules/canvaskit/npm_build/textapi_utils.js @@ -449,11 +280,6 @@ FILE: ../../../third_party/skia/modules/canvaskit/npm_build/types/canvaskit-wasm FILE: ../../../third_party/skia/modules/canvaskit/npm_build/types/index.d.ts FILE: ../../../third_party/skia/modules/canvaskit/npm_build/types/tsconfig.json FILE: ../../../third_party/skia/modules/canvaskit/npm_build/types/tslint.json -FILE: ../../../third_party/skia/modules/pathkit/npm-asmjs/example.html -FILE: ../../../third_party/skia/modules/pathkit/npm-asmjs/package.json -FILE: ../../../third_party/skia/modules/pathkit/npm-wasm/example.html -FILE: ../../../third_party/skia/modules/pathkit/npm-wasm/package.json -FILE: ../../../third_party/skia/third_party/vulkanmemoryallocator/BUILD.bazel ---------------------------------------------------------------------------------------------------- Copyright (c) 2011 Google Inc. All rights reserved. @@ -485,426 +311,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== +LIBRARY: libmicrohttpd LIBRARY: skia ORIGIN: ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/.bazelproject -FILE: ../../../third_party/skia/.bazelrc -FILE: ../../../third_party/skia/.bazelversion -FILE: ../../../third_party/skia/.clang-tidy -FILE: ../../../third_party/skia/.vpython -FILE: ../../../third_party/skia/BUILD.bazel -FILE: ../../../third_party/skia/CQ_COMMITTERS -FILE: ../../../third_party/skia/DEPS -FILE: ../../../third_party/skia/DIR_METADATA -FILE: ../../../third_party/skia/OWNERS.android -FILE: ../../../third_party/skia/WORKSPACE.bazel -FILE: ../../../third_party/skia/bench/microbench.json -FILE: ../../../third_party/skia/bench/skpbench.json -FILE: ../../../third_party/skia/defines.bzl -FILE: ../../../third_party/skia/demos.skia.org/demos/hello_world/index.html -FILE: ../../../third_party/skia/demos.skia.org/demos/image_decode_web_worker/index.html -FILE: ../../../third_party/skia/demos.skia.org/demos/image_decode_web_worker/main.js -FILE: ../../../third_party/skia/demos.skia.org/demos/image_decode_web_worker/worker.js -FILE: ../../../third_party/skia/demos.skia.org/demos/image_sampling/index.html -FILE: ../../../third_party/skia/demos.skia.org/demos/path_performance/garbage.svg -FILE: ../../../third_party/skia/demos.skia.org/demos/path_performance/index.html -FILE: ../../../third_party/skia/demos.skia.org/demos/path_performance/main.js -FILE: ../../../third_party/skia/demos.skia.org/demos/path_performance/shared.js -FILE: ../../../third_party/skia/demos.skia.org/demos/path_performance/worker.js -FILE: ../../../third_party/skia/demos.skia.org/demos/sampling_types/index.html -FILE: ../../../third_party/skia/demos.skia.org/demos/spreadsheet/index.html -FILE: ../../../third_party/skia/demos.skia.org/demos/textedit/index.html -FILE: ../../../third_party/skia/demos.skia.org/demos/textedit/spiralshader.js -FILE: ../../../third_party/skia/demos.skia.org/demos/textedit/textapi_utils.js -FILE: ../../../third_party/skia/demos.skia.org/demos/textures/index.html -FILE: ../../../third_party/skia/demos.skia.org/demos/textures/testimg.png -FILE: ../../../third_party/skia/demos.skia.org/demos/up_scaling/index.html -FILE: ../../../third_party/skia/demos.skia.org/demos/web_worker/index.html -FILE: ../../../third_party/skia/demos.skia.org/demos/web_worker/main.js -FILE: ../../../third_party/skia/demos.skia.org/demos/web_worker/shared.js -FILE: ../../../third_party/skia/demos.skia.org/demos/web_worker/worker.js -FILE: ../../../third_party/skia/demos.skia.org/demos/webgpu/index.html -FILE: ../../../third_party/skia/docker/binary-size/Dockerfile -FILE: ../../../third_party/skia/docker/cmake-release/Dockerfile -FILE: ../../../third_party/skia/docker/skia-build-tools/Dockerfile -FILE: ../../../third_party/skia/docker/skia-release/Dockerfile -FILE: ../../../third_party/skia/docker/skia-wasm-release/Dockerfile -FILE: ../../../third_party/skia/docker/skia-with-swift-shader-base/Dockerfile -FILE: ../../../third_party/skia/docker/skia-with-swift-shader-base/build-with-swift-shader-and-run -FILE: ../../../third_party/skia/example/BUILD.bazel -FILE: ../../../third_party/skia/experimental/bazel_test/BUILD.bazel -FILE: ../../../third_party/skia/experimental/bazel_test/base/BUILD.bazel -FILE: ../../../third_party/skia/experimental/bazel_test/client/BUILD.bazel -FILE: ../../../third_party/skia/experimental/bazel_test/core/BUILD.bazel -FILE: ../../../third_party/skia/experimental/docs/animationCommon.js -FILE: ../../../third_party/skia/experimental/docs/backend.js -FILE: ../../../third_party/skia/experimental/docs/canvasBackend.js -FILE: ../../../third_party/skia/experimental/docs/exampleSlides.js -FILE: ../../../third_party/skia/experimental/docs/interpolatorFunctions.js -FILE: ../../../third_party/skia/experimental/docs/jsonbaseddoc.htm -FILE: ../../../third_party/skia/experimental/docs/svgBackend.js -FILE: ../../../third_party/skia/experimental/docs/svgbaseddoc.htm -FILE: ../../../third_party/skia/experimental/docs/utilities.js -FILE: ../../../third_party/skia/experimental/sktext/editor/Cursor.cpp -FILE: ../../../third_party/skia/experimental/sktext/editor/Cursor.h -FILE: ../../../third_party/skia/experimental/sktext/editor/Defaults.h -FILE: ../../../third_party/skia/experimental/sktext/editor/Editor.cpp -FILE: ../../../third_party/skia/experimental/sktext/editor/Editor.h -FILE: ../../../third_party/skia/experimental/sktext/editor/Mouse.cpp -FILE: ../../../third_party/skia/experimental/sktext/editor/Mouse.h -FILE: ../../../third_party/skia/experimental/sktext/editor/Selection.cpp -FILE: ../../../third_party/skia/experimental/sktext/editor/Selection.h -FILE: ../../../third_party/skia/experimental/sktext/editor/Texts.cpp -FILE: ../../../third_party/skia/experimental/sktext/editor/Texts.h -FILE: ../../../third_party/skia/experimental/sktext/include/Interface.h -FILE: ../../../third_party/skia/experimental/sktext/include/Text.h -FILE: ../../../third_party/skia/experimental/sktext/include/Types.h -FILE: ../../../third_party/skia/experimental/sktext/slides/Text.cpp -FILE: ../../../third_party/skia/experimental/sktext/src/Line.cpp -FILE: ../../../third_party/skia/experimental/sktext/src/Line.h -FILE: ../../../third_party/skia/experimental/sktext/src/LogicalRun.cpp -FILE: ../../../third_party/skia/experimental/sktext/src/LogicalRun.h -FILE: ../../../third_party/skia/experimental/sktext/src/Paint.cpp -FILE: ../../../third_party/skia/experimental/sktext/src/Paint.h -FILE: ../../../third_party/skia/experimental/sktext/src/Text.cpp -FILE: ../../../third_party/skia/experimental/sktext/src/VisualRun.cpp -FILE: ../../../third_party/skia/experimental/sktext/src/VisualRun.h -FILE: ../../../third_party/skia/experimental/tskit/.eslintignore -FILE: ../../../third_party/skia/experimental/tskit/.eslintrc.js -FILE: ../../../third_party/skia/experimental/tskit/bindings/core.d.ts -FILE: ../../../third_party/skia/experimental/tskit/bindings/embind.d.ts -FILE: ../../../third_party/skia/experimental/tskit/bindings/extension.d.ts -FILE: ../../../third_party/skia/experimental/tskit/build/externs.js -FILE: ../../../third_party/skia/experimental/tskit/interface/core.ts -FILE: ../../../third_party/skia/experimental/tskit/interface/extension.ts -FILE: ../../../third_party/skia/experimental/tskit/interface/load.ts -FILE: ../../../third_party/skia/experimental/tskit/interface/memory.ts -FILE: ../../../third_party/skia/experimental/tskit/interface/public_api.d.ts -FILE: ../../../third_party/skia/experimental/tskit/npm_build/example.html -FILE: ../../../third_party/skia/experimental/tskit/npm_build/types/index.d.ts -FILE: ../../../third_party/skia/experimental/tskit/package-lock.json -FILE: ../../../third_party/skia/experimental/tskit/package.json -FILE: ../../../third_party/skia/experimental/tskit/tsconfig.json -FILE: ../../../third_party/skia/experimental/wasm-hello-world/BUILD.bazel -FILE: ../../../third_party/skia/experimental/wasm-hello-world/hello_world.html -FILE: ../../../third_party/skia/experimental/webgpu-bazel/example/index.html -FILE: ../../../third_party/skia/experimental/webgpu-bazel/src/BUILD.bazel -FILE: ../../../third_party/skia/gn/BUILD.bazel +FILE: ../../../third_party/skia/RELEASE_NOTES.txt FILE: ../../../third_party/skia/go.mod FILE: ../../../third_party/skia/go.sum -FILE: ../../../third_party/skia/go_repositories.bzl -FILE: ../../../third_party/skia/include/BUILD.bazel -FILE: ../../../third_party/skia/include/android/BUILD.bazel -FILE: ../../../third_party/skia/include/codec/BUILD.bazel -FILE: ../../../third_party/skia/include/config/BUILD.bazel -FILE: ../../../third_party/skia/include/core/BUILD.bazel -FILE: ../../../third_party/skia/include/docs/BUILD.bazel -FILE: ../../../third_party/skia/include/effects/BUILD.bazel -FILE: ../../../third_party/skia/include/encode/BUILD.bazel -FILE: ../../../third_party/skia/include/gpu/BUILD.bazel -FILE: ../../../third_party/skia/include/gpu/d3d/BUILD.bazel -FILE: ../../../third_party/skia/include/gpu/dawn/BUILD.bazel -FILE: ../../../third_party/skia/include/gpu/gl/BUILD.bazel -FILE: ../../../third_party/skia/include/gpu/gl/egl/BUILD.bazel -FILE: ../../../third_party/skia/include/gpu/gl/glx/BUILD.bazel -FILE: ../../../third_party/skia/include/gpu/graphite/mtl/BUILD.bazel -FILE: ../../../third_party/skia/include/gpu/mock/BUILD.bazel -FILE: ../../../third_party/skia/include/gpu/mtl/BUILD.bazel -FILE: ../../../third_party/skia/include/gpu/vk/BUILD.bazel -FILE: ../../../third_party/skia/include/pathops/BUILD.bazel -FILE: ../../../third_party/skia/include/ports/BUILD.bazel -FILE: ../../../third_party/skia/include/private/BUILD.bazel -FILE: ../../../third_party/skia/include/private/chromium/BUILD.bazel -FILE: ../../../third_party/skia/include/private/gpu/BUILD.bazel -FILE: ../../../third_party/skia/include/private/gpu/ganesh/BUILD.bazel -FILE: ../../../third_party/skia/include/private/gpu/vk/BUILD.bazel -FILE: ../../../third_party/skia/include/sksl/BUILD.bazel -FILE: ../../../third_party/skia/include/svg/BUILD.bazel -FILE: ../../../third_party/skia/include/utils/BUILD.bazel -FILE: ../../../third_party/skia/include/utils/mac/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/assets/android_ndk_darwin/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/android_ndk_linux/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/android_ndk_windows/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/android_sdk_linux/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/armhf_sysroot/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/bazel/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/bazel_build_task_driver/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/bazelisk/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/bazelisk_linux_arm64/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/bazelisk_mac_arm64/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/bazelisk_win_amd64/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/binutils_linux_x64/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/bloaty/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/cast_toolchain/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/ccache_linux/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/ccache_mac/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/chromebook_arm_gles/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/chromebook_x86_64_gles/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/clang_linux/Dockerfile -FILE: ../../../third_party/skia/infra/bots/assets/clang_linux/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/clang_win/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/cmake_linux/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/cmake_mac/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/cockroachdb/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/gcloud_linux/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/go/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/go/asset.json -FILE: ../../../third_party/skia/infra/bots/assets/go_win/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/gsutil/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/ios-dev-image-11.4/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/ios-dev-image-13.3/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/ios-dev-image-13.4/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/ios-dev-image-13.5/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/ios-dev-image-13.6/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/ios-dev-image-14.4/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/jq/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/kubectl/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/kubeval/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/linux_vulkan_sdk/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/lottie-samples/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/mesa_intel_driver_linux/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/mesa_intel_driver_linux/mesa-driver-builder/Dockerfile -FILE: ../../../third_party/skia/infra/bots/assets/mesa_intel_driver_linux_22/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/mesa_intel_driver_linux_22/mesa-driver-builder/Dockerfile -FILE: ../../../third_party/skia/infra/bots/assets/mockery/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/mskp/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/node/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/protoc/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/provisioning_profile_ios/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/skimage/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/skp/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/skparagraph/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/svg/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/text_blob_traces/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/valgrind/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/win_ninja/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/win_toolchain/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/xcode-11.4.1/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/yq/VERSION -FILE: ../../../third_party/skia/infra/bots/cfg.json -FILE: ../../../third_party/skia/infra/bots/jobs.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-arm-OptimizeForSize-Android_NoPatch.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-arm-Release-Android_API26.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-arm-Release-Android_ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-arm-Release-Chromebook_GLES.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-arm64-Debug-Android_FrameworkWorkarounds.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-arm64-Debug-Android_Graphite_Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-arm64-Debug-Android_HWASAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-arm64-Release-Android_Graphite_Dawn.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-arm64-Release-Android_Wuffs.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Debug-ASAN_Graphite_Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Debug-AVIF.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Debug-Chromebook_GLES.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Debug-Coverage.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Debug-MSAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Debug-SafeStack.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Debug-SwiftShader_Graphite.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Debug-SwiftShader_MSAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Debug-TSAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Debug-Tidy.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Debug-Vulkan_TSAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Debug-Wuffs.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-OptimizeForSize.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Release-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Release-ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Release-AVIF.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Release-CMake.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Release-Fast.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Release-NoDEPS.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Release-Static.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Release-SwiftShader.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-Clang-x86_64-Release-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-EMCC-asmjs-Debug-PathKit.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-EMCC-asmjs-Release-PathKit.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-EMCC-wasm-Debug-CanvasKit.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-EMCC-wasm-Debug-PathKit.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-EMCC-wasm-Release-CanvasKit_CPU.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-EMCC-wasm-Release-PathKit.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-GCC-x86-Debug-Docker.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-GCC-x86_64-Debug-Docker.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-GCC-x86_64-Release-NoGPU_Docker.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian10-GCC-x86_64-Release-Shared_Docker.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-arm64-Debug-Android_Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-arm64-Debug-Graphite_Dawn.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-arm64-Debug-Graphite_Dawn_NoGpu.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-arm64-Debug-Graphite_Dawn_NoPrecompile.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-arm64-Debug-Graphite_Metal.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-arm64-Debug-Graphite_Metal_NoGpu.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-arm64-Debug-Graphite_Metal_NoPrecompile.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-arm64-Debug-iOS.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-arm64-Release-Graphite_Dawn.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-arm64-Release-Graphite_Metal.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-x86_64-Debug-ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-x86_64-Debug-Metal.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Xcode11.4.1-arm64-Debug-iOS.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Win-Clang-arm64-Release-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Win-Clang-x86-Debug-Exceptions.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Win-Clang-x86_64-Debug-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Win-Clang-x86_64-Release-Dawn.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Win-Clang-x86_64-Release-Direct3D.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Win-Clang-x86_64-Release-Graphite_Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Win-Clang-x86_64-Release-Shared.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Win-Clang-x86_64-Release-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/unknown-docker-image.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/builder_name_schema/builder_name_schema.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/builder_name_schema/examples/full.expected/test.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/Build-Debian10-Clang-x86_64-Release-NoDEPS.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/cross_repo_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/docker/examples/full.expected/test.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/doxygen/examples/full.expected/doxygen.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/env/examples/full.expected/test.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android_SkottieTracing.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Android-Clang-GalaxyS20-GPU-MaliG77-arm64-Release-All-Android_Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Android-Clang-NVIDIA_Shield-CPU-TegraX1-arm64-Release-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Skpbench_Mskp.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Android-Clang-Pixel6-GPU-Adreno620-arm64-Release-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Debian10-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Debian10-Clang-GCE-CPU-AVX2-x86_64-Release-All-ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Win2019-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-Pixel3a-GPU-Adreno615-arm64-Debug-All-Android_Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian10-Clang-GCE-CPU-AVX2-x86_64-Debug-All-Coverage.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian10-Clang-GCE-CPU-AVX2-x86_64-Release-All-Lottie.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian10-Clang-GCE-CPU-AVX2-x86_64-Release-All-TSAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian10-Clang-GCE-GPU-SwiftShader-x86_64-Debug-All-SwiftShader.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian10-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-ASAN_Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian10-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian11-Clang-NUC11TZi5-GPU-IntelIrisXe-x86_64-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Mac10.13-Clang-MacBookPro11.5-CPU-AVX2-x86_64-Debug-All-ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Ubuntu18-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/cpu_scale_failed.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/cpu_scale_failed_golo.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/cpu_scale_failed_once.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/exceptions.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/failed_infra_step.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/failed_read_version.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/ios_rerun_with_debug.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/retry_adb_command.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/retry_adb_command_retries_exhausted.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/retry_ios_install.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/retry_ios_install_retries_exhausted.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/git/examples/full.expected/test-win.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/git/examples/full.expected/test.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/gold_upload/examples/full.expected/upload_mac.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/gold_upload/examples/full.expected/upload_tests.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/gsutil/examples/full.expected/failed_all_uploads.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/gsutil/examples/full.expected/failed_one_upload.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/gsutil/examples/full.expected/gsutil_tests.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/gsutil/examples/full.expected/gsutil_win_tests.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/infra/examples/full.expected/infra_tests.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/run/examples/full.expected/test.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Build-Debian10-Clang-x86_64-Release-SKNX_NO_SIMD.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Housekeeper-Weekly-RecreateSKPs.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/integer_issue.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/win_test.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Win-Clang-x86-Debug.json -FILE: ../../../third_party/skia/infra/bots/recipes/compute_buildstats.expected/normal_bot.json -FILE: ../../../third_party/skia/infra/bots/recipes/compute_buildstats.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit-Trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit.json -FILE: ../../../third_party/skia/infra/bots/recipes/infra.expected/infra_tests.json -FILE: ../../../third_party/skia/infra/bots/recipes/infra.expected/infra_tests_lottie_ci.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Android-Clang-Nexus7-CPU-Tegra3-arm-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Ubuntu18-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_SK_CPU_LIMIT_SSE41.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_pathkit.expected/Perf-Debian10-EMCC-GCE-CPU-AVX2-asmjs-Release-All-PathKit.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_pathkit.expected/Perf-Debian10-EMCC-GCE-CPU-AVX2-wasm-Release-All-PathKit.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_pathkit.expected/pathkit_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_skottietrace.expected/Perf-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android_SkottieTracing.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_skottietrace.expected/Perf-Debian10-Clang-GCE-CPU-AVX2-x86_64-Release-All-SkottieTracing.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_skottietrace.expected/Perf-Debian10-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Release-All-SkottieTracing.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_skottietrace.expected/skottietracing_parse_trace_error.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_skottietrace.expected/skottietracing_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_skottiewasm_lottieweb.expected/lottie_web_canvas_perf.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_skottiewasm_lottieweb.expected/lottie_web_canvas_perf_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_skottiewasm_lottieweb.expected/lottie_web_perf.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_skottiewasm_lottieweb.expected/lottie_web_perf_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_skottiewasm_lottieweb.expected/skottie_wasm_perf.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_skottiewasm_lottieweb.expected/skottie_wasm_perf_gpu.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_skottiewasm_lottieweb.expected/skottie_wasm_perf_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf_skottiewasm_lottieweb.expected/unrecognized_builder.json -FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Android-Clang-GalaxyS20-GPU-MaliG77-arm64-Release-All-Android_AllPathsVolatile_Skpbench.json -FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Android-Clang-GalaxyS20-GPU-MaliG77-arm64-Release-All-Android_Vulkan_AllPathsVolatile_Skpbench.json -FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Release-All-Android_Skpbench_Mskp.json -FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Mac11-Clang-MacMini9.1-GPU-AppleM1-arm64-Release-All-Metal_AllPathsVolatile_Skpbench.json -FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-AllPathsVolatile_Skpbench.json -FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench.json -FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench_DDLTotal_9x9.json -FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/sync_and_compile.expected/Build-Debian10-Clang-arm-Release-NoPatch (tryjob).json -FILE: ../../../third_party/skia/infra/bots/recipes/sync_and_compile.expected/Build-Debian10-Clang-arm-Release-NoPatch.json -FILE: ../../../third_party/skia/infra/bots/recipes/sync_and_compile.expected/Build-Win10-Clang-x86_64-Release-NoDEPS.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm-Debug-All-Android_ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Pixel2XL-GPU-Adreno540-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian10-Clang-GCE-CPU-AVX2-x86_64-Release-All-Lottie.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipes/test_canvaskit.expected/Test-Debian10-EMCC-GCE-GPU-WEBGL1-wasm-Debug-All-CanvasKit.json -FILE: ../../../third_party/skia/infra/bots/recipes/test_canvaskit.expected/canvaskit_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/test_lottie_web.expected/Test-Debian10-none-GCE-CPU-AVX2-x86_64-Debug-All-LottieWeb.json -FILE: ../../../third_party/skia/infra/bots/recipes/test_lottie_web.expected/lottie_web_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/test_pathkit.expected/Test-Debian10-EMCC-GCE-CPU-AVX2-asmjs-Debug-All-PathKit.json -FILE: ../../../third_party/skia/infra/bots/recipes/test_pathkit.expected/Test-Debian10-EMCC-GCE-CPU-AVX2-asmjs-Release-All-PathKit.json -FILE: ../../../third_party/skia/infra/bots/recipes/test_pathkit.expected/Test-Debian10-EMCC-GCE-CPU-AVX2-wasm-Debug-All-PathKit.json -FILE: ../../../third_party/skia/infra/bots/recipes/test_pathkit.expected/pathkit_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_buildstats_results.expected/normal_bot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_buildstats_results.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/alternate_bucket.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/failed_all.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/failed_once.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/normal_bot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_nano_results.expected/normal_bot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_nano_results.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/task_drivers/bazel_build/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/canvaskit_gold/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/check_generated_files/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/codesize/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/compile_wasm_gm_tests/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/cpu_tests/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/fm_driver/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/g3_canary/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/perf_puppeteer_canvas/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/perf_puppeteer_render_skps/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/perf_puppeteer_skottie_frames/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/perf_puppeteer_skottie_frames/make_lotties_with_assets/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/push_apps_from_skia_image/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/push_bazel_apps_from_wasm_image/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/recreate_skps/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/run_gn_to_bp/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/run_wasm_gm_tests/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/task_drivers/toolchain_layering_check/BUILD.bazel -FILE: ../../../third_party/skia/infra/bots/tasks.json -FILE: ../../../third_party/skia/infra/bots/tools/luci-go/linux64/isolate.sha1 -FILE: ../../../third_party/skia/infra/bots/tools/luci-go/mac64/isolate.sha1 -FILE: ../../../third_party/skia/infra/bots/tools/luci-go/win64/isolate.exe.sha1 -FILE: ../../../third_party/skia/infra/canvaskit/docker/canvaskit-emsdk/Dockerfile -FILE: ../../../third_party/skia/infra/config/recipes.cfg -FILE: ../../../third_party/skia/infra/cross-compile/docker/cross-linux-arm64/Dockerfile -FILE: ../../../third_party/skia/infra/docker/debian9/Dockerfile -FILE: ../../../third_party/skia/infra/gcc/Debian10-x86/Dockerfile -FILE: ../../../third_party/skia/infra/gcc/Debian10/Dockerfile -FILE: ../../../third_party/skia/infra/lottiecap/docker/gold-lottie-web-puppeteer/Dockerfile -FILE: ../../../third_party/skia/infra/lottiecap/docker/lottie-web-puppeteer/Dockerfile -FILE: ../../../third_party/skia/infra/project-config/cr-buildbucket.cfg -FILE: ../../../third_party/skia/infra/project-config/project.cfg -FILE: ../../../third_party/skia/infra/project-config/refs.cfg -FILE: ../../../third_party/skia/infra/skcq.json -FILE: ../../../third_party/skia/infra/wasm-common/docker/emsdk-base/Dockerfile -FILE: ../../../third_party/skia/infra/wasm-common/docker/gold-karma-chrome-tests/Dockerfile -FILE: ../../../third_party/skia/infra/wasm-common/docker/karma-chrome-tests/Dockerfile -FILE: ../../../third_party/skia/infra/wasm-common/docker/perf-karma-chrome-tests/Dockerfile -FILE: ../../../third_party/skia/modules/canvaskit/BUILD.bazel FILE: ../../../third_party/skia/modules/canvaskit/catchExceptionNop.js FILE: ../../../third_party/skia/modules/canvaskit/color.js FILE: ../../../third_party/skia/modules/canvaskit/cpu.js @@ -913,18 +327,17 @@ FILE: ../../../third_party/skia/modules/canvaskit/debugger.js FILE: ../../../third_party/skia/modules/canvaskit/external_test/typescript_browser/index.html FILE: ../../../third_party/skia/modules/canvaskit/external_test/typescript_browser/module_uses_ck.ts FILE: ../../../third_party/skia/modules/canvaskit/external_test/typescript_browser/package-lock.json -FILE: ../../../third_party/skia/modules/canvaskit/external_test/typescript_browser/package.json FILE: ../../../third_party/skia/modules/canvaskit/external_test/typescript_browser/tsconfig.json FILE: ../../../third_party/skia/modules/canvaskit/external_test/typescript_browser_es6/index.html FILE: ../../../third_party/skia/modules/canvaskit/external_test/typescript_browser_es6/module_uses_ck.ts FILE: ../../../third_party/skia/modules/canvaskit/external_test/typescript_browser_es6/package-lock.json -FILE: ../../../third_party/skia/modules/canvaskit/external_test/typescript_browser_es6/package.json FILE: ../../../third_party/skia/modules/canvaskit/external_test/typescript_browser_es6/tsconfig.json FILE: ../../../third_party/skia/modules/canvaskit/externs.js FILE: ../../../third_party/skia/modules/canvaskit/font.js FILE: ../../../third_party/skia/modules/canvaskit/fonts/NotoMono-Regular.ttf +FILE: ../../../third_party/skia/modules/canvaskit/future_apis/ImageDecoder.md +FILE: ../../../third_party/skia/modules/canvaskit/future_apis/WebGPU.md FILE: ../../../third_party/skia/modules/canvaskit/gm.js -FILE: ../../../third_party/skia/modules/canvaskit/go/gold_test_env/BUILD.bazel FILE: ../../../third_party/skia/modules/canvaskit/htmlcanvas/_namedcolors.js FILE: ../../../third_party/skia/modules/canvaskit/htmlcanvas/canvas2dcontext.js FILE: ../../../third_party/skia/modules/canvaskit/htmlcanvas/color.js @@ -945,7 +358,6 @@ FILE: ../../../third_party/skia/modules/canvaskit/karma.conf.js FILE: ../../../third_party/skia/modules/canvaskit/matrix.js FILE: ../../../third_party/skia/modules/canvaskit/memory.js FILE: ../../../third_party/skia/modules/canvaskit/package-lock.json -FILE: ../../../third_party/skia/modules/canvaskit/package.json FILE: ../../../third_party/skia/modules/canvaskit/paragraph.js FILE: ../../../third_party/skia/modules/canvaskit/particles.js FILE: ../../../third_party/skia/modules/canvaskit/pathops.js @@ -956,190 +368,25 @@ FILE: ../../../third_party/skia/modules/canvaskit/rt_shader.js FILE: ../../../third_party/skia/modules/canvaskit/skottie.js FILE: ../../../third_party/skia/modules/canvaskit/skp.js FILE: ../../../third_party/skia/modules/canvaskit/util.js +FILE: ../../../third_party/skia/modules/canvaskit/wasm_tools/SIMD/wasm_simd_types.txt FILE: ../../../third_party/skia/modules/canvaskit/wasm_tools/gms.html FILE: ../../../third_party/skia/modules/canvaskit/wasm_tools/viewer.html FILE: ../../../third_party/skia/modules/canvaskit/webgl.js FILE: ../../../third_party/skia/modules/canvaskit/webgpu.js -FILE: ../../../third_party/skia/modules/particles/BUILD.bazel -FILE: ../../../third_party/skia/modules/particles/include/BUILD.bazel -FILE: ../../../third_party/skia/modules/particles/src/BUILD.bazel FILE: ../../../third_party/skia/modules/pathkit/chaining.js FILE: ../../../third_party/skia/modules/pathkit/externs.js FILE: ../../../third_party/skia/modules/pathkit/helper.js FILE: ../../../third_party/skia/modules/pathkit/karma.bench.conf.js FILE: ../../../third_party/skia/modules/pathkit/karma.conf.js FILE: ../../../third_party/skia/modules/pathkit/package-lock.json -FILE: ../../../third_party/skia/modules/pathkit/package.json FILE: ../../../third_party/skia/modules/pathkit/perf/effects.bench.js FILE: ../../../third_party/skia/modules/pathkit/perf/path.bench.js FILE: ../../../third_party/skia/modules/pathkit/perf/pathops.bench.js FILE: ../../../third_party/skia/modules/pathkit/perf/perfReporter.js -FILE: ../../../third_party/skia/modules/skcms/BUILD.bazel -FILE: ../../../third_party/skia/modules/skcms/version.sha1 -FILE: ../../../third_party/skia/modules/skottie/BUILD.bazel -FILE: ../../../third_party/skia/modules/skottie/fuzz/BUILD.bazel -FILE: ../../../third_party/skia/modules/skottie/gm/BUILD.bazel -FILE: ../../../third_party/skia/modules/skottie/include/BUILD.bazel -FILE: ../../../third_party/skia/modules/skottie/src/BUILD.bazel -FILE: ../../../third_party/skia/modules/skottie/src/animator/BUILD.bazel -FILE: ../../../third_party/skia/modules/skottie/src/effects/BUILD.bazel -FILE: ../../../third_party/skia/modules/skottie/src/layers/BUILD.bazel -FILE: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/BUILD.bazel -FILE: ../../../third_party/skia/modules/skottie/src/text/BUILD.bazel -FILE: ../../../third_party/skia/modules/skottie/utils/BUILD.bazel -FILE: ../../../third_party/skia/modules/skparagraph/BUILD.bazel -FILE: ../../../third_party/skia/modules/skparagraph/bench/BUILD.bazel -FILE: ../../../third_party/skia/modules/skparagraph/gm/BUILD.bazel -FILE: ../../../third_party/skia/modules/skparagraph/include/BUILD.bazel -FILE: ../../../third_party/skia/modules/skparagraph/include/DartTypes.h -FILE: ../../../third_party/skia/modules/skparagraph/include/FontArguments.h -FILE: ../../../third_party/skia/modules/skparagraph/include/FontCollection.h -FILE: ../../../third_party/skia/modules/skparagraph/include/Metrics.h -FILE: ../../../third_party/skia/modules/skparagraph/include/Paragraph.h -FILE: ../../../third_party/skia/modules/skparagraph/include/ParagraphBuilder.h -FILE: ../../../third_party/skia/modules/skparagraph/include/ParagraphCache.h -FILE: ../../../third_party/skia/modules/skparagraph/include/ParagraphPainter.h -FILE: ../../../third_party/skia/modules/skparagraph/include/ParagraphStyle.h -FILE: ../../../third_party/skia/modules/skparagraph/include/TextShadow.h -FILE: ../../../third_party/skia/modules/skparagraph/include/TextStyle.h -FILE: ../../../third_party/skia/modules/skparagraph/include/TypefaceFontProvider.h -FILE: ../../../third_party/skia/modules/skparagraph/slides/BUILD.bazel -FILE: ../../../third_party/skia/modules/skparagraph/slides/ParagraphSlide.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/BUILD.bazel -FILE: ../../../third_party/skia/modules/skparagraph/src/Decorations.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/Decorations.h -FILE: ../../../third_party/skia/modules/skparagraph/src/FontArguments.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/FontCollection.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/Iterators.h -FILE: ../../../third_party/skia/modules/skparagraph/src/OneLineShaper.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/OneLineShaper.h -FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphBuilderImpl.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphBuilderImpl.h -FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphCache.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphImpl.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphImpl.h -FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphPainterImpl.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphPainterImpl.h -FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphStyle.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/Run.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/Run.h -FILE: ../../../third_party/skia/modules/skparagraph/src/TextLine.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/TextLine.h -FILE: ../../../third_party/skia/modules/skparagraph/src/TextShadow.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/TextStyle.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/TextWrapper.cpp -FILE: ../../../third_party/skia/modules/skparagraph/src/TextWrapper.h -FILE: ../../../third_party/skia/modules/skparagraph/src/TypefaceFontProvider.cpp FILE: ../../../third_party/skia/modules/skparagraph/test.html -FILE: ../../../third_party/skia/modules/skparagraph/utils/BUILD.bazel -FILE: ../../../third_party/skia/modules/skparagraph/utils/TestFontCollection.cpp -FILE: ../../../third_party/skia/modules/skparagraph/utils/TestFontCollection.h -FILE: ../../../third_party/skia/modules/skresources/BUILD.bazel -FILE: ../../../third_party/skia/modules/skresources/include/BUILD.bazel -FILE: ../../../third_party/skia/modules/skresources/src/BUILD.bazel -FILE: ../../../third_party/skia/modules/sksg/BUILD.bazel -FILE: ../../../third_party/skia/modules/sksg/include/BUILD.bazel -FILE: ../../../third_party/skia/modules/sksg/slides/BUILD.bazel -FILE: ../../../third_party/skia/modules/sksg/src/BUILD.bazel -FILE: ../../../third_party/skia/modules/skshaper/BUILD.bazel -FILE: ../../../third_party/skia/modules/skshaper/include/BUILD.bazel -FILE: ../../../third_party/skia/modules/skshaper/src/BUILD.bazel -FILE: ../../../third_party/skia/modules/skunicode/BUILD.bazel -FILE: ../../../third_party/skia/modules/skunicode/include/BUILD.bazel -FILE: ../../../third_party/skia/modules/skunicode/src/BUILD.bazel -FILE: ../../../third_party/skia/modules/svg/include/BUILD.bazel -FILE: ../../../third_party/skia/modules/svg/src/BUILD.bazel -FILE: ../../../third_party/skia/modules/svg/utils/BUILD.bazel FILE: ../../../third_party/skia/package-lock.json -FILE: ../../../third_party/skia/package.json -FILE: ../../../third_party/skia/public.bzl -FILE: ../../../third_party/skia/site/_index.html -FILE: ../../../third_party/skia/site/about/_index.html -FILE: ../../../third_party/skia/site/config.toml -FILE: ../../../third_party/skia/site/docs/dev/contrib/SuggestedReviewers.png -FILE: ../../../third_party/skia/site/docs/dev/design/PdfLogicalDocumentStructure.png -FILE: ../../../third_party/skia/site/docs/dev/design/conical/corollary2.2.1.svg -FILE: ../../../third_party/skia/site/docs/dev/design/conical/corollary2.2.2.svg -FILE: ../../../third_party/skia/site/docs/dev/design/conical/corollary2.3.1.svg -FILE: ../../../third_party/skia/site/docs/dev/design/conical/corollary2.3.2.svg -FILE: ../../../third_party/skia/site/docs/dev/design/conical/corollary2.3.3.svg -FILE: ../../../third_party/skia/site/docs/dev/design/conical/lemma1.svg -FILE: ../../../third_party/skia/site/docs/dev/design/conical/lemma3.1.svg -FILE: ../../../third_party/skia/site/docs/dev/design/conical/lemma3.2.svg -FILE: ../../../third_party/skia/site/docs/dev/design/conical/lemma4.svg -FILE: ../../../third_party/skia/site/docs/dev/tools/android_gdb.png -FILE: ../../../third_party/skia/site/docs/dev/tools/buttons.png -FILE: ../../../third_party/skia/site/docs/dev/tools/calendar.mskp -FILE: ../../../third_party/skia/site/docs/dev/tools/crosshair.png -FILE: ../../../third_party/skia/site/docs/dev/tools/debugger.png -FILE: ../../../third_party/skia/site/docs/dev/tools/end.png -FILE: ../../../third_party/skia/site/docs/dev/tools/expand.png -FILE: ../../../third_party/skia/site/docs/dev/tools/frameplayback.png -FILE: ../../../third_party/skia/site/docs/dev/tools/gpuop.png -FILE: ../../../third_party/skia/site/docs/dev/tools/image.png -FILE: ../../../third_party/skia/site/docs/dev/tools/layers.png -FILE: ../../../third_party/skia/site/docs/dev/tools/onlinedebugger.png -FILE: ../../../third_party/skia/site/docs/dev/tools/playcommands.png -FILE: ../../../third_party/skia/site/docs/dev/tools/resources.png -FILE: ../../../third_party/skia/site/docs/dev/tools/settings.png -FILE: ../../../third_party/skia/site/docs/dev/tools/tracing.png -FILE: ../../../third_party/skia/site/docs/dev/tools/tracing_load.png -FILE: ../../../third_party/skia/site/docs/user/modules/PathKit_effects.png -FILE: ../../../third_party/skia/site/featured-background.png -FILE: ../../../third_party/skia/specs/web-img-decode/current/index.html -FILE: ../../../third_party/skia/specs/web-img-decode/proposed/impl/impl.js -FILE: ../../../third_party/skia/specs/web-img-decode/proposed/index.html -FILE: ../../../third_party/skia/src/BUILD.bazel -FILE: ../../../third_party/skia/src/android/BUILD.bazel -FILE: ../../../third_party/skia/src/codec/BUILD.bazel -FILE: ../../../third_party/skia/src/core/BUILD.bazel FILE: ../../../third_party/skia/src/core/SkOrderedReadBuffer.h -FILE: ../../../third_party/skia/src/effects/BUILD.bazel -FILE: ../../../third_party/skia/src/effects/imagefilters/BUILD.bazel -FILE: ../../../third_party/skia/src/fonts/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/d3d/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/dawn/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/effects/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/geometry/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/gl/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/gl/android/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/gl/builders/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/gl/egl/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/gl/glx/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/gl/iOS/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/gl/mac/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/gl/webgl/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/gl/win/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/glsl/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/gradients/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/mock/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/mtl/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/ops/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/tessellate/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/text/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/ganesh/vk/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/gl/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/mtl/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/piet/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/tessellate/BUILD.bazel -FILE: ../../../third_party/skia/src/gpu/vk/BUILD.bazel -FILE: ../../../third_party/skia/src/image/BUILD.bazel -FILE: ../../../third_party/skia/src/images/BUILD.bazel -FILE: ../../../third_party/skia/src/lazy/BUILD.bazel -FILE: ../../../third_party/skia/src/opts/BUILD.bazel -FILE: ../../../third_party/skia/src/pathops/BUILD.bazel -FILE: ../../../third_party/skia/src/pdf/BUILD.bazel -FILE: ../../../third_party/skia/src/ports/BUILD.bazel -FILE: ../../../third_party/skia/src/sfnt/BUILD.bazel -FILE: ../../../third_party/skia/src/shaders/BUILD.bazel -FILE: ../../../third_party/skia/src/shaders/gradients/BUILD.bazel -FILE: ../../../third_party/skia/src/sksl/BUILD.bazel -FILE: ../../../third_party/skia/src/sksl/analysis/BUILD.bazel -FILE: ../../../third_party/skia/src/sksl/codegen/BUILD.bazel -FILE: ../../../third_party/skia/src/sksl/dsl/BUILD.bazel -FILE: ../../../third_party/skia/src/sksl/dsl/priv/BUILD.bazel +FILE: ../../../third_party/skia/src/gpu/gpu_workaround_list.txt FILE: ../../../third_party/skia/src/sksl/generated/sksl_compute.minified.sksl FILE: ../../../third_party/skia/src/sksl/generated/sksl_compute.unoptimized.sksl FILE: ../../../third_party/skia/src/sksl/generated/sksl_frag.minified.sksl @@ -1159,8 +406,6 @@ FILE: ../../../third_party/skia/src/sksl/generated/sksl_shared.minified.sksl FILE: ../../../third_party/skia/src/sksl/generated/sksl_shared.unoptimized.sksl FILE: ../../../third_party/skia/src/sksl/generated/sksl_vert.minified.sksl FILE: ../../../third_party/skia/src/sksl/generated/sksl_vert.unoptimized.sksl -FILE: ../../../third_party/skia/src/sksl/ir/BUILD.bazel -FILE: ../../../third_party/skia/src/sksl/lex/BUILD.bazel FILE: ../../../third_party/skia/src/sksl/lex/sksl.lex FILE: ../../../third_party/skia/src/sksl/sksl_compute.sksl FILE: ../../../third_party/skia/src/sksl/sksl_frag.sksl @@ -1171,25 +416,9 @@ FILE: ../../../third_party/skia/src/sksl/sksl_public.sksl FILE: ../../../third_party/skia/src/sksl/sksl_rt_shader.sksl FILE: ../../../third_party/skia/src/sksl/sksl_shared.sksl FILE: ../../../third_party/skia/src/sksl/sksl_vert.sksl -FILE: ../../../third_party/skia/src/sksl/tracing/BUILD.bazel -FILE: ../../../third_party/skia/src/sksl/transform/BUILD.bazel -FILE: ../../../third_party/skia/src/svg/BUILD.bazel -FILE: ../../../third_party/skia/src/text/BUILD.bazel -FILE: ../../../third_party/skia/src/text/gpu/BUILD.bazel -FILE: ../../../third_party/skia/src/utils/BUILD.bazel -FILE: ../../../third_party/skia/src/utils/mac/BUILD.bazel -FILE: ../../../third_party/skia/src/utils/win/BUILD.bazel -FILE: ../../../third_party/skia/src/xml/BUILD.bazel -FILE: ../../../third_party/skia/src/xps/BUILD.bazel -FILE: ../../../third_party/skia/toolchain/BUILD.bazel -FILE: ../../../third_party/skia/toolchain/clang_layering_check.bzl -FILE: ../../../third_party/skia/toolchain/download_linux_amd64_toolchain.bzl -FILE: ../../../third_party/skia/toolchain/download_mac_toolchain.bzl -FILE: ../../../third_party/skia/toolchain/download_toolchains.bzl -FILE: ../../../third_party/skia/toolchain/linux_amd64_toolchain_config.bzl +FILE: ../../../third_party/skia/third_party/libmicrohttpd/MHD_config.h FILE: ../../../third_party/skia/toolchain/linux_trampolines/IWYU_mapping.imp -FILE: ../../../third_party/skia/toolchain/mac_toolchain_config.bzl -FILE: ../../../third_party/skia/toolchain/utils.bzl +FILE: ../../../third_party/skia/whitespace.txt ---------------------------------------------------------------------------------------------------- Copyright (c) 2011 Google Inc. All rights reserved. @@ -1262,6 +491,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/src/sksl/GLSL.std.450.h +ORIGIN: ../../../third_party/skia/src/sksl/spirv.h TYPE: LicenseType.unknown FILE: ../../../third_party/skia/src/sksl/GLSL.std.450.h FILE: ../../../third_party/skia/src/sksl/spirv.h @@ -1277,47 +507,25 @@ Materials are furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Materials. -==================================================================================================== - -==================================================================================================== -LIBRARY: vulkan -ORIGIN: ../../../third_party/skia/include/third_party/vulkan/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/include/third_party/vulkan/BUILD.bazel ----------------------------------------------------------------------------------------------------- -Copyright (c) 2018 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. ==================================================================================================== ==================================================================================================== LIBRARY: expat LIBRARY: harfbuzz ORIGIN: ../../../third_party/skia/third_party/expat/LICENSE +ORIGIN: ../../../third_party/skia/third_party/harfbuzz/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/third_party/expat/0001-Do-not-claim-getrandom.patch FILE: ../../../third_party/skia/third_party/expat/0002-Do-not-claim-arc4random_buf.patch @@ -1393,6 +601,153 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/include/config/SkUserConfig.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkBitmap.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkCanvas.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkColor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkColorFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkColorPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkFlattenable.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkGraphics.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkMaskFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkMath.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkMatrix.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPaint.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPath.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPathEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPathMeasure.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPoint.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkRect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkRefCnt.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkScalar.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkStream.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkString.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkTime.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkTypeface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/Sk1DPathEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/Sk2DPathEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkBlurMaskFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkCornerPathEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkDashPathEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkDiscretePathEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkGradientShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkTableMaskFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkColorData.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkDeque.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkFixed.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkFloatingPoint.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkNoncopyable.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkTDArray.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkTemplates.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkBase64.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkCamera.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkParse.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkParsePath.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkRandom.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkAlphaRuns.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkAnalyticEdge.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkAnalyticEdge.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkAntiRun.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlitBWMaskTemplate.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlitter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlitter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlitter_A8.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlitter_ARGB32.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlitter_Sprite.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlurMF.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlurMask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlurMask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkColor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkColorFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkColorFilterBase.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCoreBlitters.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDebug.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDeque.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDescriptor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDraw.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDraw.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkEdge.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkEdge.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkEndian.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkFDot6.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkGeometry.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkGeometry.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkGlyph.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkGraphics.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMaskFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMatrix.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkModeColorFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkOSFile.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPaint.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPathEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPathEffectBase.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPointPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRegion.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRegionPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRegion_path.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScalerCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScalerCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScalerContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScalerContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScan.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScanPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScan_AntiPath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScan_Hairline.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScan_Path.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSpriteBlitter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSpriteBlitter_ARGB32.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkStream.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkString.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkStroke.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkStrokerPriv.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkStrokerPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTSearch.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTSearch.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTSort.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkXfermode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkXfermodePriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/Sk1DPathEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/Sk2DPathEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkCornerPathEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkDashPathEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkDiscretePathEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkEmbossMask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkEmbossMask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkEmbossMaskFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkEmbossMaskFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/images/SkPngEncoder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkDebug_android.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkDebug_stdio.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontHost_FreeType.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontHost_win.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_custom.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_custom.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_mac_ct.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkOSFile_stdio.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkScalerContext_mac_ct.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkTypeface_mac_ct.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkBitmapProcShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkComposeShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/gradients/SkGradientShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkBase64.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkCamera.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkParse.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkParseColor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/xml/SkDOM.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/xml/SkDOM.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/xml/SkXMLParser.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/xml/SkXMLParser.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/xml/SkXMLWriter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/xml/SkXMLWriter.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/include/config/SkUserConfig.h FILE: ../../../third_party/skia/include/core/SkBitmap.h @@ -1577,6 +932,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/src/ports/SkFontHost_FreeType_common.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontHost_FreeType_common.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/src/ports/SkFontHost_FreeType_common.cpp FILE: ../../../third_party/skia/src/ports/SkFontHost_FreeType_common.h @@ -1616,6 +972,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/include/core/SkPicture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkColorMatrix.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkColorMatrixFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBitmapProcState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPicture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/images/SkJpegEncoder.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/include/core/SkPicture.h FILE: ../../../third_party/skia/include/effects/SkColorMatrix.h @@ -1659,6 +1021,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/src/core/SkBitmapProcState_matrixProcs.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_FontConfigInterface_factory.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/src/core/SkBitmapProcState_matrixProcs.cpp FILE: ../../../third_party/skia/src/ports/SkFontMgr_FontConfigInterface_factory.cpp @@ -1697,6 +1060,20 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/include/core/SkMallocPixelRef.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPixelRef.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkUnPreMultiply.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkBlurDrawLooper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkFloatBits.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBitmap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCanvas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPathMeasure.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPoint.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPtrRecorder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkStroke.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkWriter32.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_empty_factory.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkImageEncoder_CG.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/include/core/SkMallocPixelRef.h FILE: ../../../third_party/skia/include/core/SkPixelRef.h @@ -1748,6 +1125,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/src/codec/SkColorTable.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCubicClipper.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCubicClipper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkEdgeClipper.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkEdgeClipper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkQuadClipper.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkQuadClipper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/images/SkImageEncoder.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/src/codec/SkColorTable.cpp FILE: ../../../third_party/skia/src/core/SkCubicClipper.cpp @@ -1792,6 +1176,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/src/ports/SkFontConfigInterface_direct.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontConfigInterface_direct.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontConfigInterface_direct_factory.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/src/ports/SkFontConfigInterface_direct.cpp FILE: ../../../third_party/skia/src/ports/SkFontConfigInterface_direct.h @@ -1831,6 +1217,27 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/include/gpu/GrConfig.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/GrTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkImageInfo.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRasterClip.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRasterClip.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkStrikeCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTBlockList.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/BufferWriter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/GrRectanizer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/Rectanizer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/RectanizerPow2.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/Device_v1.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBufferAllocPool.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBufferAllocPool.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrClip.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrColor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrFixedClip.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrGpu.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/SkGr.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrRect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkDebug_win.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/Glyph.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/include/gpu/GrConfig.h FILE: ../../../third_party/skia/include/gpu/GrTypes.h @@ -1889,6 +1296,17 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/src/core/SkDevice.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScalar.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTextFormatParams.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/images/SkJPEGWriteUtility.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/images/SkJPEGWriteUtility.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/images/SkWebpEncoder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkDeflate.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkDeflate.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFFormXObject.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFFormXObject.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFGraphicState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFTypes.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/src/core/SkDevice.h FILE: ../../../third_party/skia/src/core/SkScalar.cpp @@ -1936,25 +1354,189 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/AAClipBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/aaclip.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/aarectmodes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/arithmode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bitmapcopy.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bitmapfilters.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bitmaprect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/blurs.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/clip_strokerect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/color4f.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/colormatrix.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/complexclip.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/complexclip2.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/convexpaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/cubicpaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/degeneratesegments.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/dftext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/drawbitmaprect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/emptypath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/encode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/filltypes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/filltypespersp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/filterindiabox.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/fontscaler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/gammatext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/giantbitmap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/gm.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/gm.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/gradients.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/gradtext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/hairmodes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/hittestpath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/image.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imageblur.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imageblur2.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagefiltersbase.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagefilterscropped.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/lcdtext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/linepaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/ninepatchstretch.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/pathfill.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/pathreverse.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/points.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/poly2poly.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/quadpaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/rasterhandleallocator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/shadertext3.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/strokefill.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/strokerects.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/strokes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/tablecolorfilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/texteffects.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/tilemodes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/tilemodes_scaled.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/tinybitmap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/xfermodes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkData.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkImageEncoder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkImageFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkSize.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkLayerDrawLooper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/gl/GrGLConfig.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/gl/GrGLConfig_chrome.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/gl/GrGLInterface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkTypeface_mac.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkTypeface_win.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkTArray.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkNWayCanvas.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/mac/SkCGUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkAAClip.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkAAClip.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkAdvancedTypefaceMetrics.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBitmapProcState.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlitRow.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlitRow_D32.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkClipStack.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkClipStack.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkColorFilter_Matrix.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkConvertPixels.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkData.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDevice.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDrawProcs.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkEdgeBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkEdgeBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkFlattenable.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkFontStream.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkLineClipper.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkLineClipper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMallocPixelRef.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPictureData.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPictureData.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPictureFlat.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPictureFlat.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPictureRecord.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPictureRecord.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPixelRef.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPtrRecorder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkReadBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTLazy.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTypefaceCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTypefaceCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkUnPreMultiply.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkWriteBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkWriter32.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkColorMatrix.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkColorMatrixFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkLayerDrawLooper.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkTableMaskFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/Device.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrAttachment.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrAttachment.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrGpu.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrGpuResource.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrNativeRect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrPaint.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRenderTarget.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRenderTarget.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrStencilSettings.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTexture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTexture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/PathRenderer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/PathRenderer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/PathRendererChain.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/PathRendererChain.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrPathUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrPathUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLAttachment.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLAttachment.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLDefines_impl.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLGLSL.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLGLSL.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLGpu.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLGpu.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLGpuProgramCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLInterfaceAutogen.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLMakeNativeInterface_none.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLProgram.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLProgram.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLRenderTarget.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLRenderTarget.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLTexture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLTexture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLUtil.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/mac/GrGLMakeNativeInterface_mac.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/win/GrGLMakeNativeInterface_win.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AAHairLinePathRenderer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AAHairLinePathRenderer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DefaultPathRenderer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DefaultPathRenderer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/gl/GrGLDefines.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFDevice.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFDevice.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFDocument.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFFont.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFFont.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFGraphicState.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFMakeToUnicodeCmap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFTypes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkGlobalInitialization_default.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkImageEncoder_WIC.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkMemory_malloc.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkScalerContext_win_dw.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkBitmapProcShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkBitSet.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkNWayCanvas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkOSPath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkParsePath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/mac/SkCreateCGImageRef.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkAutoCoInitialize.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkAutoCoInitialize.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkHRESULT.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkHRESULT.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkIStream.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkIStream.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkTScopedComPtr.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkWGL.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkWGL_win.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/xps/SkXPSDevice.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/xps/SkXPSDevice.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/AAClipBench.cpp -FILE: ../../../third_party/skia/bench/Benchmark.cpp -FILE: ../../../third_party/skia/bench/Benchmark.h -FILE: ../../../third_party/skia/bench/BlurBench.cpp -FILE: ../../../third_party/skia/bench/ChromeBench.cpp -FILE: ../../../third_party/skia/bench/DashBench.cpp -FILE: ../../../third_party/skia/bench/GradientBench.cpp -FILE: ../../../third_party/skia/bench/MatrixBench.cpp -FILE: ../../../third_party/skia/bench/MutexBench.cpp -FILE: ../../../third_party/skia/bench/PathBench.cpp -FILE: ../../../third_party/skia/bench/PathIterBench.cpp -FILE: ../../../third_party/skia/bench/PicturePlaybackBench.cpp -FILE: ../../../third_party/skia/bench/RectBench.cpp -FILE: ../../../third_party/skia/bench/RegionBench.cpp -FILE: ../../../third_party/skia/bench/RepeatTileBench.cpp -FILE: ../../../third_party/skia/bench/ScalarBench.cpp -FILE: ../../../third_party/skia/bench/VertBench.cpp FILE: ../../../third_party/skia/gm/aaclip.cpp FILE: ../../../third_party/skia/gm/aarectmodes.cpp FILE: ../../../third_party/skia/gm/arithmode.cpp @@ -2210,6 +1792,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/include/core/SkDrawLooper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScan.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScan_Antihair.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTypeface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkBlurImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_android_parser.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_android_parser.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/include/core/SkDrawLooper.h FILE: ../../../third_party/skia/src/core/SkScan.h @@ -2252,22 +1840,164 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/BenchLogger.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bigmatrix.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/blurrect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/colorfilterimagefilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/composeshader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/dashcubics.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/dashing.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/distantclip.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/fatpathfill.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/getpostextpath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagefiltersgraph.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagemagnifier.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/lighting.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/matrixconvolution.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/modecolorfilters.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/morphology.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/patheffects.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/pathinterior.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/rrect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/rrects.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/runtimeimagefilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/samplerstress.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/simpleaaclip.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/srcmode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/strokerect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/typeface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/verylargebitmap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkAnnotation.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkImage.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkRRect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkStrokeRec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkSurface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/gl/GrGLFunctions.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/pathops/SkPathOps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkChecksum.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkPathRef.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkWeakRefCnt.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkNullCanvas.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkColorTable.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkAnnotation.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkFontDescriptor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkFontDescriptor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkImagePriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMD5.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMD5.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMaskGamma.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMaskGamma.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMathPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPaintDefaults.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRRect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRTree.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRTree.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkReadBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkStrokeRec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTInternalLList.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkWriteBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrMemoryPool.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrMemoryPool.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProcessor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProcessor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProcessorUnitTest.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSWMaskHelper.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSWMaskHelper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrShaderCaps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrShaderCaps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSurface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSurface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrGaussianConvolutionFragmentProcessor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrGaussianConvolutionFragmentProcessor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLCaps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLCaps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLProgramDataManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLProgramDataManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLUtil.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AAConvexPathRenderer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AAConvexPathRenderer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/SoftwarePathRenderer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/SoftwarePathRenderer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkImage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkImage_Base.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkImage_Gpu.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkImage_Raster.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkSurface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkSurface_Base.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkSurface_Gpu.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkSurface_Raster.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkAddIntersections.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkAddIntersections.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkDCubicLineIntersection.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkDLineIntersection.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkDQuadLineIntersection.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkIntersectionHelper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkIntersections.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkIntersections.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkLineParameters.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpAngle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpAngle.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpCubicHull.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpEdgeBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpEdgeBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpSegment.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpSegment.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpSpan.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsBounds.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsCommon.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsCommon.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsCubic.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsCubic.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsCurve.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsLine.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsLine.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsPoint.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsQuad.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsQuad.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsRect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsRect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsSimplify.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsTypes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathWriter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathWriter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkReduceOrder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkReduceOrder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkIBMFamilyClass.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTableTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V0.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V1.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V2.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V3.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V4.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_VA.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_glyf.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_head.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_hhea.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_loca.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_maxp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_maxp_CFF.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_maxp_TT.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_name.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_post.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkPanose.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkSFNTHeader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/gradients/SkGradientShaderBase.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/gradients/SkLinearGradient.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/gradients/SkLinearGradient.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/gradients/SkRadialGradient.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/gradients/SkSweepGradient.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/gradients/SkTwoPointConicalGradient.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkFloatUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkNullCanvas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkDWriteFontFileStream.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkDWriteFontFileStream.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkDWriteGeometrySink.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkDWriteGeometrySink.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/BenchLogger.cpp -FILE: ../../../third_party/skia/bench/BenchLogger.h -FILE: ../../../third_party/skia/bench/ChecksumBench.cpp -FILE: ../../../third_party/skia/bench/FilteringBench.cpp -FILE: ../../../third_party/skia/bench/GameBench.cpp -FILE: ../../../third_party/skia/bench/GrMemoryPoolBench.cpp -FILE: ../../../third_party/skia/bench/LineBench.cpp -FILE: ../../../third_party/skia/bench/Matrix44Bench.cpp -FILE: ../../../third_party/skia/bench/MatrixConvolutionBench.cpp -FILE: ../../../third_party/skia/bench/MorphologyBench.cpp -FILE: ../../../third_party/skia/bench/ParagraphBench.cpp -FILE: ../../../third_party/skia/bench/RTreeBench.cpp -FILE: ../../../third_party/skia/bench/RefCntBench.cpp -FILE: ../../../third_party/skia/bench/TableBench.cpp FILE: ../../../third_party/skia/gm/bigmatrix.cpp FILE: ../../../third_party/skia/gm/blurrect.cpp FILE: ../../../third_party/skia/gm/colorfilterimagefilter.cpp @@ -2459,10 +2189,16 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/ReadPixBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkUtilsArm.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkColorFilterImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkLightingImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkMagnifierImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkMatrixConvolutionImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkMergeImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkMorphologyImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/images/SkImageEncoderFns.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/ReadPixBench.cpp -FILE: ../../../third_party/skia/bench/WriterBench.cpp FILE: ../../../third_party/skia/src/core/SkImageFilter.cpp FILE: ../../../third_party/skia/src/core/SkUtilsArm.cpp FILE: ../../../third_party/skia/src/effects/imagefilters/SkColorFilterImageFilter.cpp @@ -2506,33 +2242,147 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/BlendmodeBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/client_utils/android/FrontBufferedStream.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/client_utils/android/FrontBufferedStream.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/dm/DM.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/alphagradients.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/arcofzorro.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/beziereffects.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bigblurs.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bigtext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bitmappremul.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bitmaprecttest.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bitmapshader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bleed.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/blurquickreject.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/blurroundrect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/circularclips.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/clippedbitmapshaders.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/coloremoji.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/conicpaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/copy_to_4444.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/displacement.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/dropshadowimagefilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/dstreadshuffle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/fontcache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/fontmgr.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/gradient_dirty_laundry.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/gradient_matrix.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/gradients_no_texture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/hairlines.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagealphathreshold.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagesource.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/internal_links.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/inversepaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/lumafilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/mixedtextblobs.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/nested.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/nonclosedpaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/offsetimagefilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/ovals.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/pathopsinverse.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/perlinnoise.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/pictureimagefilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/polygons.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/resizeimagefilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/roundrects.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/shallowgradient.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/skbug1719.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/spritebitmap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/stringart.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/thinrects.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/thinstrokedrects.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/tileimagefilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/vertices.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/xfermodeimagefilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/xfermodes2.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/xfermodes3.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkDataTable.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkDocument.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkFontMgr.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkFontStyle.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkImageGenerator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkImageInfo.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkLumaColorFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkPerlinNoiseShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/gl/GrGLExtensions.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkFontConfigInterface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkOnce.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkTFitsIn.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkTLogic.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/ganesh/GrTypesPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkCanvasStateUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBitmapDevice.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBitmapDevice.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDataTable.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDiscardableMemory.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDocument.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDrawLooper.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkFontStream.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkGpuBlurUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkGpuBlurUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMatrixUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMessageBus.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMipmap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMipmap.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPaintPriv.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPaintPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPathRef.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkResourceCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkResourceCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkStreamPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkStringUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkStringUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTDynamicHash.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTMultiMap.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkValidationUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkLumaColorFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkAlphaThresholdImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkComposeImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkDisplacementMapImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkDropShadowImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkTileImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/Blend.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/RectanizerSkyline.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrCaps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrGeometryProcessor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrPaint.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrBezierEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrBezierEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrBicubicEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrBitmapTextGeoProc.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrBitmapTextGeoProc.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrDistanceFieldGeoProc.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrDistanceFieldGeoProc.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLExtensions.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLVertexArray.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLVertexArray.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/GrOvalOpFactory.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/GrOvalOpFactory.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/lazy/SkDiscardableMemoryPool.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/lazy/SkDiscardableMemoryPool.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpCoincidence.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpContour.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpContour.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsDebug.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsDebug.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFResourceDict.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFResourceDict.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkDiscardableMemory_none.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontConfigTypeface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_FontConfigInterface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkOSFile_posix.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkOSFile_win.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_name.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkTTCFHeader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkColorFilterShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkPerlinNoiseShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkCanvasStack.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkCanvasStack.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkCanvasStateUtils.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/BlendmodeBench.cpp -FILE: ../../../third_party/skia/bench/BlurImageFilterBench.cpp -FILE: ../../../third_party/skia/bench/BlurRectBench.cpp -FILE: ../../../third_party/skia/bench/ChartBench.cpp -FILE: ../../../third_party/skia/bench/CmapBench.cpp -FILE: ../../../third_party/skia/bench/ColorFilterBench.cpp -FILE: ../../../third_party/skia/bench/ColorPrivBench.cpp -FILE: ../../../third_party/skia/bench/CoverageBench.cpp -FILE: ../../../third_party/skia/bench/DisplacementBench.cpp -FILE: ../../../third_party/skia/bench/FSRectBench.cpp -FILE: ../../../third_party/skia/bench/FontCacheBench.cpp -FILE: ../../../third_party/skia/bench/GrResourceCacheBench.cpp -FILE: ../../../third_party/skia/bench/HairlinePathBench.cpp -FILE: ../../../third_party/skia/bench/ImageCacheBench.cpp -FILE: ../../../third_party/skia/bench/LightingBench.cpp -FILE: ../../../third_party/skia/bench/MemsetBench.cpp -FILE: ../../../third_party/skia/bench/MergeBench.cpp -FILE: ../../../third_party/skia/bench/PerlinNoiseBench.cpp -FILE: ../../../third_party/skia/bench/PremulAndUnpremulAlphaOpsBench.cpp -FILE: ../../../third_party/skia/bench/RegionContainBench.cpp -FILE: ../../../third_party/skia/bench/ResultsWriter.h -FILE: ../../../third_party/skia/bench/SortBench.cpp -FILE: ../../../third_party/skia/bench/TileBench.cpp -FILE: ../../../third_party/skia/bench/WritePixelsBench.cpp -FILE: ../../../third_party/skia/bench/gUniqueGlyphIDs.h FILE: ../../../third_party/skia/client_utils/android/FrontBufferedStream.cpp FILE: ../../../third_party/skia/client_utils/android/FrontBufferedStream.h FILE: ../../../third_party/skia/dm/DM.cpp @@ -2708,6 +2558,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkBlendImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkPictureImageFilter.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/src/effects/imagefilters/SkBlendImageFilter.cpp FILE: ../../../third_party/skia/src/effects/imagefilters/SkPictureImageFilter.cpp @@ -2745,25 +2596,172 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/AlternatingColorPatternBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/dm/DMJsonWriter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/dm/DMJsonWriter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/aaa.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/beziers.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/blurcircles.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/clipdrawdraw.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/coloremoji_blendmodes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/colorfilters.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/colorwheel.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/complexclip3.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/convexpolyclip.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/convexpolyeffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/discard.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/drrect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/emboss.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/filterfastbounds.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/glyph_pos.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/gradients_2pt_conical.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/grayscalejpg.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imageblurtiled.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagefiltersclipped.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagefilterscropexpand.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagefiltersscaled.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imageresizetiled.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/matriximagefilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/patch.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/picture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/pictureshader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/pictureshadertile.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/recordopts.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/smallarc.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/stroketext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/surface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/tallstretchedbitmaps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/texelsubset.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/textblob.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/textblobshader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/tiledscaledbitmap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/variedtext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/yuvtorgbsubset.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkBBHFactory.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkBlurTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkDrawable.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkFont.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPictureRecorder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkSurfaceProps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkTextBlob.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/gl/GrGLAssembleInterface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkFontMgr_indirect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkRemotableFontMgr.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkHalf.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBBHFactory.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBitmapCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBitmapCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCachedData.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCachedData.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCanvasPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkConvertPixels.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDistanceFieldGen.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDistanceFieldGen.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDrawable.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkFont.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkFont_serial.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkHalf.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkImageGenerator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMaskCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMaskCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPicturePlayback.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPicturePlayback.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPictureRecorder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRecord.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRecordDraw.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRecordDraw.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRecordOpts.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRecordOpts.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRecorder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRecorder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRecords.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSurfacePriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTaskGroup.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTaskGroup.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTextBlob.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkVertState.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkVertState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/fonts/SkFontMgr_indirect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/fonts/SkRemotableFontMgr.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/RectanizerPow2.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/RectanizerSkyline.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ResourceKey.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDefaultGeoProcFactory.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDefaultGeoProcFactory.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrFragmentProcessor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrGeometryProcessor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrGpuResource.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrGpuResourceCacheAccess.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProcessorAnalysis.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProcessorAnalysis.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProgramDesc.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrResourceCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrResourceCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTracing.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrXferProcessor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrBicubicEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrConvexPolyEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrConvexPolyEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrCoverageSetOpXP.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrCoverageSetOpXP.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrDisableColorXP.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrDisableColorXP.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrMatrixConvolutionEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrMatrixConvolutionEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrOvalEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrOvalEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrPorterDuffXferProcessor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrPorterDuffXferProcessor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrRRectEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrRRectEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLAssembleInterface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLTextureRenderTarget.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/android/GrGLMakeNativeInterface_android.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/builders/GrGLProgramBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/builders/GrGLProgramBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/builders/GrGLShaderStringBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/builders/GrGLShaderStringBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/egl/GrGLMakeEGLInterface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/glx/GrGLMakeGLXInterface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/iOS/GrGLMakeNativeInterface_iOS.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLFragmentShaderBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLFragmentShaderBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLShaderBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLShaderBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DashOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DashOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/SmallPathRenderer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkReadPixelsRec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkSurface_Gpu.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpSpan.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsTSect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsTSect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsTightBounds.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_android.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_fontconfig.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_win_dw.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkRemotableFontMgr_win_dw.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkScalerContext_win_dw.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkTypeface_win_dw.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkTypeface_win_dw.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_EBDT.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_EBLC.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_EBSC.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_gasp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkLocalMatrixShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkLocalMatrixShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkPictureShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkPictureShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkDashPath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkDashPathPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkEventTracer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkMatrix22.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkMatrix22.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkPatchUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkPatchUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkDWrite.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkDWrite.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/AlternatingColorPatternBench.cpp -FILE: ../../../third_party/skia/bench/BezierBench.cpp -FILE: ../../../third_party/skia/bench/BlurRectsBench.cpp -FILE: ../../../third_party/skia/bench/GMBench.cpp -FILE: ../../../third_party/skia/bench/GMBench.h -FILE: ../../../third_party/skia/bench/GeometryBench.cpp -FILE: ../../../third_party/skia/bench/ImageFilterCollapse.cpp -FILE: ../../../third_party/skia/bench/ImageFilterDAGBench.cpp -FILE: ../../../third_party/skia/bench/PatchBench.cpp -FILE: ../../../third_party/skia/bench/PictureNestingBench.cpp -FILE: ../../../third_party/skia/bench/RecordingBench.cpp -FILE: ../../../third_party/skia/bench/RecordingBench.h -FILE: ../../../third_party/skia/bench/RectanizerBench.cpp -FILE: ../../../third_party/skia/bench/RotatedRectBench.cpp -FILE: ../../../third_party/skia/bench/SKPBench.cpp -FILE: ../../../third_party/skia/bench/SKPBench.h -FILE: ../../../third_party/skia/bench/nanobench.cpp FILE: ../../../third_party/skia/dm/DMJsonWriter.cpp FILE: ../../../third_party/skia/dm/DMJsonWriter.h FILE: ../../../third_party/skia/gm/aaa.cpp @@ -3038,36 +3036,301 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/BigPathBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/client_utils/android/BRDAllocator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/client_utils/android/BitmapRegionDecoder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/client_utils/android/BitmapRegionDecoder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/client_utils/android/BitmapRegionDecoderPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/dm/DMSrcSink.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/dm/DMSrcSink.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/aaxfermodes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/addarc.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/all_bitmap_configs.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/anisotropic.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/annotated_text.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/badpaint.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bigrrectaaeffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bigtileimagefilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/blend.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/blurredclippedcircle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bmpfilterqualityrepeat.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/concavepaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/constcolorprocessor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/convex_all_line_paths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/draw_bitmap_rect_skbug4374.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/drawable.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/drawatlas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/drawatlascolor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/drawminibitmaprect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/fadefilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/fontscalerdistortable.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/image_pict.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/image_shader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagefilters.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagefiltersstroked.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagefilterstransformed.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagefromyuvtextures.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagesource2.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/largeglyphblur.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/lcdblendmodes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/lcdoverlap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/localmatriximagefilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/localmatriximageshader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/mipmap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/path_stroke_with_zero_length.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/pathcontourstart.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/pdf_never_embed.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/perspshaders.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/pictureimagegenerator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/plus.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/repeated_bitmap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/scaledstrokes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/skbug_257.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/smallpaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/stlouisarch.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/textblobcolortrans.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/textblobgeometrychange.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/textblobmixedsizes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/textblobrandomfont.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/textblobtransforms.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/textblobuseaftergpufree.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/transparency.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/codec/SkAndroidCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/codec/SkCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkEncodedImageFormat.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPathBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPixmap.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPngChunkReader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPoint3.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkRSXform.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkTraceMemoryDump.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkTableColorFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/GrContextOptions.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/gl/GrGLTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkFontMgr_android.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkFontMgr_directory.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkFontMgr_empty.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkFontMgr_fontconfig.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkMutex.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSemaphore.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSpinlock.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkTHash.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkThreadID.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/svg/SkSVGCanvas.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkPaintFilterCanvas.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkAndroidCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkAndroidCodecAdapter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkAndroidCodecAdapter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkBmpCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkBmpCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkBmpMaskCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkBmpMaskCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkBmpRLECodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkBmpRLECodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkBmpStandardCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkBmpStandardCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkCodecImageGenerator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkCodecImageGenerator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkIcoCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkIcoCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkJpegCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkJpegCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkJpegDecoderMgr.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkJpegDecoderMgr.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkJpegUtility.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkJpegUtility.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkMaskSwizzler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkMaskSwizzler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkMasks.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkMasks.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkPngCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkPngCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkSampledCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkSampledCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkSampler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkSampler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkSwizzler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkSwizzler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkWbmpCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkWbmpCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkWebpCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkWebpCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/Sk4px.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBigPicture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBigPicture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkFontMgr.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkLatticeIter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkLatticeIter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkLocalMatrixImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMipmapAccessor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMipmapAccessor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkNextID.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkOpts.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkOpts.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPathBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPathPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPictureImageGenerator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPixmap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPixmapPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPoint3.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRecord.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRecordPattern.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRecords.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSemaphore.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSharedMutex.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSharedMutex.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSpinlock.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTDPQueue.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkThreadID.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTime.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkXfermodeInterpretation.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkXfermodeInterpretation.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkYUVPlanesCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkYUVPlanesCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkTableColorFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkImageImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/Blend.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/Device_drawTexture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrAutoLocaleSetter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBlurUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBlurUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrCaps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDrawOpAtlas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDrawOpAtlas.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDrawOpTest.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDrawOpTest.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDrawingManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDrawingManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrFragmentProcessor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrGpuResourcePriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrManagedResource.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrNonAtomicRef.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrOpFlushState.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrOpFlushState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrPipeline.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrPipeline.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProcessorUnitTest.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrResourceProvider.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrResourceProvider.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSamplerState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSimpleMesh.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTTopoSort.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTestUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTestUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrXferProcessor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/SurfaceDrawContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/SurfaceDrawContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrBlendFragmentProcessor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrBlendFragmentProcessor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrCustomXfermode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrCustomXfermode.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrAAConvexTessellator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrAAConvexTessellator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrQuad.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrTriangulator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrTriangulator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLTextureRenderTarget.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLUniformHandler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLUniformHandler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLVaryingHandler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLBlend.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLBlend.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLProgramBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLProgramBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLProgramDataManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLUniformHandler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLVarying.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLVarying.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AALinearizingConvexPathRenderer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AALinearizingConvexPathRenderer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AtlasTextOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AtlasTextOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/ClearOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DashLinePathRenderer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DashLinePathRenderer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DrawAtlasOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DrawAtlasOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/GrDrawOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/GrMeshDrawOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/GrMeshDrawOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/GrOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/GrOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/LatticeOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/LatticeOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/TriangulatingPathRenderer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/TriangulatingPathRenderer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkCaps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkCaps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkCommandBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkCommandBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkGpu.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkGpu.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkImage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkImage.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkRenderPass.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkRenderPass.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkRenderTarget.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkRenderTarget.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkTexture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkTexture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkTextureRenderTarget.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkTextureRenderTarget.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkUtil.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkUtil.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/vk/VulkanInterface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/vk/VulkanInterface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/vk/VulkanMemory.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/vk/VulkanMemory.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkImage_Gpu.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkImage_Lazy.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkBlitMask_opts.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkBlitRow_opts.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkOpts_ssse3.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkXfermode_opts.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkDConicLineIntersection.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkDCubicToQuads.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkOpCoincidence.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsConic.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsConic.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsCurve.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsWinding.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkDocument_PDF_None.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkJpegInfo.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkJpegInfo.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFBitmap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFBitmap.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFMetadata.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFMetadata.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_android_factory.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_custom_directory_factory.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_custom_embedded_factory.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_fontconfig_factory.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_win_dw_factory.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkOSLibrary.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkOSLibrary_posix.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkOSLibrary_win.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkImageShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkImageShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/svg/SkSVGCanvas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/svg/SkSVGDevice.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/svg/SkSVGDevice.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/DistanceFieldAdjustTable.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/DistanceFieldAdjustTable.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/StrikeCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/StrikeCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/TextBlob.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/TextBlob.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/TextBlobRedrawCoordinator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/TextBlobRedrawCoordinator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkPaintFilterCanvas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/xps/SkXPSDocument.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/BigPathBench.cpp -FILE: ../../../third_party/skia/bench/BitmapRegionDecoderBench.cpp -FILE: ../../../third_party/skia/bench/BitmapRegionDecoderBench.h -FILE: ../../../third_party/skia/bench/CodecBench.cpp -FILE: ../../../third_party/skia/bench/CodecBench.h -FILE: ../../../third_party/skia/bench/CodecBenchPriv.h -FILE: ../../../third_party/skia/bench/ControlBench.cpp -FILE: ../../../third_party/skia/bench/DrawBitmapAABench.cpp -FILE: ../../../third_party/skia/bench/ImageBench.cpp -FILE: ../../../third_party/skia/bench/InterpBench.cpp -FILE: ../../../third_party/skia/bench/MathBench.cpp -FILE: ../../../third_party/skia/bench/MipmapBench.cpp -FILE: ../../../third_party/skia/bench/PictureOverheadBench.cpp -FILE: ../../../third_party/skia/bench/SKPAnimationBench.cpp -FILE: ../../../third_party/skia/bench/SKPAnimationBench.h -FILE: ../../../third_party/skia/bench/Sk4fBench.cpp -FILE: ../../../third_party/skia/bench/SkGlyphCacheBench.cpp -FILE: ../../../third_party/skia/bench/StrokeBench.cpp -FILE: ../../../third_party/skia/bench/TextBlobBench.cpp -FILE: ../../../third_party/skia/bench/TopoSortBench.cpp -FILE: ../../../third_party/skia/bench/nanobench.h FILE: ../../../third_party/skia/client_utils/android/BRDAllocator.h FILE: ../../../third_party/skia/client_utils/android/BitmapRegionDecoder.cpp FILE: ../../../third_party/skia/client_utils/android/BitmapRegionDecoder.h FILE: ../../../third_party/skia/client_utils/android/BitmapRegionDecoderPriv.h FILE: ../../../third_party/skia/dm/DMSrcSink.cpp FILE: ../../../third_party/skia/dm/DMSrcSink.h -FILE: ../../../third_party/skia/experimental/tools/coreGraphicsPdf2png.cpp FILE: ../../../third_party/skia/gm/aaxfermodes.cpp FILE: ../../../third_party/skia/gm/addarc.cpp FILE: ../../../third_party/skia/gm/all_bitmap_configs.cpp @@ -3385,6 +3648,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/src/codec/SkCodecPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkLocalMatrixImageFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkImageGenerator_none.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkImageGenerator_skia.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/src/codec/SkCodecPriv.h FILE: ../../../third_party/skia/src/core/SkLocalMatrixImageFilter.h @@ -3424,7 +3690,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/icu/scripts/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTraceEventCommon.h + ../../../LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/src/core/SkTraceEventCommon.h ---------------------------------------------------------------------------------------------------- @@ -3459,24 +3725,320 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/AndroidCodecBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/Fuzz.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/Fuzz.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/FuzzGradients.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/FuzzMain.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/FuzzParsePath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/FuzzPathop.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/animated_gif.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/animatedimageblurs.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/arcto.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bigrect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bitmapimage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/blurcircles2.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bug5252.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bug530095.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bug615686.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/circulararcs.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/clip_error.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/colorfilteralpha8.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/complexclip4.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/complexclip_blur_tiled.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/croppedrects.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/dashcircle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/drawregion.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/drawregionmodes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/encode_platform.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/encode_srgb.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/filterbug.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/hardstop_gradients.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagemakewithfilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imagemasksubset.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/lattice.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/overdrawcolorfilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/overstroke.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/pathmaskcache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/readpixels.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/rectangletexture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/rrectclipdrawpaint.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/shapes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/showmiplevels.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/simplerect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/skbug_4868.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/skbug_5321.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/stroke_rect_shader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/strokedlines.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/subsetshader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/textblobblockreordering.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/windowrectangles.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/codec/SkCodecAnimation.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkBlendMode.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkClipOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkColorSpace.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkICC.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkMilestone.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkOverdrawCanvas.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkRasterHandleAllocator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkSwizzle.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkOverdrawColorFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/vk/GrVkBackendContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/vk/GrVkExtensions.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/vk/GrVkTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkFontMgr_FontConfigInterface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkImageGeneratorCG.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkImageGeneratorWIC.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SingleOwner.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkBitmaskEnum.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkEncodedInfo.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSLIRNode.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSLLayout.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSLModifiers.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSLProgramElement.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSLStatement.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSLSymbol.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSafe_math.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkNoDrawCanvas.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/slides/SVGPongSlide.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skshaper/include/SkShaper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skshaper/src/SkShaper_harfbuzz.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skshaper/src/SkShaper_primitive.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGAttribute.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGAttributeParser.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGCircle.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGClipPath.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGContainer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGDOM.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGDefs.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGEllipse.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGG.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGHiddenContainer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGIDMapper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGLine.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGLinearGradient.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGNode.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGPath.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGPoly.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGRect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGRenderContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGSVG.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGShape.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGStop.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGTransformableNode.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGValue.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGAttribute.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGAttributeParser.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGCircle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGClipPath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGContainer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGDOM.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGEllipse.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGLine.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGLinearGradient.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGNode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGPath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGPoly.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGRect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGRenderContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGSVG.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGShape.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGStop.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGTransformableNode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGValue.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkRawCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkRawCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkATrace.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkATrace.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkAnnotationKeys.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkArenaAlloc.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkArenaAlloc.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkAutoMalloc.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkAutoPixmapStorage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkAutoPixmapStorage.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlendModePriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkColorSpace.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkColorSpacePriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCpu.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCpu.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkFuzzLogging.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkGlobalInitialization_core.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkICC.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkICCPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkImageFilterCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkImageFilterCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkLRUCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkLeanWindows.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMSAN.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMatrixPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkOverdrawCanvas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPathMeasurePriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRasterPipeline.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRasterPipeline.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRasterPipelineBlitter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRecordedDrawable.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRecordedDrawable.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScaleToSides.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkScopeExit.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSpecialImage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSpecialImage.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSpecialSurface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSpecialSurface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSwizzle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkOverdrawColorFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkArithmeticImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkShaderImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/Swizzle.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrAppliedClip.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrAuditTrail.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrAuditTrail.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrColorSpaceXform.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrColorSpaceXform.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDirectContextPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrFixedClip.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrOpsRenderPass.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrOpsRenderPass.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProgramDesc.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRenderTargetProxy.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRenderTargetProxy.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrResourceHandle.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrScissorState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrShaderVar.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrShaderVar.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrStencilSettings.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrStyle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrStyle.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSurfaceProxy.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSurfaceProxy.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTextureProxy.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTextureProxy.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTextureRenderTargetProxy.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTextureRenderTargetProxy.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrUserStencilSettings.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrWindowRectangles.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrWindowRectsState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/SurfaceContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/SurfaceContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DPipelineStateDataManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrShadowGeoProc.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrShadowGeoProc.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrStyledShape.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrStyledShape.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLOpsRenderPass.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/glfw/GrGLMakeNativeInterface_glfw.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLColorSpaceXformHelper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLProgramDataManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/GrPathStencilSettings.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/RegionOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/RegionOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/ShadowRRectOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/ShadowRRectOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkDescriptorPool.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkDescriptorPool.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkDescriptorSet.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkDescriptorSet.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkDescriptorSetManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkDescriptorSetManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkFramebuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkFramebuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkImageView.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkImageView.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkOpsRenderPass.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkOpsRenderPass.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkPipeline.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkPipeline.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkPipelineState.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkPipelineState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkPipelineStateBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkPipelineStateBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkPipelineStateCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkPipelineStateDataManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkPipelineStateDataManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkResourceProvider.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkResourceProvider.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkSampler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkSampler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkUniformHandler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkUniformHandler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkVaryingHandler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkVaryingHandler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/vk/VulkanExtensions.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/images/SkImageEncoderPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkChecksum_opts.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkOpts_avx.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkOpts_crc32.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkOpts_sse42.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkSwizzler_opts.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkBitmapKey.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFDocumentPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFMakeCIDGlyphWidthsArray.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFMakeCIDGlyphWidthsArray.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFMakeToUnicodeCmap.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontConfigInterface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_custom_empty_factory.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkImageGeneratorCG.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkImageGeneratorWIC.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkColorFilterShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkColorShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLCompiler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLCompiler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLMemoryLayout.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLProgramSettings.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLUtil.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLUtil.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLCodeGenerator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLGLSLCodeGenerator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLGLSLCodeGenerator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLMetalCodeGenerator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLMetalCodeGenerator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLSPIRVCodeGenerator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLSPIRVCodeGenerator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLBinaryExpression.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLBlock.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLBreakStatement.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLContinueStatement.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLDiscardStatement.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLDoStatement.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLExpression.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLExpressionStatement.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLExtension.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLField.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLFieldAccess.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLForStatement.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLFunctionCall.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLFunctionDeclaration.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLFunctionDefinition.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLFunctionReference.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLIfStatement.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLIndexExpression.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLInterfaceBlock.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLLiteral.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLModifiersDeclaration.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLNop.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLPostfixExpression.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLPrefixExpression.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLProgram.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLReturnStatement.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLSetting.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLSwizzle.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLSymbolTable.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLSymbolTable.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLTernaryExpression.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLType.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLType.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLTypeReference.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLVarDeclarations.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLVariable.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLVariableReference.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkMultiPictureDocument.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkMultiPictureDocument.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkMultiPictureDocumentPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkOSPath.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/AndroidCodecBench.cpp -FILE: ../../../third_party/skia/bench/AndroidCodecBench.h -FILE: ../../../third_party/skia/bench/DecodeBench.cpp -FILE: ../../../third_party/skia/bench/EncodeBench.cpp -FILE: ../../../third_party/skia/bench/GrMipmapBench.cpp -FILE: ../../../third_party/skia/bench/HardStopGradientBench_ScaleNumColors.cpp -FILE: ../../../third_party/skia/bench/HardStopGradientBench_ScaleNumHardStops.cpp -FILE: ../../../third_party/skia/bench/HardStopGradientBench_SpecialHardStops.cpp -FILE: ../../../third_party/skia/bench/ImageCacheBudgetBench.cpp -FILE: ../../../third_party/skia/bench/PDFBench.cpp -FILE: ../../../third_party/skia/bench/QuickRejectBench.cpp -FILE: ../../../third_party/skia/bench/ShapesBench.cpp -FILE: ../../../third_party/skia/bench/StreamBench.cpp -FILE: ../../../third_party/skia/bench/SwizzleBench.cpp -FILE: ../../../third_party/skia/bench/TileImageFilterBench.cpp -FILE: ../../../third_party/skia/bench/VertexColorSpaceBench.cpp FILE: ../../../third_party/skia/fuzz/Fuzz.cpp FILE: ../../../third_party/skia/fuzz/Fuzz.h FILE: ../../../third_party/skia/fuzz/FuzzGradients.cpp @@ -3896,45 +4458,10 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/infra/bots/gen_tasks_logic/gen_tasks_logic.go + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/infra/bots/gen_tasks.go -FILE: ../../../third_party/skia/infra/bots/gen_tasks_logic/gen_tasks_logic.go ----------------------------------------------------------------------------------------------------- -Copyright 2016 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDistanceFieldGenFromVector.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDistanceFieldGenFromVector.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/src/gpu/ganesh/GrDistanceFieldGenFromVector.cpp FILE: ../../../third_party/skia/src/gpu/ganesh/GrDistanceFieldGenFromVector.h @@ -3972,15 +4499,235 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/ClipMaskBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/dm/DMGpuTestProcs.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/FuzzCanvas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/alpha_image.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bitmaptiled.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/blurignorexform.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/blurimagevmask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/blurpositioning.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/blurtextsmallradii.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bug6643.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bug6783.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/circle_sizes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_691386.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_788500.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crosscontextimage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/dftext_blob_persp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/drrect_small_inner.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/encode_alpha_jpeg.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/flippity.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/highcontrastfilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/hsl.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imageblurclampmode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/imageblurrepeatmode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/jpg_color_cube.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/makecolorspace.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/manypaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/pictureshadercache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/radial_gradient_precision.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/savelayer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/shadowutils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/simple_magnification.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/srgb.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/testgradient.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/text_scale_skew.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/thinconcavepaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/android/SkAndroidFrameworkUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/codec/SkEncodedOrigin.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkDeferredDisplayList.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkDeferredDisplayListRecorder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkExecutor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkFontArguments.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPromiseImageTexture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkSerialProcs.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkSurfaceCharacterization.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkVertices.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/docs/SkXPSDocument.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkHighContrastFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/encode/SkEncoder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/encode/SkJpegEncoder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/encode/SkPngEncoder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/encode/SkWebpEncoder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/GrBackendSemaphore.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/GrBackendSurface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/mock/GrMockTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/mtl/GrMtlTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkFontMgr_mac_ct.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkImageInfoPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkMalloc.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSLString.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkShadowFlags.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkShadowUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/gm/ExternalProperties.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/gm/SkottieGM.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/include/Skottie.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/Skottie.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/SkottieValue.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGDraw.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGEffectNode.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGGeometryNode.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGGroup.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGInvalidationController.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGMerge.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGNode.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGPaint.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGPath.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGRect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGRenderNode.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGTransform.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGDraw.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGEffectNode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGGeometryNode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGGroup.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGInvalidationController.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGMerge.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGNode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGPaint.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGPath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGRect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGRenderNode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGTransform.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGGradient.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGPattern.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGRadialGradient.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGUse.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGGradient.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGPattern.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGRadialGradient.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGUse.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/android/SkAndroidFrameworkUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkBmpBaseCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkBmpBaseCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkFrameHolder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkHeifCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkHeifCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkJpegPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkParseEncodedOrigin.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkPngPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkStubHeifDecoderAPI.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkArenaAllocList.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkAutoBlitterChoose.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlendMode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkClipStackDevice.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkClipStackDevice.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDeferredDisplayListRecorder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDrawShadowInfo.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDrawShadowInfo.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDraw_vertices.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkExecutor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkFontMgrPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkGaussFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkGaussFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMaskBlurFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMaskBlurFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPromiseImageTexture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRasterClipStack.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSafeMath.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkVertices.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkWritePixelsRec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkDashImpl.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkHighContrastFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrAHardwareBufferImageGenerator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrAHardwareBufferImageGenerator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBackendSurface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBackendTextureImageGenerator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBackendTextureImageGenerator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrColorInfo.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrColorInfo.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDeferredProxyUploader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDeferredUpload.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrOnFlushResourceProvider.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrOnFlushResourceProvider.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProcessorSet.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProcessorSet.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrResourceAllocator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrResourceAllocator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSemaphore.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSurfaceProxyPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTextureProxyCacheAccess.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTextureProxyPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/SkGr.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/StencilClip.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrAtlasedShaderHelpers.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrTextureEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrTextureEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLOpsRenderPass.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLSemaphore.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLSemaphore.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLVertexGeoBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLVertexGeoBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mock/GrMockAttachment.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mock/GrMockBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mock/GrMockCaps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mock/GrMockGpu.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mock/GrMockGpu.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mock/GrMockOpsRenderPass.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mock/GrMockTexture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlCaps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlCaps.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlGpu.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlGpu.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlRenderTarget.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlRenderTarget.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlTexture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlTexture.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlTrampoline.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlTrampoline.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlUtil.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlUtil.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/ClearOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/GrSimpleMeshDrawOpHelper.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/GrSimpleMeshDrawOpHelper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/TextureOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/TextureOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkSemaphore.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkSemaphore.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkUtils_opts.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkKeyedImage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkKeyedImage.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFGradientShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFGradientShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_custom_directory.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_custom_embedded.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_custom_empty.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_mac_ct_factory.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkOSFile_ios.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_fvar.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkShaderBase.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLFileOutputStream.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLLexer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLLexer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLOutputStream.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLString.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLStringStream.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLPipelineStageCodeGenerator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLSetting.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLSwitchCase.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLSwitchStatement.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/DFA.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/DFAState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/LexUtil.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/Main.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/NFA.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/NFA.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/NFAState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/NFAtoDFA.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/RegexNode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/RegexNode.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/RegexParser.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/RegexParser.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkFloatToDecimal.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkFloatToDecimal.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkJSONWriter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkJSONWriter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkPolyUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkPolyUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkShadowTessellator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkShadowTessellator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkShadowUtils.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/ClipMaskBench.cpp -FILE: ../../../third_party/skia/bench/ClipStrategyBench.cpp -FILE: ../../../third_party/skia/bench/PathTextBench.cpp -FILE: ../../../third_party/skia/bench/ShadowBench.cpp FILE: ../../../third_party/skia/dm/DMGpuTestProcs.cpp -FILE: ../../../third_party/skia/example/HelloWorld.cpp -FILE: ../../../third_party/skia/example/HelloWorld.h FILE: ../../../third_party/skia/fuzz/FuzzCanvas.cpp FILE: ../../../third_party/skia/gm/alpha_image.cpp FILE: ../../../third_party/skia/gm/bitmaptiled.cpp @@ -4241,7 +4988,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: vulkanmemoryallocator -ORIGIN: ../../../third_party/skia/third_party/vulkanmemoryallocator/GrVulkanMemoryAllocator.cpp + ../../../third_party/skia/modules/canvaskit/npm_build/LICENSE +ORIGIN: ../../../third_party/skia/third_party/vulkanmemoryallocator/GrVulkanMemoryAllocator.cpp + ../../../third_party/skia/third_party/vulkanmemoryallocator/LICENSE +ORIGIN: ../../../third_party/skia/third_party/vulkanmemoryallocator/GrVulkanMemoryAllocator.h + ../../../third_party/skia/third_party/vulkanmemoryallocator/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/third_party/vulkanmemoryallocator/GrVulkanMemoryAllocator.cpp FILE: ../../../third_party/skia/third_party/vulkanmemoryallocator/GrVulkanMemoryAllocator.h @@ -4277,17 +5025,225 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/ClearBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/FuzzCommon.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/FuzzPathMeasure.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/FuzzRegionOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzImageFilterDeserialize.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzPathDeserialize.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzRegionDeserialize.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzRegionSetPath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/analytic_gradients.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/androidblendmodes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/b_119394958.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/clockwise.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_847759.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_884166.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_887103.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_892988.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_899512.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_905548.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/daa.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/drawimageset.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/drawquadset.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/fontregen.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/fwidth_squircle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/gradients_degenerate.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/hugepath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/localmatrixshader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/make_raster_image.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/mandoline.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/orientation.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/p3.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/pathmeasure.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/perspimages.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/polygonoffset.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/scaledemoji.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/scaledemoji_rendering.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/shadermaskfilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/sharedcorners.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/trickycubicstrokes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/unpremul.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/wacky_yuv_formats.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/android/SkAnimatedImage.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkCanvasVirtualEnforcer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkContourMeasure.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkCoverageMode.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkCubicMap.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkFontMetrics.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkFontParameters.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkFontTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkSpan.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkOpPathEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkShaderMaskFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkTrimPathEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/GrBackendDrawableInfo.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/GrDriverBugWorkarounds.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/vk/GrVkMemoryAllocator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkFontMgr_fuchsia.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkMacros.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSafe32.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkTo.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/ganesh/GrVkTypesPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/vk/SkiaVulkan.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkAnimCodecPlayer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkTextUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skcms/skcms.cc + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skcms/skcms.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skcms/skcms_internal.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skcms/src/Transform_inl.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/include/SkottieProperty.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/SkottieJson.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/SkottieJson.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/SkottiePriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/SkottieProperty.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/SkottieTest.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/SkottieTool.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/PrecompLayer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/TextLayer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/ShapeLayer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/utils/SkottieUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/utils/SkottieUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGClipEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGColorFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGGradient.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGImage.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGMaskEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGOpacityEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGPlane.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGScene.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGText.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGClipEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGColorFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGGradient.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGImage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGMaskEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGOpacityEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGPlane.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGScene.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGText.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skshaper/src/SkShaper.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/android/SkAnimatedImage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkEncodedInfo.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkParseEncodedOrigin.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkWuffsCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkWuffsCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCanvasPriv.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkChromeRemoteGlyphCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkColorSpaceXformSteps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkColorSpaceXformSteps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkContourMeasure.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCubicMap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCubicSolver.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDeferredDisplayList.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDeferredDisplayListPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDraw_text.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkFontPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkGlyph.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkIPoint16.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMaskFilterBase.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPath_serial.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPicturePriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRRectPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRectPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSafeRange.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkStrikeCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSurfaceCharacterization.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTDArray.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTextBlobPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTypeface_remote.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTypeface_remote.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkOpPE.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkOpPathEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkShaderMaskFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkTrimPE.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkTrimPathEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrContextThreadSafeProxyPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDDLContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDirectContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDriverBugWorkarounds.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrFPArgs.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProxyProvider.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProxyProvider.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrResourceProviderPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrSkSLFP.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrSkSLFP.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrYUVtoRGBEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrYUVtoRGBEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrQuad.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gradients/GrGradientBitmapCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gradients/GrGradientBitmapCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gradients/GrGradientShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gradients/GrGradientShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlAttachment.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlAttachment.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlBuffer.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlCppUtil.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlDepthStencil.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlOpsRenderPass.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlOpsRenderPass.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlPipelineState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlPipelineState.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlPipelineStateBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlPipelineStateBuilder.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlPipelineStateDataManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlPipelineStateDataManager.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlResourceProvider.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlResourceProvider.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlSampler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlSampler.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlTextureRenderTarget.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlTextureRenderTarget.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlUniformHandler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlUniformHandler.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlVaryingHandler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlVaryingHandler.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DrawableOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DrawableOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/FillRRectOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/FillRRectOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/FillRectOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/FillRectOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/QuadPerEdgeAA.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/QuadPerEdgeAA.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/StrokeRectOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/StrokeRectOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/text/GrAtlasManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/text/GrAtlasManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkCommandPool.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkCommandPool.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkImageLayout.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkSamplerYcbcrConversion.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkSamplerYcbcrConversion.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkTypesPriv.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/vk/VulkanAMDMemoryAllocator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/vk/VulkanAMDMemoryAllocator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkImage_GpuBase.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkImage_GpuBase.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkImage_GpuYUVA.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkImage_GpuYUVA.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkImage_Lazy.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkBitmapProcState_opts.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkOpts_hsw.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkRasterPipeline_opts.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsAsWinding.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pathops/SkPathOpsTCurve.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkClusterator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkClusterator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFTag.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFTag.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkFontMgr_fuchsia.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLPipelineStageCodeGenerator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLVariableReference.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/SDFMaskFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkAnimCodecPlayer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkCallableTraits.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkJSON.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkJSON.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkTextUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/mac/SkUniqueCFRef.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkDWriteNTDDI_VERSION.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/ClearBench.cpp -FILE: ../../../third_party/skia/bench/CompositingImagesBench.cpp -FILE: ../../../third_party/skia/bench/CubicMapBench.cpp -FILE: ../../../third_party/skia/bench/ImageCycleBench.cpp -FILE: ../../../third_party/skia/bench/JSONBench.cpp -FILE: ../../../third_party/skia/bench/PathOpsBench.cpp -FILE: ../../../third_party/skia/bench/PolyUtilsBench.cpp -FILE: ../../../third_party/skia/bench/ShaderMaskFilterBench.cpp -FILE: ../../../third_party/skia/bench/TypefaceBench.cpp FILE: ../../../third_party/skia/fuzz/FuzzCommon.cpp FILE: ../../../third_party/skia/fuzz/FuzzPathMeasure.cpp FILE: ../../../third_party/skia/fuzz/FuzzRegionOp.cpp @@ -4541,6 +5497,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/fuzz/FuzzEncoders.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/FuzzPolyUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/canvaskit/canvaskit_bindings.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/pathkit/pathkit_wasm_bindings.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/fuzz/FuzzEncoders.cpp FILE: ../../../third_party/skia/fuzz/FuzzPolyUtils.cpp @@ -4581,6 +5540,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/include/docs/SkPDFDocument.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFGlyphUse.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFSubsetFont.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFSubsetFont.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFUnion.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkUUID.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkUTF.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkUTF.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/include/docs/SkPDFDocument.h FILE: ../../../third_party/skia/src/pdf/SkPDFGlyphUse.h @@ -4624,7 +5590,26 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia +ORIGIN: ../../../third_party/skia/fuzz/FuzzCommon.h + ../../../third_party/skia/LICENSE ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzAPIImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzAndroidCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzAnimatedImage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzDrawFunctions.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzGradients.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzImage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzIncrementalImage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzJPEGEncoder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzJSON.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzMockGPUCanvas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzNullCanvas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzPNGEncoder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzPathMeasure.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzPathop.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzPolyUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzRasterN32Canvas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzTextBlobDeserialize.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzWEBPEncoder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/fuzz/FuzzSkottieJSON.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/fuzz/FuzzCommon.h FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzAPIImageFilter.cpp @@ -4681,6 +5666,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/src/core/SkGlyphRunPainter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkGlyphRunPainter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/GlyphRun.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/GlyphRun.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/src/core/SkGlyphRunPainter.cpp FILE: ../../../third_party/skia/src/core/SkGlyphRunPainter.h @@ -4721,12 +5709,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/include/gpu/GrDriverBugWorkaroundsAutogen.h + ../../../LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkTraceEventPhase.h + ../../../LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/include/gpu/GrDriverBugWorkaroundsAutogen.h FILE: ../../../third_party/skia/include/utils/SkTraceEventPhase.h -FILE: ../../../third_party/skia/infra/lottiecap/gold/lottie-web-aggregator.go -FILE: ../../../third_party/skia/infra/wasm-common/gold/wasm_gold_aggregator.go -FILE: ../../../third_party/skia/infra/wasm-common/perf/wasm_perf_aggregator.go ---------------------------------------------------------------------------------------------------- Copyright 2018 The Chromium Authors. All rights reserved. @@ -4759,12 +5745,154 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/experimental/ffmpeg/SkVideoDecoder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/backdrop.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/backdrop_imagefilter_croprect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bug9331.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/clip_sierpinski_region.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/collapsepaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/compositor_quads.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_913349.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_938592.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_947055.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_996140.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/ducky_yuv_blend.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/fiddle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/mac_aa_explorer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/mixercolorfilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/overdrawcanvas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/postercircle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/skbug_8664.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/skbug_8955.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/video_decoder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/yuv420_odd_dim.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkTileMode.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/GrContextThreadSafeProxy.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/GrRecordingContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/dawn/GrDawnTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkCFObject.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSLDefines.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkVx.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/ganesh/GrContext_Base.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/ganesh/GrImageContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/Composition.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/Composition.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/Layer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/Layer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/DropShadowEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/Effects.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/Effects.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/FillEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/GaussianBlurEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/GradientEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/HueSaturationEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/InvertEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/LevelsEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/LinearWipeEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/MotionBlurEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/MotionBlurEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/MotionTileEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/RadialWipeEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/ShiftChannelsEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/TintEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/TransformEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/TritoneEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/VenetianBlindsEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/FootageLayer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/NullLayer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/SolidLayer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/text/RangeSelector.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/text/RangeSelector.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/text/SkottieShaper.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/text/SkottieShaper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/text/TextAdapter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/text/TextAdapter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/text/TextAnimator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/text/TextAnimator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/text/TextValue.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/text/TextValue.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGRenderEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGNodePriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGRenderEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGTransformPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGText.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGText.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkScalingCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDescriptor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDraw_atlas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkEffectPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkEnumerate.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkGlyphBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkGlyphBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPathMakers.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkStrikeSpec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkVMBlitter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkYUVMath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkYUVMath.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkZip.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/GrAHardwareBufferUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrAHardwareBufferUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrAHardwareBufferUtils_impl.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBaseContextPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrContextThreadSafeProxy.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrContext_Base.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrCpuBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDataUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDataUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDirectContextPriv.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrGpuBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrGpuBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrImageContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrImageContextPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRecordingContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRecordingContextPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSPIRVUniformHandler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSPIRVUniformHandler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSPIRVVaryingHandler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSPIRVVaryingHandler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnAttachment.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnAttachment.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnCaps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnCaps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnGpu.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnGpu.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnOpsRenderPass.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnOpsRenderPass.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnProgramBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnProgramBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnProgramDataManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnProgramDataManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnRenderTarget.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnRenderTarget.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnRingBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnRingBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnTexture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnTexture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnTextureRenderTarget.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnTextureRenderTarget.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnUtil.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnUtil.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlCommandBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlCommandBuffer.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlDepthStencil.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlSemaphore.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlSemaphore.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/OpsTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/OpsTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkSecondaryCBDrawContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkSecondaryCBDrawContext_impl.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/vk/GrVkSecondaryCBDrawContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkSurface_GpuMtl.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLOutputStream.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/StrikeForGPU.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkCharToGlyphCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkCharToGlyphCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkClipStackUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkClipStackUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/win/SkObjBase.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/experimental/ffmpeg/SkVideoDecoder.cpp -FILE: ../../../third_party/skia/experimental/ffmpeg/SkVideoDecoder.h -FILE: ../../../third_party/skia/experimental/ffmpeg/SkVideoEncoder.cpp -FILE: ../../../third_party/skia/experimental/ffmpeg/SkVideoEncoder.h FILE: ../../../third_party/skia/gm/backdrop.cpp FILE: ../../../third_party/skia/gm/backdrop_imagefilter_croprect.cpp FILE: ../../../third_party/skia/gm/bug9331.cpp @@ -4946,11 +6074,80 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/BulkRectBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/asyncrescaleandread.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_908646.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_946965.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/patharcto.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/runtimecolorfilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/runtimefunctions.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/runtimeintrinsics.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/runtimeshader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/skbug_9319.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkImageFilters.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkRuntimeEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/gl/GrGLAssembleHelpers.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkThreadAnnotations.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/ganesh/GrGLTypesPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/canvaskit/WasmCommon.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/canvaskit/debugger_bindings.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/canvaskit/paragraph_bindings.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/canvaskit/particles_bindings.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/canvaskit/skottie_bindings.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/particles/include/SkParticleBinding.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/particles/include/SkParticleData.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/particles/include/SkParticleDrawable.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/particles/include/SkParticleEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/particles/include/SkParticleSerialization.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/particles/include/SkReflected.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/particles/src/SkParticleBinding.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/particles/src/SkParticleDrawable.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/particles/src/SkParticleEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/particles/src/SkReflected.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skresources/include/SkResources.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skresources/src/SkResources.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkImageFilterTypes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkImageFilterTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkImageFilter_Base.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRuntimeEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkVM.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkVM.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/AsyncReadTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/Swizzle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrClientMappedBufferManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrClientMappedBufferManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrCopyRenderTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrCopyRenderTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrImageInfo.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrPersistentCacheUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProgramInfo.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrProgramInfo.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRenderTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRenderTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSurfaceProxyView.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTextureResolveManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTextureResolveRenderTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTextureResolveRenderTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTransferFromRenderTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrTransferFromRenderTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrUtil.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrWaitRenderTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrWaitRenderTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrQuadBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrQuadUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrQuadUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLAssembleGLESInterfaceAutogen.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLAssembleGLInterfaceAutogen.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLAssembleHelpers.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLAssembleWebGLInterfaceAutogen.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/GrGLTypesPriv.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mock/GrMockCaps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mock/GrMockTypes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLExternalFunction.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLExternalFunctionCall.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLExternalFunctionReference.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkShaderUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkShaderUtils.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/BulkRectBench.cpp -FILE: ../../../third_party/skia/bench/DDLRecorderBench.cpp -FILE: ../../../third_party/skia/bench/SkSLBench.cpp FILE: ../../../third_party/skia/gm/asyncrescaleandread.cpp FILE: ../../../third_party/skia/gm/crbug_908646.cpp FILE: ../../../third_party/skia/gm/crbug_946965.cpp @@ -5058,1047 +6255,126 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/ShaperBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skparagraph/include/DartTypes.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/include/FontArguments.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/include/FontCollection.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/include/Metrics.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/include/Paragraph.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/include/ParagraphBuilder.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/include/ParagraphCache.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/include/ParagraphPainter.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/include/ParagraphStyle.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/include/TextShadow.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/include/TextStyle.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/include/TypefaceFontProvider.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/slides/ParagraphSlide.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/FontArguments.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/FontCollection.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/Iterators.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/OneLineShaper.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/OneLineShaper.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/ParagraphBuilderImpl.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/ParagraphBuilderImpl.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/ParagraphCache.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/ParagraphImpl.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/ParagraphImpl.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/ParagraphPainterImpl.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/ParagraphPainterImpl.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/ParagraphStyle.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/Run.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/Run.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/TextLine.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/TextLine.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/TextShadow.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/TextStyle.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/TextWrapper.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/TextWrapper.h +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/TypefaceFontProvider.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/utils/TestFontCollection.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/utils/TestFontCollection.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/skia/modules/skparagraph/include/DartTypes.h +FILE: ../../../third_party/skia/modules/skparagraph/include/FontArguments.h +FILE: ../../../third_party/skia/modules/skparagraph/include/FontCollection.h +FILE: ../../../third_party/skia/modules/skparagraph/include/Metrics.h +FILE: ../../../third_party/skia/modules/skparagraph/include/Paragraph.h +FILE: ../../../third_party/skia/modules/skparagraph/include/ParagraphBuilder.h +FILE: ../../../third_party/skia/modules/skparagraph/include/ParagraphCache.h +FILE: ../../../third_party/skia/modules/skparagraph/include/ParagraphPainter.h +FILE: ../../../third_party/skia/modules/skparagraph/include/ParagraphStyle.h +FILE: ../../../third_party/skia/modules/skparagraph/include/TextShadow.h +FILE: ../../../third_party/skia/modules/skparagraph/include/TextStyle.h +FILE: ../../../third_party/skia/modules/skparagraph/include/TypefaceFontProvider.h +FILE: ../../../third_party/skia/modules/skparagraph/slides/ParagraphSlide.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/FontArguments.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/FontCollection.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/Iterators.h +FILE: ../../../third_party/skia/modules/skparagraph/src/OneLineShaper.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/OneLineShaper.h +FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphBuilderImpl.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphBuilderImpl.h +FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphCache.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphImpl.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphImpl.h +FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphPainterImpl.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphPainterImpl.h +FILE: ../../../third_party/skia/modules/skparagraph/src/ParagraphStyle.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/Run.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/Run.h +FILE: ../../../third_party/skia/modules/skparagraph/src/TextLine.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/TextLine.h +FILE: ../../../third_party/skia/modules/skparagraph/src/TextShadow.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/TextStyle.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/TextWrapper.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/TextWrapper.h +FILE: ../../../third_party/skia/modules/skparagraph/src/TypefaceFontProvider.cpp +FILE: ../../../third_party/skia/modules/skparagraph/utils/TestFontCollection.cpp +FILE: ../../../third_party/skia/modules/skparagraph/utils/TestFontCollection.h +---------------------------------------------------------------------------------------------------- +Copyright 2019 Google LLC. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/gm/crbug_918512.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/fp_sample_chaining.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/fpcoordinateoverride.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/inverseclip.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/labyrinth.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/manypathatlases.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/preservefillrule.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/swizzle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/tilemodes_alpha.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPathTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skparagraph/bench/ParagraphBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skplaintexteditor/app/editor_application.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skplaintexteditor/include/editor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skplaintexteditor/include/stringslice.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skplaintexteditor/include/stringview.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skplaintexteditor/src/editor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skplaintexteditor/src/shape.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skplaintexteditor/src/shape.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skplaintexteditor/src/stringslice.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skplaintexteditor/src/word_boundaries.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skplaintexteditor/src/word_boundaries.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkContainers.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMalloc.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPixelRefPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTextBlobTrace.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkTextBlobTrace.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AtlasPathRenderer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AtlasPathRenderer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/PathInnerTriangulateOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/PathInnerTriangulateOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/TessellationPathRenderer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/TessellationPathRenderer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/tessellate/GrPathTessellationShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/tessellate/GrPathTessellationShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFGraphicStackState.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFGraphicStackState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFType1Font.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/pdf/SkPDFType1Font.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/ShaperBench.cpp -FILE: ../../../third_party/skia/bench/SkGlyphCacheBench.h -FILE: ../../../third_party/skia/docs/examples/Alpha_Constants_a.cpp -FILE: ../../../third_party/skia/docs/examples/Alpha_Constants_b.cpp -FILE: ../../../third_party/skia/docs/examples/Alpha_Type_Opaque.cpp -FILE: ../../../third_party/skia/docs/examples/Alpha_Type_Premul.cpp -FILE: ../../../third_party/skia/docs/examples/Alpha_Type_Unpremul.cpp -FILE: ../../../third_party/skia/docs/examples/Anti_Alias.cpp -FILE: ../../../third_party/skia/docs/examples/Arc.cpp -FILE: ../../../third_party/skia/docs/examples/AutoCanvasRestore_SkCanvas_star.cpp -FILE: ../../../third_party/skia/docs/examples/AutoCanvasRestore_restore.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_012.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_ComputeIsOpaque.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_HeapAllocator_allocPixelRef.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_allocN32Pixels.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_allocPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_allocPixelsFlags.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_bounds.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_bytesPerPixel.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_colorSpace.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_colorType.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_computeByteSize.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_copy_const_SkBitmap.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_copy_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_dimensions.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_drawsNothing.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_empty.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_empty_constructor.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_erase.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_eraseARGB.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_eraseColor.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_extractAlpha.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_extractAlpha_2.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_extractAlpha_3.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_extractSubset.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_getAddr.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_getAddr16.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_getAddr32.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_getAddr8.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_getBounds.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_getBounds_2.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_getColor.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_getGenerationID.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_getPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_getSubset.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_height.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_info.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_installPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_installPixels_2.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_installPixels_3.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_isImmutable.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_isNull.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_isOpaque.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_move_SkBitmap.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_move_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_notifyPixelsChanged.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_peekPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_pixelRef.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_pixelRefOrigin.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_pixmap.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_readPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_readPixels_2.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_readPixels_3.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_readyToDraw.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_refColorSpace.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_reset.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_rowBytes.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_rowBytesAsPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_setAlphaType.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_setImmutable.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_setInfo.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_setPixelRef.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_setPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_shiftPerPixel.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_swap.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_tryAllocN32Pixels.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_tryAllocPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_tryAllocPixelsFlags.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_tryAllocPixels_2.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_tryAllocPixels_3.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_tryAllocPixels_4.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_width.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_writePixels.cpp -FILE: ../../../third_party/skia/docs/examples/Bitmap_writePixels_2.cpp -FILE: ../../../third_party/skia/docs/examples/Blend_Mode_Methods.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_129.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_MakeRasterDirect.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_MakeRasterDirectN32.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_PointMode.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_SaveLayerRec.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_SaveLayerRec_SaveLayerRec.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_SaveLayerRec_const_SkRect_star_const_SkPaint_star.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_SaveLayerRec_const_SkRect_star_const_SkPaint_star_const_SkImageFilter_star.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_SrcRectConstraint.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_accessTopLayerPixels_a.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_accessTopLayerPixels_b.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_accessTopRasterHandle.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_clear.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_clipPath.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_clipPath_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_clipPath_3.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_clipRRect.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_clipRRect_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_clipRRect_3.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_clipRect.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_clipRect_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_clipRect_3.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_clipRegion.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_concat.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_const_SkBitmap_const_SkSurfaceProps.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_copy_const_SkBitmap.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_destructor.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawAnnotation_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawArc_a.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawArc_b.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawAtlas.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawAtlas_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawBitmap.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawBitmapRect.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawBitmapRect_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawBitmapRect_3.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawCircle.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawCircle_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawColor.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawDRRect_a.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawDRRect_b.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawDrawable.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawDrawable_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawIRect.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawImage.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawImageNine.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawImageNine_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawImageRect.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawImageRect_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawImageRect_3.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawImageRect_4.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawImageRect_5.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawImageRect_6.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawImage_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawLine.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawLine_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawOval.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawPaint.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawPatch.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawPatch_2_a.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawPatch_2_b.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawPath.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawPicture_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawPicture_3.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawPicture_4.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawPoint.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawPoint_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawPoints.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawPosText.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawPosTextH.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawRRect.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawRect.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawRegion.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawRoundRect.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawString.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawString_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawText.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawTextBlob.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawTextBlob_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawTextRSXform.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawVertices.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_drawVertices_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_empty_constructor.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_getBaseLayerSize.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_getContext.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_getDeviceClipBounds.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_getDeviceClipBounds_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_getLocalClipBounds.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_getLocalClipBounds_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_getProps.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_getSaveCount.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_getTotalMatrix.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_imageInfo.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_int_int_const_SkSurfaceProps_star.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_isClipEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_isClipRect.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_kInitWithPrevious_SaveLayerFlag.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_makeSurface.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_peekPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_quickReject.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_quickReject_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_readPixels_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_readPixels_3.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_readPixels_a.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_readPixels_b.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_resetMatrix.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_restore.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_restoreToCount.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_rotate.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_rotate_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_save.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_saveLayer.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_saveLayerAlpha.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_saveLayerPreserveLCDTextRequests.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_saveLayer_2.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_saveLayer_3.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_scale.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_setMatrix.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_skew.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_translate.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_writePixels.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_writePixels_2.cpp -FILE: ../../../third_party/skia/docs/examples/Clear.cpp -FILE: ../../../third_party/skia/docs/examples/Clip.cpp -FILE: ../../../third_party/skia/docs/examples/Color.cpp -FILE: ../../../third_party/skia/docs/examples/ColorGetA.cpp -FILE: ../../../third_party/skia/docs/examples/ColorGetB.cpp -FILE: ../../../third_party/skia/docs/examples/ColorGetG.cpp -FILE: ../../../third_party/skia/docs/examples/ColorGetR.cpp -FILE: ../../../third_party/skia/docs/examples/ColorSetA.cpp -FILE: ../../../third_party/skia/docs/examples/ColorSetARGB.cpp -FILE: ../../../third_party/skia/docs/examples/ColorSetRGB.cpp -FILE: ../../../third_party/skia/docs/examples/ColorToHSV.cpp -FILE: ../../../third_party/skia/docs/examples/ColorTypeBytesPerPixel.cpp -FILE: ../../../third_party/skia/docs/examples/ColorTypeIsAlwaysOpaque.cpp -FILE: ../../../third_party/skia/docs/examples/ColorTypeValidateAlphaType.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Burn.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Constants_a.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Constants_b.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Constants_c.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Constants_d.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Dodge.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Filter_Methods.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Methods.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Type_ARGB_4444.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Type_Alpha_8.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Type_BGRA_8888.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Type_Gray_8.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Type_RGBA_1010102.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Type_RGBA_8888.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Type_RGBA_F16.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Type_RGB_101010.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Type_RGB_565.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Type_RGB_888.cpp -FILE: ../../../third_party/skia/docs/examples/Colors.cpp -FILE: ../../../third_party/skia/docs/examples/Conic_Weight_a.cpp -FILE: ../../../third_party/skia/docs/examples/Conic_Weight_b.cpp -FILE: ../../../third_party/skia/docs/examples/Conic_Weight_c.cpp -FILE: ../../../third_party/skia/docs/examples/Cubic.cpp -FILE: ../../../third_party/skia/docs/examples/Darken.cpp -FILE: ../../../third_party/skia/docs/examples/Device_Text.cpp -FILE: ../../../third_party/skia/docs/examples/Difference.cpp -FILE: ../../../third_party/skia/docs/examples/Dither_a.cpp -FILE: ../../../third_party/skia/docs/examples/Dither_b.cpp -FILE: ../../../third_party/skia/docs/examples/Dst.cpp -FILE: ../../../third_party/skia/docs/examples/Dst_Atop.cpp -FILE: ../../../third_party/skia/docs/examples/Dst_In.cpp -FILE: ../../../third_party/skia/docs/examples/Dst_Out.cpp -FILE: ../../../third_party/skia/docs/examples/Dst_Over.cpp -FILE: ../../../third_party/skia/docs/examples/Exclusion.cpp -FILE: ../../../third_party/skia/docs/examples/Fake_Bold.cpp -FILE: ../../../third_party/skia/docs/examples/FillPathWithPaint.cpp -FILE: ../../../third_party/skia/docs/examples/FillPathWithPaint_2.cpp -FILE: ../../../third_party/skia/docs/examples/Font_breakText.cpp -FILE: ../../../third_party/skia/docs/examples/HSVToColor.cpp -FILE: ../../../third_party/skia/docs/examples/HSVToColor_2.cpp -FILE: ../../../third_party/skia/docs/examples/Hard_Light.cpp -FILE: ../../../third_party/skia/docs/examples/Hue.cpp -FILE: ../../../third_party/skia/docs/examples/IPoint_Make.cpp -FILE: ../../../third_party/skia/docs/examples/IPoint_add_operator.cpp -FILE: ../../../third_party/skia/docs/examples/IPoint_addto_operator.cpp -FILE: ../../../third_party/skia/docs/examples/IPoint_equal_operator.cpp -FILE: ../../../third_party/skia/docs/examples/IPoint_equals.cpp -FILE: ../../../third_party/skia/docs/examples/IPoint_isZero.cpp -FILE: ../../../third_party/skia/docs/examples/IPoint_minus_operator.cpp -FILE: ../../../third_party/skia/docs/examples/IPoint_notequal_operator.cpp -FILE: ../../../third_party/skia/docs/examples/IPoint_set.cpp -FILE: ../../../third_party/skia/docs/examples/IPoint_subtract_operator.cpp -FILE: ../../../third_party/skia/docs/examples/IPoint_subtractfrom_operator.cpp -FILE: ../../../third_party/skia/docs/examples/IPoint_x.cpp -FILE: ../../../third_party/skia/docs/examples/IPoint_y.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_Intersects.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_MakeEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_MakeLTRB.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_MakeSize.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_MakeWH.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_MakeXYWH.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_adjust.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_bottom.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_contains.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_containsNoEmptyCheck.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_containsNoEmptyCheck_2.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_contains_3.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_contains_4.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_equal_operator.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_height.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_height64.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_inset.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_intersect.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_intersect_2.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_isEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_isEmpty64.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_join_2.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_left.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_makeInset.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_makeOffset.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_makeOutset.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_makeSorted.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_notequal_operator.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_offset.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_offsetTo.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_offset_2.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_outset.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_right.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_setEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_setLTRB.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_setXYWH.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_size.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_sort.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_top.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_width.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_width64.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_x.cpp -FILE: ../../../third_party/skia/docs/examples/IRect_y.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_ByteSizeOverflowed.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_Make.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_MakeA8.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_MakeN32.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_MakeN32Premul.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_MakeN32Premul_2.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_MakeS32.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_MakeUnknown.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_MakeUnknown_2.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_alphaType.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_bounds.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_bytesPerPixel.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_colorSpace.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_colorType.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_computeByteSize.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_computeMinByteSize.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_computeOffset.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_dimensions.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_empty_constructor.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_equal1_operator.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_gammaCloseToSRGB.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_height.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_isEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_isOpaque.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_makeColorSpace.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_makeWH.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_minRowBytes.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_minRowBytes64.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_notequal1_operator.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_refColorSpace.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_reset.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_shiftPerPixel.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_validRowBytes.cpp -FILE: ../../../third_party/skia/docs/examples/ImageInfo_width.cpp -FILE: ../../../third_party/skia/docs/examples/Image_Filter_Methods.cpp -FILE: ../../../third_party/skia/docs/examples/Image_MakeBackendTextureFromSkImage.cpp -FILE: ../../../third_party/skia/docs/examples/Image_MakeCrossContextFromPixmap.cpp -FILE: ../../../third_party/skia/docs/examples/Image_MakeFromAdoptedTexture.cpp -FILE: ../../../third_party/skia/docs/examples/Image_MakeFromBitmap.cpp -FILE: ../../../third_party/skia/docs/examples/Image_MakeFromEncoded.cpp -FILE: ../../../third_party/skia/docs/examples/Image_MakeFromGenerator.cpp -FILE: ../../../third_party/skia/docs/examples/Image_MakeFromPicture.cpp -FILE: ../../../third_party/skia/docs/examples/Image_MakeFromRaster.cpp -FILE: ../../../third_party/skia/docs/examples/Image_MakeFromTexture.cpp -FILE: ../../../third_party/skia/docs/examples/Image_MakeFromTexture_2.cpp -FILE: ../../../third_party/skia/docs/examples/Image_MakeRasterCopy.cpp -FILE: ../../../third_party/skia/docs/examples/Image_MakeRasterData.cpp -FILE: ../../../third_party/skia/docs/examples/Image_alphaType.cpp -FILE: ../../../third_party/skia/docs/examples/Image_bounds.cpp -FILE: ../../../third_party/skia/docs/examples/Image_colorSpace.cpp -FILE: ../../../third_party/skia/docs/examples/Image_colorType.cpp -FILE: ../../../third_party/skia/docs/examples/Image_dimensions.cpp -FILE: ../../../third_party/skia/docs/examples/Image_encodeToData.cpp -FILE: ../../../third_party/skia/docs/examples/Image_encodeToData_2.cpp -FILE: ../../../third_party/skia/docs/examples/Image_getBackendTexture.cpp -FILE: ../../../third_party/skia/docs/examples/Image_height.cpp -FILE: ../../../third_party/skia/docs/examples/Image_isAlphaOnly.cpp -FILE: ../../../third_party/skia/docs/examples/Image_isLazyGenerated_a.cpp -FILE: ../../../third_party/skia/docs/examples/Image_isLazyGenerated_b.cpp -FILE: ../../../third_party/skia/docs/examples/Image_isOpaque.cpp -FILE: ../../../third_party/skia/docs/examples/Image_isTextureBacked.cpp -FILE: ../../../third_party/skia/docs/examples/Image_isValid.cpp -FILE: ../../../third_party/skia/docs/examples/Image_makeColorSpace.cpp -FILE: ../../../third_party/skia/docs/examples/Image_makeNonTextureImage.cpp -FILE: ../../../third_party/skia/docs/examples/Image_makeRasterImage.cpp -FILE: ../../../third_party/skia/docs/examples/Image_makeShader.cpp -FILE: ../../../third_party/skia/docs/examples/Image_makeShader_2.cpp -FILE: ../../../third_party/skia/docs/examples/Image_makeSubset.cpp -FILE: ../../../third_party/skia/docs/examples/Image_makeTextureImage.cpp -FILE: ../../../third_party/skia/docs/examples/Image_makeWithFilter.cpp -FILE: ../../../third_party/skia/docs/examples/Image_peekPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Image_readPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Image_readPixels_2.cpp -FILE: ../../../third_party/skia/docs/examples/Image_refColorSpace.cpp -FILE: ../../../third_party/skia/docs/examples/Image_refEncodedData.cpp -FILE: ../../../third_party/skia/docs/examples/Image_scalePixels.cpp -FILE: ../../../third_party/skia/docs/examples/Image_uniqueID.cpp -FILE: ../../../third_party/skia/docs/examples/Image_width.cpp -FILE: ../../../third_party/skia/docs/examples/Lighten.cpp -FILE: ../../../third_party/skia/docs/examples/Luminosity.cpp -FILE: ../../../third_party/skia/docs/examples/Mask_Filter_Methods.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_063.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_Concat.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_I.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_InvalidMatrix.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_MakeAll.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_MakeRectToRect.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_MakeScale.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_MakeTrans.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_ScaleToFit.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_SetAffineIdentity.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_TypeMask.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_array_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_asAffine.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_decomposeScale.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_dirtyMatrixTypeCache.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_dump.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_get.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_get9.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_getMaxScale.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_getMinMaxScales.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_getMinScale.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_getPerspX.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_getPerspY.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_getScaleX.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_getScaleY.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_getSkewX.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_getSkewY.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_getTranslateX.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_getTranslateY.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_getType.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_hasPerspective.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_invert.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_isFinite.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_isIdentity.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_isScaleTranslate.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_isSimilarity.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_isTranslate.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapHomogeneousPoints.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapPoints.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapPoints_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapRadius.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapRect.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapRectScaleTranslate.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapRectToQuad.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapRect_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapRect_3.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapVector.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapVector_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapVectors.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapVectors_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapXY.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_mapXY_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_postConcat.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_postRotate.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_postRotate_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_postScale.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_postScale_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_postSkew.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_postSkew_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_postTranslate.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_preConcat.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_preRotate.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_preRotate_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_preScale.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_preScale_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_preSkew.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_preSkew_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_preTranslate.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_preservesAxisAlignment.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_preservesRightAngles.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_rectStaysRect.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_reset.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_set.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_set9.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setAffine.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setAll.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setConcat.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setIdentity.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setPerspX.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setPerspY.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setPolyToPoly.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setRSXform.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setRotate.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setRotate_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setScale.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setScaleTranslate.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setScaleX.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setScaleY.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setScale_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setSinCos.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setSinCos_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setSkew.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setSkewX.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setSkewY.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setSkew_2.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setTranslate.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setTranslateX.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setTranslateY.cpp -FILE: ../../../third_party/skia/docs/examples/Matrix_setTranslate_2.cpp -FILE: ../../../third_party/skia/docs/examples/MemberIndex.cpp -FILE: ../../../third_party/skia/docs/examples/Miter_Limit.cpp -FILE: ../../../third_party/skia/docs/examples/Modulate.cpp -FILE: ../../../third_party/skia/docs/examples/Multiply.cpp -FILE: ../../../third_party/skia/docs/examples/Overlay.cpp -FILE: ../../../third_party/skia/docs/examples/PDF.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_053.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_057.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_containsText.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_copy_const_SkPaint.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_copy_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_countText.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_empty_constructor.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_equal_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getAlpha.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getColor.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getColor4f.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getColorFilter.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getFlags.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getFontMetrics.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getFontSpacing.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getHinting.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getImageFilter.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getMaskFilter.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getPathEffect.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getPosTextPath.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getShader.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getStrokeCap.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getStrokeJoin.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getStrokeMiter.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getStrokeWidth.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getStyle.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getTextEncoding.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getTextPath.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getTextScaleX.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getTextSize.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getTextSkewX.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getTextWidths.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_getTypeface.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_isAntiAlias.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_isAutohinted.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_isDither.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_isEmbeddedBitmapText.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_isFakeBoldText.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_isLCDRenderText.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_isLinearText.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_isSubpixelText.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_measureText.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_measureText_2.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_move_SkPaint.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_move_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_notequal_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_nothingToDraw.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_refColorFilter.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_refImageFilter.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_refMaskFilter.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_refPathEffect.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_refShader.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_refTypeface.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_reset.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setARGB.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setAlpha.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setAntiAlias.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setAutohinted.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setBlendMode.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setColor.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setColor4f.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setColorFilter.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setDither.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setEmbeddedBitmapText.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setFakeBoldText.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setFlags.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setHinting.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setImageFilter.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setLCDRenderText.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setLinearText.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setMaskFilter.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setPathEffect.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setShader.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setStrokeCap_a.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setStrokeCap_b.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setStrokeJoin.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setStrokeMiter.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setStrokeWidth.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setStyle.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setSubpixelText.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setTextEncoding.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setTextScaleX.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setTextSize.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setTextSkewX.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_setTypeface.cpp -FILE: ../../../third_party/skia/docs/examples/Paint_textToGlyphs.cpp -FILE: ../../../third_party/skia/docs/examples/Path_AddPathMode.cpp -FILE: ../../../third_party/skia/docs/examples/Path_ArcSize.cpp -FILE: ../../../third_party/skia/docs/examples/Path_ConvertConicToQuads.cpp -FILE: ../../../third_party/skia/docs/examples/Path_ConvertToNonInverseFillType.cpp -FILE: ../../../third_party/skia/docs/examples/Path_Convexity.cpp -FILE: ../../../third_party/skia/docs/examples/Path_Direction.cpp -FILE: ../../../third_party/skia/docs/examples/Path_Effect_Methods.cpp -FILE: ../../../third_party/skia/docs/examples/Path_FillType_a.cpp -FILE: ../../../third_party/skia/docs/examples/Path_FillType_b.cpp -FILE: ../../../third_party/skia/docs/examples/Path_IsCubicDegenerate.cpp -FILE: ../../../third_party/skia/docs/examples/Path_IsInverseFillType.cpp -FILE: ../../../third_party/skia/docs/examples/Path_IsLineDegenerate.cpp -FILE: ../../../third_party/skia/docs/examples/Path_IsQuadDegenerate.cpp -FILE: ../../../third_party/skia/docs/examples/Path_Iter.cpp -FILE: ../../../third_party/skia/docs/examples/Path_Iter_Iter.cpp -FILE: ../../../third_party/skia/docs/examples/Path_Iter_conicWeight.cpp -FILE: ../../../third_party/skia/docs/examples/Path_Iter_const_SkPath.cpp -FILE: ../../../third_party/skia/docs/examples/Path_Iter_isCloseLine.cpp -FILE: ../../../third_party/skia/docs/examples/Path_Iter_isClosedContour.cpp -FILE: ../../../third_party/skia/docs/examples/Path_Iter_next.cpp -FILE: ../../../third_party/skia/docs/examples/Path_Iter_setPath.cpp -FILE: ../../../third_party/skia/docs/examples/Path_SegmentMask.cpp -FILE: ../../../third_party/skia/docs/examples/Path_Verb.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addArc.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addCircle.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addOval.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addOval_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addPath.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addPath_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addPath_3.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addPoly.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addPoly_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addRRect.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addRRect_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addRect.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addRect_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addRect_3.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addRoundRect.cpp -FILE: ../../../third_party/skia/docs/examples/Path_addRoundRect_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_arcTo.cpp -FILE: ../../../third_party/skia/docs/examples/Path_arcTo_2_a.cpp -FILE: ../../../third_party/skia/docs/examples/Path_arcTo_2_b.cpp -FILE: ../../../third_party/skia/docs/examples/Path_arcTo_2_c.cpp -FILE: ../../../third_party/skia/docs/examples/Path_arcTo_3.cpp -FILE: ../../../third_party/skia/docs/examples/Path_arcTo_4.cpp -FILE: ../../../third_party/skia/docs/examples/Path_close.cpp -FILE: ../../../third_party/skia/docs/examples/Path_computeTightBounds.cpp -FILE: ../../../third_party/skia/docs/examples/Path_conicTo.cpp -FILE: ../../../third_party/skia/docs/examples/Path_conicTo_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_conservativelyContainsRect.cpp -FILE: ../../../third_party/skia/docs/examples/Path_contains.cpp -FILE: ../../../third_party/skia/docs/examples/Path_copy_const_SkPath.cpp -FILE: ../../../third_party/skia/docs/examples/Path_copy_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Path_countPoints.cpp -FILE: ../../../third_party/skia/docs/examples/Path_countVerbs.cpp -FILE: ../../../third_party/skia/docs/examples/Path_cubicTo.cpp -FILE: ../../../third_party/skia/docs/examples/Path_cubicTo_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_destructor.cpp -FILE: ../../../third_party/skia/docs/examples/Path_dump.cpp -FILE: ../../../third_party/skia/docs/examples/Path_dumpHex.cpp -FILE: ../../../third_party/skia/docs/examples/Path_dump_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_empty_constructor.cpp -FILE: ../../../third_party/skia/docs/examples/Path_equal_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Path_getBounds.cpp -FILE: ../../../third_party/skia/docs/examples/Path_getFillType.cpp -FILE: ../../../third_party/skia/docs/examples/Path_getGenerationID.cpp -FILE: ../../../third_party/skia/docs/examples/Path_getLastPt.cpp -FILE: ../../../third_party/skia/docs/examples/Path_getPoint.cpp -FILE: ../../../third_party/skia/docs/examples/Path_getPoints.cpp -FILE: ../../../third_party/skia/docs/examples/Path_getSegmentMasks.cpp -FILE: ../../../third_party/skia/docs/examples/Path_getVerbs.cpp -FILE: ../../../third_party/skia/docs/examples/Path_incReserve.cpp -FILE: ../../../third_party/skia/docs/examples/Path_interpolate.cpp -FILE: ../../../third_party/skia/docs/examples/Path_isConvex.cpp -FILE: ../../../third_party/skia/docs/examples/Path_isEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/Path_isFinite.cpp -FILE: ../../../third_party/skia/docs/examples/Path_isInterpolatable.cpp -FILE: ../../../third_party/skia/docs/examples/Path_isInverseFillType_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_isLastContourClosed.cpp -FILE: ../../../third_party/skia/docs/examples/Path_isLine.cpp -FILE: ../../../third_party/skia/docs/examples/Path_isOval.cpp -FILE: ../../../third_party/skia/docs/examples/Path_isRRect.cpp -FILE: ../../../third_party/skia/docs/examples/Path_isRect.cpp -FILE: ../../../third_party/skia/docs/examples/Path_isVolatile.cpp -FILE: ../../../third_party/skia/docs/examples/Path_lineTo.cpp -FILE: ../../../third_party/skia/docs/examples/Path_lineTo_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_moveTo.cpp -FILE: ../../../third_party/skia/docs/examples/Path_moveTo_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_offset.cpp -FILE: ../../../third_party/skia/docs/examples/Path_offset_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_quadTo.cpp -FILE: ../../../third_party/skia/docs/examples/Path_quadTo_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_rArcTo.cpp -FILE: ../../../third_party/skia/docs/examples/Path_rConicTo.cpp -FILE: ../../../third_party/skia/docs/examples/Path_rCubicTo.cpp -FILE: ../../../third_party/skia/docs/examples/Path_rLineTo.cpp -FILE: ../../../third_party/skia/docs/examples/Path_rMoveTo.cpp -FILE: ../../../third_party/skia/docs/examples/Path_rQuadTo.cpp -FILE: ../../../third_party/skia/docs/examples/Path_readFromMemory.cpp -FILE: ../../../third_party/skia/docs/examples/Path_reset.cpp -FILE: ../../../third_party/skia/docs/examples/Path_reverseAddPath.cpp -FILE: ../../../third_party/skia/docs/examples/Path_rewind.cpp -FILE: ../../../third_party/skia/docs/examples/Path_serialize.cpp -FILE: ../../../third_party/skia/docs/examples/Path_setFillType.cpp -FILE: ../../../third_party/skia/docs/examples/Path_setIsVolatile.cpp -FILE: ../../../third_party/skia/docs/examples/Path_setLastPt.cpp -FILE: ../../../third_party/skia/docs/examples/Path_setLastPt_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_swap.cpp -FILE: ../../../third_party/skia/docs/examples/Path_toggleInverseFillType.cpp -FILE: ../../../third_party/skia/docs/examples/Path_transform.cpp -FILE: ../../../third_party/skia/docs/examples/Path_transform_2.cpp -FILE: ../../../third_party/skia/docs/examples/Path_updateBoundsCache.cpp -FILE: ../../../third_party/skia/docs/examples/Path_writeToMemory.cpp -FILE: ../../../third_party/skia/docs/examples/Picture_008.cpp -FILE: ../../../third_party/skia/docs/examples/Picture_AbortCallback_abort.cpp -FILE: ../../../third_party/skia/docs/examples/Picture_MakeFromData.cpp -FILE: ../../../third_party/skia/docs/examples/Picture_MakeFromStream.cpp -FILE: ../../../third_party/skia/docs/examples/Picture_MakePlaceholder.cpp -FILE: ../../../third_party/skia/docs/examples/Picture_approximateBytesUsed.cpp -FILE: ../../../third_party/skia/docs/examples/Picture_approximateOpCount.cpp -FILE: ../../../third_party/skia/docs/examples/Picture_cullRect.cpp -FILE: ../../../third_party/skia/docs/examples/Picture_playback.cpp -FILE: ../../../third_party/skia/docs/examples/Picture_serialize.cpp -FILE: ../../../third_party/skia/docs/examples/Picture_serialize_2.cpp -FILE: ../../../third_party/skia/docs/examples/Picture_uniqueID.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_addr.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_addr16.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_addr16_2.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_addr32.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_addr32_2.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_addr64.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_addr64_2.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_addr8.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_addr8_2.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_addrF16.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_addrF16_2.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_addr_2.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_alphaType.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_bounds.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_colorSpace.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_colorType.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_computeByteSize.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_computeIsOpaque.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_const_SkImageInfo_const_star.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_empty_constructor.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_erase.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_erase_2.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_erase_3.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_extractSubset.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_getColor.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_height.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_info.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_isOpaque.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_readPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_readPixels_2.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_readPixels_3.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_readPixels_4.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_reset.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_reset_2.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_rowBytes.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_rowBytesAsPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_scalePixels.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_setColorSpace.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_shiftPerPixel.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_width.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_writable_addr.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_writable_addr16.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_writable_addr32.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_writable_addr64.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_writable_addr8.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_writable_addrF16.cpp -FILE: ../../../third_party/skia/docs/examples/Pixmap_writable_addr_2.cpp -FILE: ../../../third_party/skia/docs/examples/Plus.cpp -FILE: ../../../third_party/skia/docs/examples/Point_CrossProduct.cpp -FILE: ../../../third_party/skia/docs/examples/Point_Distance.cpp -FILE: ../../../third_party/skia/docs/examples/Point_DotProduct.cpp -FILE: ../../../third_party/skia/docs/examples/Point_Length.cpp -FILE: ../../../third_party/skia/docs/examples/Point_Make.cpp -FILE: ../../../third_party/skia/docs/examples/Point_Normalize.cpp -FILE: ../../../third_party/skia/docs/examples/Point_Offset.cpp -FILE: ../../../third_party/skia/docs/examples/Point_Offset_2.cpp -FILE: ../../../third_party/skia/docs/examples/Point_add_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Point_addto_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Point_cross.cpp -FILE: ../../../third_party/skia/docs/examples/Point_distanceToOrigin.cpp -FILE: ../../../third_party/skia/docs/examples/Point_dot.cpp -FILE: ../../../third_party/skia/docs/examples/Point_equal_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Point_equals.cpp -FILE: ../../../third_party/skia/docs/examples/Point_isFinite.cpp -FILE: ../../../third_party/skia/docs/examples/Point_isZero.cpp -FILE: ../../../third_party/skia/docs/examples/Point_iset.cpp -FILE: ../../../third_party/skia/docs/examples/Point_iset_2.cpp -FILE: ../../../third_party/skia/docs/examples/Point_length_2.cpp -FILE: ../../../third_party/skia/docs/examples/Point_minus_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Point_multiply_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Point_multiplyby_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Point_negate.cpp -FILE: ../../../third_party/skia/docs/examples/Point_normalize_2.cpp -FILE: ../../../third_party/skia/docs/examples/Point_notequal_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Point_offset_3.cpp -FILE: ../../../third_party/skia/docs/examples/Point_scale.cpp -FILE: ../../../third_party/skia/docs/examples/Point_scale_2.cpp -FILE: ../../../third_party/skia/docs/examples/Point_set.cpp -FILE: ../../../third_party/skia/docs/examples/Point_setAbs.cpp -FILE: ../../../third_party/skia/docs/examples/Point_setLength.cpp -FILE: ../../../third_party/skia/docs/examples/Point_setLength_2.cpp -FILE: ../../../third_party/skia/docs/examples/Point_setNormalize.cpp -FILE: ../../../third_party/skia/docs/examples/Point_subtract_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Point_subtractfrom_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Point_x.cpp -FILE: ../../../third_party/skia/docs/examples/Point_y.cpp -FILE: ../../../third_party/skia/docs/examples/PreMultiplyARGB.cpp -FILE: ../../../third_party/skia/docs/examples/PreMultiplyColor.cpp -FILE: ../../../third_party/skia/docs/examples/Quad_a.cpp -FILE: ../../../third_party/skia/docs/examples/Quad_b.cpp -FILE: ../../../third_party/skia/docs/examples/RGBA4f_FromColor.cpp -FILE: ../../../third_party/skia/docs/examples/RGBA4f_equal1_operator.cpp -FILE: ../../../third_party/skia/docs/examples/RGBA4f_notequal1_operator.cpp -FILE: ../../../third_party/skia/docs/examples/RGBA4f_toSkColor.cpp -FILE: ../../../third_party/skia/docs/examples/RGBA4f_vec.cpp -FILE: ../../../third_party/skia/docs/examples/RGBA4f_vec_2.cpp -FILE: ../../../third_party/skia/docs/examples/RGBToHSV.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_Corner.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_MakeEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_MakeOval.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_MakeRect.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_MakeRectXY.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_Type.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_contains.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_copy_const_SkRRect.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_copy_operator.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_dump.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_dumpHex.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_dump_2.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_empty_constructor.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_equal_operator.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_getBounds.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_getSimpleRadii.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_getType.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_height.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_inset.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_inset_2.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_isComplex.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_isEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_isNinePatch.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_isOval.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_isRect.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_isSimple.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_isValid.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_makeOffset.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_notequal_operator.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_offset.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_outset.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_outset_2.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_radii.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_readFromMemory.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_rect.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_setEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_setNinePatch.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_setOval.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_setRect.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_setRectRadii.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_setRectXY.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_transform.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_type_2.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_width.cpp -FILE: ../../../third_party/skia/docs/examples/RRect_writeToMemory.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_Intersects.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_Make.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_MakeEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_MakeIWH.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_MakeLTRB.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_MakeSize.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_MakeWH.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_MakeXYWH.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_Make_2.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_asScalars.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_bottom.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_centerX.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_centerY.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_contains.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_contains_2.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_contains_3.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_dump.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_dumpHex.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_dump_2.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_equal_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_height.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_inset.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_intersect.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_intersect_2.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_intersect_3.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_intersects_2.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_intersects_3.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_isEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_isFinite.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_isSorted.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_join.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_joinNonEmptyArg.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_joinPossiblyEmptyRect.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_join_2.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_left.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_makeInset.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_makeOffset.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_makeOutset.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_makeSorted.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_notequal_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_offset.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_offsetTo.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_offset_2.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_outset.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_right.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_round.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_roundIn.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_roundOut.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_roundOut_2.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_roundOut_3.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_round_2.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_set.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_setBounds.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_setBoundsCheck.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_setBoundsNoCheck.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_setEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_setLTRB.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_setWH.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_setXYWH.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_set_4.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_sort.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_toQuad.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_top.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_width.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_x.cpp -FILE: ../../../third_party/skia/docs/examples/Rect_y.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Cliperator_const_SkRegion_const_SkIRect.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Cliperator_done.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Cliperator_next.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Cliperator_rect.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Iterator_Iterator.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Iterator_copy_const_SkRegion.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Iterator_done.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Iterator_next.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Iterator_rect.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Iterator_reset.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Iterator_rewind.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Iterator_rgn.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Op.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Spanerator_const_SkRegion_int_int_int.cpp -FILE: ../../../third_party/skia/docs/examples/Region_Spanerator_next.cpp -FILE: ../../../third_party/skia/docs/examples/Region_computeRegionComplexity.cpp -FILE: ../../../third_party/skia/docs/examples/Region_contains.cpp -FILE: ../../../third_party/skia/docs/examples/Region_contains_2.cpp -FILE: ../../../third_party/skia/docs/examples/Region_contains_3.cpp -FILE: ../../../third_party/skia/docs/examples/Region_copy_const_SkIRect.cpp -FILE: ../../../third_party/skia/docs/examples/Region_copy_const_SkRegion.cpp -FILE: ../../../third_party/skia/docs/examples/Region_copy_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Region_destructor.cpp -FILE: ../../../third_party/skia/docs/examples/Region_empty_constructor.cpp -FILE: ../../../third_party/skia/docs/examples/Region_equal1_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Region_getBoundaryPath.cpp -FILE: ../../../third_party/skia/docs/examples/Region_getBounds.cpp -FILE: ../../../third_party/skia/docs/examples/Region_intersects.cpp -FILE: ../../../third_party/skia/docs/examples/Region_intersects_2.cpp -FILE: ../../../third_party/skia/docs/examples/Region_isComplex.cpp -FILE: ../../../third_party/skia/docs/examples/Region_isEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/Region_isRect.cpp -FILE: ../../../third_party/skia/docs/examples/Region_notequal1_operator.cpp -FILE: ../../../third_party/skia/docs/examples/Region_op_1.cpp -FILE: ../../../third_party/skia/docs/examples/Region_op_2.cpp -FILE: ../../../third_party/skia/docs/examples/Region_op_3.cpp -FILE: ../../../third_party/skia/docs/examples/Region_op_4.cpp -FILE: ../../../third_party/skia/docs/examples/Region_op_5.cpp -FILE: ../../../third_party/skia/docs/examples/Region_op_6.cpp -FILE: ../../../third_party/skia/docs/examples/Region_quickContains.cpp -FILE: ../../../third_party/skia/docs/examples/Region_quickReject.cpp -FILE: ../../../third_party/skia/docs/examples/Region_quickReject_2.cpp -FILE: ../../../third_party/skia/docs/examples/Region_readFromMemory.cpp -FILE: ../../../third_party/skia/docs/examples/Region_set.cpp -FILE: ../../../third_party/skia/docs/examples/Region_setEmpty.cpp -FILE: ../../../third_party/skia/docs/examples/Region_setPath.cpp -FILE: ../../../third_party/skia/docs/examples/Region_setRect.cpp -FILE: ../../../third_party/skia/docs/examples/Region_setRects.cpp -FILE: ../../../third_party/skia/docs/examples/Region_setRegion.cpp -FILE: ../../../third_party/skia/docs/examples/Region_swap.cpp -FILE: ../../../third_party/skia/docs/examples/Region_translate.cpp -FILE: ../../../third_party/skia/docs/examples/Region_translate_2.cpp -FILE: ../../../third_party/skia/docs/examples/Region_writeToMemory.cpp -FILE: ../../../third_party/skia/docs/examples/Saturation.cpp -FILE: ../../../third_party/skia/docs/examples/Screen.cpp -FILE: ../../../third_party/skia/docs/examples/Shader_Methods_a.cpp -FILE: ../../../third_party/skia/docs/examples/Shader_Methods_b.cpp -FILE: ../../../third_party/skia/docs/examples/Soft_Light.cpp -FILE: ../../../third_party/skia/docs/examples/Src.cpp -FILE: ../../../third_party/skia/docs/examples/Src_Atop.cpp -FILE: ../../../third_party/skia/docs/examples/Src_In.cpp -FILE: ../../../third_party/skia/docs/examples/Src_Out.cpp -FILE: ../../../third_party/skia/docs/examples/Src_Over.cpp -FILE: ../../../third_party/skia/docs/examples/State_Stack_a.cpp -FILE: ../../../third_party/skia/docs/examples/State_Stack_b.cpp -FILE: ../../../third_party/skia/docs/examples/Stroke_Width.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_MakeFromBackendTexture.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_MakeNull.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_MakeRaster.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_MakeRasterDirect.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_MakeRasterDirectReleaseProc.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_MakeRasterN32Premul.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_MakeRaster_2.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_MakeRenderTarget.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_MakeRenderTarget_2.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_MakeRenderTarget_3.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_characterize.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_draw.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_draw_2.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_getCanvas.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_height.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_makeImageSnapshot.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_makeImageSnapshot_2.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_makeSurface.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_notifyContentWillChange.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_peekPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_props.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_readPixels.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_readPixels_2.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_readPixels_3.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_width.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_writePixels.cpp -FILE: ../../../third_party/skia/docs/examples/Surface_writePixels_2.cpp -FILE: ../../../third_party/skia/docs/examples/TextBlobBuilder_allocRun.cpp -FILE: ../../../third_party/skia/docs/examples/TextBlobBuilder_allocRunPos.cpp -FILE: ../../../third_party/skia/docs/examples/TextBlobBuilder_allocRunPosH.cpp -FILE: ../../../third_party/skia/docs/examples/TextBlobBuilder_empty_constructor.cpp -FILE: ../../../third_party/skia/docs/examples/TextBlobBuilder_make.cpp -FILE: ../../../third_party/skia/docs/examples/TextBlob_Deserialize.cpp -FILE: ../../../third_party/skia/docs/examples/TextBlob_MakeFromString.cpp -FILE: ../../../third_party/skia/docs/examples/TextBlob_MakeFromText.cpp -FILE: ../../../third_party/skia/docs/examples/TextBlob_bounds.cpp -FILE: ../../../third_party/skia/docs/examples/TextBlob_getIntercepts.cpp -FILE: ../../../third_party/skia/docs/examples/TextBlob_serialize.cpp -FILE: ../../../third_party/skia/docs/examples/TextBlob_serialize_2.cpp -FILE: ../../../third_party/skia/docs/examples/TextBlob_uniqueID.cpp -FILE: ../../../third_party/skia/docs/examples/Text_Encoding.cpp -FILE: ../../../third_party/skia/docs/examples/Text_Scale_X.cpp -FILE: ../../../third_party/skia/docs/examples/Text_Size.cpp -FILE: ../../../third_party/skia/docs/examples/Text_Skew_X.cpp -FILE: ../../../third_party/skia/docs/examples/Typeface_Methods.cpp -FILE: ../../../third_party/skia/docs/examples/Xor.cpp -FILE: ../../../third_party/skia/docs/examples/incomplete.cpp -FILE: ../../../third_party/skia/experimental/minimal_ios_mtl_skia_app/main.mm -FILE: ../../../third_party/skia/experimental/sktext/editor/App.cpp FILE: ../../../third_party/skia/gm/crbug_918512.cpp FILE: ../../../third_party/skia/gm/fp_sample_chaining.cpp FILE: ../../../third_party/skia/gm/fpcoordinateoverride.cpp @@ -6172,6 +6448,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzSKSL2GLSL.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzSKSL2Metal.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzSKSL2Pipeline.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzSKSL2SPIRV.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzSkDescriptorDeserialize.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzSKSL2GLSL.cpp FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzSKSL2Metal.cpp @@ -6249,46 +6529,142 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/infra/bots/recipe_modules/flavor/resources/win_run_and_check_log.ps1 + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/resources/win_run_and_check_log.ps1 ----------------------------------------------------------------------------------------------------- -Copyright 2019 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/FindCubicConvex180ChopsBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/FuzzSkParagraph.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/3d.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bc1_transparency.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bicubic.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/compressed_textures.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_1073670.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_1086705.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_1113794.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/exoticformats.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/rsxtext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/skbug_9819.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/strokerect_anisotropic.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/verifiers/gmverifier.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/verifiers/gmverifier.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/widebuttcaps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkM44.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkSamplingOptions.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkStrokeAndFillPathEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/GrDirectContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/mtl/GrMtlBackendContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkOpts_spi.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkTPin.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/audioplayer/SkAudioPlayer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/audioplayer/SkAudioPlayer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/audioplayer/SkAudioPlayer_mac.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/audioplayer/SkAudioPlayer_none.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/audioplayer/SkAudioPlayer_oboe.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/audioplayer/SkAudioPlayer_sfml.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/include/ExternalLayer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/Adapter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/Camera.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/Camera.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/Path.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/Transform.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/Transform.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/animator/Animator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/animator/Animator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/animator/KeyframeAnimator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/animator/KeyframeAnimator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/animator/ScalarKeyframeAnimator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/animator/ShapeKeyframeAnimator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/animator/TextKeyframeAnimator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/animator/Vec2KeyframeAnimator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/animator/VectorKeyframeAnimator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/animator/VectorKeyframeAnimator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/BlackAndWhiteEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/BrightnessContrastEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/CornerPinEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/DisplacementMapEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/GlowStyles.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/ShadowStyles.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/AudioLayer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/Ellipse.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/FillStroke.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/Gradient.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/MergePaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/OffsetPaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/Polystar.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/PuckerBloat.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/Rectangle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/Repeater.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/RoundCorners.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/ShapeLayer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/layers/shapelayer/TrimPaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skparagraph/gm/simple_gm.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/include/SkSGGeometryEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/sksg/src/SkSGGeometryEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skshaper/src/SkShaper_coretext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skunicode/src/SkUnicode_icu.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFe.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFeBlend.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFeColorMatrix.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFeComposite.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFeDisplacementMap.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFeFlood.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFeGaussianBlur.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFeLighting.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFeMorphology.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFeOffset.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFeTurbulence.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFilterContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFe.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFeBlend.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFeColorMatrix.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFeComposite.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFeDisplacementMap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFeFlood.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFeGaussianBlur.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFeLighting.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFeMorphology.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFeOffset.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFeTurbulence.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFilterContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGTextPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/utils/SvgTool.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkColorFilterPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCompressedDataUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCompressedDataUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkM44.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMipmapBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkOpts_erms.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSamplingPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkVerticesPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDynamicAtlas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDynamicAtlas.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrEagerVertexAllocator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrHashMapWithCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRecordingContextPriv.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrThreadSafeCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrThreadSafeCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrAATriangulator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrAATriangulator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mock/GrMockOpTarget.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DrawAtlasPathOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DrawAtlasPathOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/GrSimpleMeshDrawOpHelperWithStencil.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/GrSimpleMeshDrawOpHelperWithStencil.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/SmallPathAtlasMgr.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/SmallPathAtlasMgr.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/SmallPathShapeData.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/SmallPathShapeData.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/tessellate/MiddleOutPolygonTriangulator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/tessellate/StrokeIterator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/tessellate/WangsFormula.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkOpts_skx.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkScalerContext_mac_ct.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkTypeface_mac_ct.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/SDFTControl.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/SDFTControl.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/mac/SkCGBase.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/mac/SkCGGeometry.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/mac/SkCTFont.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/mac/SkCTFont.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/FindCubicConvex180ChopsBench.cpp -FILE: ../../../third_party/skia/bench/GlyphQuadFillBench.cpp -FILE: ../../../third_party/skia/bench/TessellateBench.cpp FILE: ../../../third_party/skia/fuzz/FuzzSkParagraph.cpp FILE: ../../../third_party/skia/gm/3d.cpp FILE: ../../../third_party/skia/gm/bc1_transparency.cpp @@ -6458,11 +6834,155 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/CreateBackendTextureBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/animated_image_orientation.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_1041204.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_1139750.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_1156804.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_1162942.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_224618.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/encode_color_types.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/kawase_blur_rt.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/userfont.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/ycbcrimage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkYUVAInfo.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkYUVAPixmaps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/GrBackendSurfaceMutableState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/GrYUVABackendTextures.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/d3d/GrD3DBackendContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/d3d/GrD3DTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/ports/SkImageGeneratorNDK.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkIDChangeListener.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSLSampleUsage.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/ganesh/GrD3DTypesMinimal.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/DSL.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/DSLCore.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/DSLExpression.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/DSLModifiers.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/DSLType.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/DSLVar.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkCustomTypeface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/canvaskit/gm_bindings.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/canvaskit/viewer_bindings.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/canvaskit/wasm_tools/SIMD/simd_float_capabilities.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/canvaskit/wasm_tools/SIMD/simd_int_capabilities.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skunicode/include/SkUnicode.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkASAN.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlockAllocator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlockAllocator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkIDChangeListener.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMatrixProvider.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRuntimeEffectPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkVM_fwd.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkYUVAInfo.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkYUVAPixmaps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ClipStack.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ClipStack.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBackendSemaphore.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBackendUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBackendUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDDLTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDDLTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrManagedResource.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrPixmap.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRefCnt.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRenderTargetContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRingBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRingBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrStagingBufferManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrStagingBufferManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrUniformDataManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrUniformDataManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrUtil.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrYUVABackendTextures.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/StencilMaskHelper.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/StencilMaskHelper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DAMDMemoryAllocator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DAMDMemoryAllocator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DAttachment.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DAttachment.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DCaps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DCaps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DCommandList.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DCommandList.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DCommandSignature.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DCommandSignature.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DCpuDescriptorManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DCpuDescriptorManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DDescriptorHeap.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DDescriptorHeap.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DDescriptorTableManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DDescriptorTableManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DGpu.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DGpu.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DOpsRenderPass.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DOpsRenderPass.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DPipeline.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DPipelineState.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DPipelineState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DPipelineStateBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DPipelineStateBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DPipelineStateDataManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DRenderTarget.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DRenderTarget.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DResourceProvider.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DResourceProvider.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DResourceState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DRootSignature.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DRootSignature.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DSemaphore.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DSemaphore.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DTexture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DTexture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DTextureRenderTarget.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DTextureRenderTarget.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DTextureResource.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DTextureResource.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DTypesMinimal.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DTypesPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DUtil.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DUtil.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrMatrixEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrMatrixEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrShape.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrShape.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/webgl/GrGLMakeNativeInterface_webgl.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/glsl/GrGLSLUniformHandler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkMSAALoadManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkMSAALoadManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkManagedResource.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkRescaleAndReadPixels.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/image/SkRescaleAndReadPixels.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkImageEncoder_NDK.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkImageGeneratorNDK.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkNDKConversions.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/ports/SkNDKConversions.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLAnalysis.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLConstantFolder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLConstantFolder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLInliner.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLInliner.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLMemoryPool.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLPool.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLPool.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLSampleUsage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLThreadContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLSPIRVtoHLSL.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLSPIRVtoHLSL.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLVMCodeGenerator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLVMCodeGenerator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/dsl/DSLCore.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/dsl/DSLExpression.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/dsl/DSLType.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/dsl/DSLVar.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/dsl/priv/DSLWriter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/dsl/priv/DSLWriter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLFunctionPrototype.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLPrefixExpression.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLStructDefinition.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkCustomTypeface.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/CreateBackendTextureBench.cpp -FILE: ../../../third_party/skia/bench/GrQuadBench.cpp -FILE: ../../../third_party/skia/bench/SkSLBench.h FILE: ../../../third_party/skia/gm/animated_image_orientation.cpp FILE: ../../../third_party/skia/gm/crbug_1041204.cpp FILE: ../../../third_party/skia/gm/crbug_1139750.cpp @@ -6645,176 +7165,32 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/docs/examples/50_percent_gray.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/Decorations.cpp +ORIGIN: ../../../third_party/skia/modules/skparagraph/src/Decorations.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/skia/modules/skparagraph/src/Decorations.cpp +FILE: ../../../third_party/skia/modules/skparagraph/src/Decorations.h +---------------------------------------------------------------------------------------------------- +Copyright 2020 Google LLC. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/gm/clear_swizzle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/gpu_blur_utils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrFinishCallbacks.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrFinishCallbacks.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AtlasInstancedHelper.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/StrokeTessellateOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/StrokeTessellateOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/tessellate/GrStrokeTessellationShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/tessellate/GrStrokeTessellationShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/tessellate/GrTessellationShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/opts/SkVM_opts.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLAnalysis.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLModifiersPool.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructor.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/docs/examples/50_percent_gray.cpp -FILE: ../../../third_party/skia/docs/examples/50_percent_srgb.cpp -FILE: ../../../third_party/skia/docs/examples/BlendModes.cpp -FILE: ../../../third_party/skia/docs/examples/Canvas_saveLayer_4.cpp -FILE: ../../../third_party/skia/docs/examples/ChromeMDRefreshTab.cpp -FILE: ../../../third_party/skia/docs/examples/ChromeMDRefreshTabs.cpp -FILE: ../../../third_party/skia/docs/examples/Color_Wheel.cpp -FILE: ../../../third_party/skia/docs/examples/DCIToXYZD50.cpp -FILE: ../../../third_party/skia/docs/examples/GradientShader_MakeLinear.cpp -FILE: ../../../third_party/skia/docs/examples/Octopus_Generator.cpp -FILE: ../../../third_party/skia/docs/examples/Octopus_Generator_Animated.cpp -FILE: ../../../third_party/skia/docs/examples/PaintDump.cpp -FILE: ../../../third_party/skia/docs/examples/SKIA_LOGO.cpp -FILE: ../../../third_party/skia/docs/examples/SKIA_LOGO_ANIMATE.cpp -FILE: ../../../third_party/skia/docs/examples/SKIA_LOGO_svg.cpp -FILE: ../../../third_party/skia/docs/examples/SkFontMgr_example.cpp -FILE: ../../../third_party/skia/docs/examples/SkFontMgr_example2.cpp -FILE: ../../../third_party/skia/docs/examples/SkImage_to_PPM_ascii.cpp -FILE: ../../../third_party/skia/docs/examples/SkImage_to_PPM_binary.cpp -FILE: ../../../third_party/skia/docs/examples/SkParsePath_FromSVGString.cpp -FILE: ../../../third_party/skia/docs/examples/SkParsePath_ToSVGString.cpp -FILE: ../../../third_party/skia/docs/examples/SkPath_arcTo_example.cpp -FILE: ../../../third_party/skia/docs/examples/SkPath_arcto_conic_parametric.cpp -FILE: ../../../third_party/skia/docs/examples/SkPath_arcto_conic_parametric2.cpp -FILE: ../../../third_party/skia/docs/examples/SkPath_cubicTo_example.cpp -FILE: ../../../third_party/skia/docs/examples/SkPath_cubicTo_example_parametric.cpp -FILE: ../../../third_party/skia/docs/examples/SkPath_cubicTo_example_parametric_animated.cpp -FILE: ../../../third_party/skia/docs/examples/SkPath_quadTo_example.cpp -FILE: ../../../third_party/skia/docs/examples/SkPath_quadTo_example_parametric.cpp -FILE: ../../../third_party/skia/docs/examples/SkPath_quadTo_example_parametric_animated.cpp -FILE: ../../../third_party/skia/docs/examples/SmoothBezierSplineInterpolation.cpp -FILE: ../../../third_party/skia/docs/examples/Turtle.cpp -FILE: ../../../third_party/skia/docs/examples/UnicornPoop.cpp -FILE: ../../../third_party/skia/docs/examples/UnpremulBugs.cpp -FILE: ../../../third_party/skia/docs/examples/UnpremulGPU.cpp -FILE: ../../../third_party/skia/docs/examples/alpha_bitmap_color_filter_mask_filter.cpp -FILE: ../../../third_party/skia/docs/examples/alphaimage_shader_colorfilter.cpp -FILE: ../../../third_party/skia/docs/examples/backdrop_blur_with_rrect_clip.cpp -FILE: ../../../third_party/skia/docs/examples/bezier_curves.cpp -FILE: ../../../third_party/skia/docs/examples/blur4444.cpp -FILE: ../../../third_party/skia/docs/examples/blur_alpha_img.cpp -FILE: ../../../third_party/skia/docs/examples/blurbug.cpp -FILE: ../../../third_party/skia/docs/examples/bug5252.cpp -FILE: ../../../third_party/skia/docs/examples/bug583299.cpp -FILE: ../../../third_party/skia/docs/examples/bug6495.cpp -FILE: ../../../third_party/skia/docs/examples/bug7573.cpp -FILE: ../../../third_party/skia/docs/examples/bug7573_1.cpp -FILE: ../../../third_party/skia/docs/examples/bug767834.cpp -FILE: ../../../third_party/skia/docs/examples/bugoftheday.cpp -FILE: ../../../third_party/skia/docs/examples/checker_board.cpp -FILE: ../../../third_party/skia/docs/examples/color_filter_vs_colorFilterImageFilter_saveLayer.cpp -FILE: ../../../third_party/skia/docs/examples/compose_path.cpp -FILE: ../../../third_party/skia/docs/examples/convex_overstroke_linear_approx_curve.cpp -FILE: ../../../third_party/skia/docs/examples/convex_overstroke_quad.cpp -FILE: ../../../third_party/skia/docs/examples/count_verbs.cpp -FILE: ../../../third_party/skia/docs/examples/crbug_663246.cpp -FILE: ../../../third_party/skia/docs/examples/crbug_918512.cpp -FILE: ../../../third_party/skia/docs/examples/cubics_are_horrible.cpp -FILE: ../../../third_party/skia/docs/examples/default.cpp -FILE: ../../../third_party/skia/docs/examples/default2.cpp -FILE: ../../../third_party/skia/docs/examples/default3.cpp -FILE: ../../../third_party/skia/docs/examples/discrete_path.cpp -FILE: ../../../third_party/skia/docs/examples/dither1.cpp -FILE: ../../../third_party/skia/docs/examples/draw_a8_bitmap.cpp -FILE: ../../../third_party/skia/docs/examples/draw_image_nine_blur_mask.cpp -FILE: ../../../third_party/skia/docs/examples/draw_patch.cpp -FILE: ../../../third_party/skia/docs/examples/draw_pixel_array.cpp -FILE: ../../../third_party/skia/docs/examples/draw_pixel_array_nocopy.cpp -FILE: ../../../third_party/skia/docs/examples/draw_pixel_array_with_copy.cpp -FILE: ../../../third_party/skia/docs/examples/draw_text_fails.cpp -FILE: ../../../third_party/skia/docs/examples/draw_vertices.cpp -FILE: ../../../third_party/skia/docs/examples/drawarcs.cpp -FILE: ../../../third_party/skia/docs/examples/example3ps.cpp -FILE: ../../../third_party/skia/docs/examples/f16.cpp -FILE: ../../../third_party/skia/docs/examples/f16to8888busted.cpp -FILE: ../../../third_party/skia/docs/examples/f16to8888drawImageBug.cpp -FILE: ../../../third_party/skia/docs/examples/failing_example.cpp -FILE: ../../../third_party/skia/docs/examples/fivearcs.cpp -FILE: ../../../third_party/skia/docs/examples/flag_us_1792.cpp -FILE: ../../../third_party/skia/docs/examples/flag_us_1960.cpp -FILE: ../../../third_party/skia/docs/examples/fluttershadow.cpp -FILE: ../../../third_party/skia/docs/examples/gamma_mask_filter.cpp -FILE: ../../../third_party/skia/docs/examples/getLocalBounds_broken.cpp -FILE: ../../../third_party/skia/docs/examples/getLocalBounds_working.cpp -FILE: ../../../third_party/skia/docs/examples/gpu4444diff.cpp -FILE: ../../../third_party/skia/docs/examples/gpu8888diff.cpp -FILE: ../../../third_party/skia/docs/examples/gpuconicbug.cpp -FILE: ../../../third_party/skia/docs/examples/homogeneous.cpp -FILE: ../../../third_party/skia/docs/examples/image_subsets_get_different_uids.cpp -FILE: ../../../third_party/skia/docs/examples/image_to_bitmap_does_not_preserve_genid.cpp -FILE: ../../../third_party/skia/docs/examples/inlinepixmapconstructor.cpp -FILE: ../../../third_party/skia/docs/examples/issue640176.cpp -FILE: ../../../third_party/skia/docs/examples/l_system_plant.cpp -FILE: ../../../third_party/skia/docs/examples/maddash.cpp -FILE: ../../../third_party/skia/docs/examples/makeRasterImage_fail.cpp -FILE: ../../../third_party/skia/docs/examples/mapradius.cpp -FILE: ../../../third_party/skia/docs/examples/massive_coordinates_svg.cpp -FILE: ../../../third_party/skia/docs/examples/measure_text_bounds.cpp -FILE: ../../../third_party/skia/docs/examples/no_gpu_blur.cpp -FILE: ../../../third_party/skia/docs/examples/not_path_gradient.cpp -FILE: ../../../third_party/skia/docs/examples/pathmeasure.cpp -FILE: ../../../third_party/skia/docs/examples/pathops.cpp -FILE: ../../../third_party/skia/docs/examples/persp_text_2.cpp -FILE: ../../../third_party/skia/docs/examples/picture_shader.cpp -FILE: ../../../third_party/skia/docs/examples/pong.cpp -FILE: ../../../third_party/skia/docs/examples/pong2.cpp -FILE: ../../../third_party/skia/docs/examples/purplestamp.cpp -FILE: ../../../third_party/skia/docs/examples/radial_gradient_shader_with_animated_color.cpp -FILE: ../../../third_party/skia/docs/examples/radial_gradient_test.cpp -FILE: ../../../third_party/skia/docs/examples/redwhiteonblue.cpp -FILE: ../../../third_party/skia/docs/examples/rotations.cpp -FILE: ../../../third_party/skia/docs/examples/setimagefilter.cpp -FILE: ../../../third_party/skia/docs/examples/shader.cpp -FILE: ../../../third_party/skia/docs/examples/shader_alphaimage.cpp -FILE: ../../../third_party/skia/docs/examples/shapes.cpp -FILE: ../../../third_party/skia/docs/examples/shapes_with_motion.cpp -FILE: ../../../third_party/skia/docs/examples/skbug6031.cpp -FILE: ../../../third_party/skia/docs/examples/skbug_237_drawImageRect.cpp -FILE: ../../../third_party/skia/docs/examples/skbug_237_drawImage_with_blur.cpp -FILE: ../../../third_party/skia/docs/examples/skbug_5648.cpp -FILE: ../../../third_party/skia/docs/examples/skbug_633528.cpp -FILE: ../../../third_party/skia/docs/examples/skcanvas_paint.cpp -FILE: ../../../third_party/skia/docs/examples/skcanvas_square.cpp -FILE: ../../../third_party/skia/docs/examples/skcanvas_star.cpp -FILE: ../../../third_party/skia/docs/examples/skew_x_animated.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_2pt.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_bitmap_shader.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_blur_mask_filter.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_blur_mask_filter_2.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_color_table_filter.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_compose.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_compose_path_effect.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_compose_shader.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_corner_path_effects.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_dash_path_effect.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_discrete_path_effect.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_line_2d_path_effect.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_matrix_color_filter.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_mix.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_path_1d_path_effect.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_path_2d_path_effect.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_perlin.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_radial.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_shader.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_skia.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_sum_path_effect.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_sweep.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_turb.cpp -FILE: ../../../third_party/skia/docs/examples/skpaint_xfer.cpp -FILE: ../../../third_party/skia/docs/examples/software_bitmap_w_perspective.cpp -FILE: ../../../third_party/skia/docs/examples/star.cpp -FILE: ../../../third_party/skia/docs/examples/star2.cpp -FILE: ../../../third_party/skia/docs/examples/stroke_closed_degenerate_path.cpp -FILE: ../../../third_party/skia/docs/examples/strokerect_gm.cpp -FILE: ../../../third_party/skia/docs/examples/subset_example.cpp -FILE: ../../../third_party/skia/docs/examples/sum_path_effect.cpp -FILE: ../../../third_party/skia/docs/examples/sweep_gradient_talk_1.cpp -FILE: ../../../third_party/skia/docs/examples/sweep_gradient_talk_2.cpp -FILE: ../../../third_party/skia/docs/examples/sweep_gradient_talk_4.cpp -FILE: ../../../third_party/skia/docs/examples/sweep_gradient_talk_lots.cpp -FILE: ../../../third_party/skia/docs/examples/text_only.cpp -FILE: ../../../third_party/skia/docs/examples/text_rendering.cpp -FILE: ../../../third_party/skia/docs/examples/text_shadow.cpp -FILE: ../../../third_party/skia/docs/examples/unexpected_setAlphaType.cpp -FILE: ../../../third_party/skia/docs/examples/upscale_checkerboard.cpp -FILE: ../../../third_party/skia/docs/examples/weird_RRect_bug.cpp -FILE: ../../../third_party/skia/docs/examples/zero_off_dashing.cpp -FILE: ../../../third_party/skia/experimental/bazel_test/bazel_test.cpp FILE: ../../../third_party/skia/gm/clear_swizzle.cpp FILE: ../../../third_party/skia/gm/gpu_blur_utils.cpp FILE: ../../../third_party/skia/src/gpu/ganesh/GrFinishCallbacks.cpp @@ -6863,7 +7239,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia +ORIGIN: ../../../third_party/skia/fuzz/FuzzCreateDDL.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/FuzzPath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/FuzzRRect.cpp + ../../../third_party/skia/LICENSE ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzAPICreateDDL.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzAPISVGCanvas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzSKP.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzSVG.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzSkRuntimeEffect.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/fuzz/FuzzCreateDDL.cpp FILE: ../../../third_party/skia/fuzz/FuzzPath.cpp @@ -6907,62 +7290,94 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/infra/bots/gen_tasks_logic/compile_cas.go + ../../../LICENSE +ORIGIN: ../../../third_party/skia/fuzz/FuzzDDLThreading.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/aarecteffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/colorspace.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/colrv1.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/drawglyphs.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/largeclippedpath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/skbug_12212.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/slug.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/ganesh/GrMtlTypesPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/graphite/MtlTypesPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/utils/SkOrderedFontMgr.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/Canvas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/ColorFilters.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/Font.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/FontChainAdapter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/Gradients.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/Image.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/ImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/JetSki.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/Matrix.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/Paint.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/Path.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/PathBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/RuntimeShaderBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/Shader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/SkottieAnimation.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/Surface.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/Surface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/SurfaceThread.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/SurfaceThread.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/Text.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/Utils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/jetski/src/Utils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/BulgeEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/CCTonerEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/DirectionalBlur.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/FractalNoiseEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/SharpenEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/SkSLEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/SphereEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/effects/ThresholdEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skunicode/src/SkUnicode_icu.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skunicode/src/SkUnicode_icu_builtin.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skunicode/src/SkUnicode_icu_runtime.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFeImage.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGFeLightSource.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGImage.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGMask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFeImage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGFeLightSource.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGImage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGMask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkJpegxlCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkJpegxlCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDrawIndirectCommand.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRenderTaskCluster.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrRenderTaskCluster.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrThreadSafePipelineBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrThreadSafePipelineBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mock/GrMockRenderTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mock/GrMockSurfaceProxy.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlFramebuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlFramebuffer.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlPipeline.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlRenderCommandEncoder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AtlasRenderTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AtlasRenderTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Buffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Buffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawBufferManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawBufferManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlBlitCommandEncoder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlBuffer.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlRenderCommandEncoder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlTrampoline.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlTrampoline.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlUtils.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/tessellate/CullTest.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/tessellate/Tessellation.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkTransformShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkTransformShader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLGLSL.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLExpression.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/TransitionTable.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/lex/TransitionTable.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkOrderedFontMgr.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/infra/bots/gen_tasks_logic/compile_cas.go -FILE: ../../../third_party/skia/infra/bots/gen_tasks_logic/dm_flags.go -FILE: ../../../third_party/skia/infra/bots/gen_tasks_logic/job_builder.go -FILE: ../../../third_party/skia/infra/bots/gen_tasks_logic/nano_flags.go -FILE: ../../../third_party/skia/infra/bots/gen_tasks_logic/schema.go -FILE: ../../../third_party/skia/infra/bots/gen_tasks_logic/task_builder.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/compile_wasm_gm_tests/compile_wasm_gm_tests.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/fm_driver/fm_driver.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/g3_canary/g3_canary.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/perf_puppeteer_canvas/perf_puppeteer_canvas.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/perf_puppeteer_canvas/perf_puppeteer_canvas_test.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/perf_puppeteer_render_skps/perf_puppeteer_render_skps.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/perf_puppeteer_render_skps/perf_puppeteer_render_skps_test.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/perf_puppeteer_skottie_frames/perf_puppeteer_skottie_frames.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/perf_puppeteer_skottie_frames/perf_puppeteer_skottie_frames_test.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/run_gn_to_bp/run_gn_to_bp.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/run_wasm_gm_tests/run_wasm_gm_tests.go ----------------------------------------------------------------------------------------------------- -Copyright 2020 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/graphite/IntersectionTreeBench.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/MSKPBench.cpp -FILE: ../../../third_party/skia/bench/MSKPBench.h -FILE: ../../../third_party/skia/bench/graphite/IntersectionTreeBench.cpp FILE: ../../../third_party/skia/fuzz/FuzzDDLThreading.cpp FILE: ../../../third_party/skia/gm/aarecteffect.cpp FILE: ../../../third_party/skia/gm/colorspace.cpp @@ -6974,9 +7389,6 @@ FILE: ../../../third_party/skia/gm/slug.cpp FILE: ../../../third_party/skia/include/private/gpu/ganesh/GrMtlTypesPriv.h FILE: ../../../third_party/skia/include/private/gpu/graphite/MtlTypesPriv.h FILE: ../../../third_party/skia/include/utils/SkOrderedFontMgr.h -FILE: ../../../third_party/skia/infra/bots/task_drivers/push_apps_from_skia_image/push_apps_from_skia_image.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/push_bazel_apps_from_wasm_image/push_bazel_apps_from_wasm_image.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/recreate_skps/recreate_skps.go FILE: ../../../third_party/skia/modules/jetski/src/Canvas.cpp FILE: ../../../third_party/skia/modules/jetski/src/ColorFilters.cpp FILE: ../../../third_party/skia/modules/jetski/src/Font.cpp @@ -7087,21 +7499,231 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/BigPath.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/attributes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/composecolorfilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_1167277.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_1174186.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_1174354.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_1177833.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_1257515.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crop_imagefilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/fillrect_gradient.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/graphitestart.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/hardstop_gradients_many.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/lazytiling.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/mesh.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/particles.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkBlender.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkMesh.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/effects/SkBlenders.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/GrSurfaceInfo.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/ShaderErrorHandler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/gl/egl/GrGLMakeEGLInterface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/gl/glx/GrGLMakeGLXInterface.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/BackendTexture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/Context.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/GraphiteTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/Recorder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/Recording.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/TextureInfo.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/mtl/MtlBackendContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/mtl/MtlTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/chromium/GrSlug.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/chromium/Slug.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/ganesh/GrDawnTypesPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/ganesh/GrMockTypesPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/SkSLOperator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/canvaskit/paragraph_bindings_gen.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlendModeBlender.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlendModeBlender.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkBlenderBase.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkEnumBitMask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMatrixInvert.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMatrixInvert.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMesh.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkMeshPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkVMBlitter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkYUVAInfoLocation.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/SkBlenders.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkCropImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkCropImageFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkRuntimeImageFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/effects/imagefilters/SkRuntimeImageFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/KeyBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ResourceKey.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ShaderErrorHandler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/SkRenderEngineAbortf.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrDstProxyView.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrEagerVertexAllocator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrMeshDrawTarget.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrMeshDrawTarget.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrOpsTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrPersistentCacheUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSurfaceInfo.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrWritePixelsRenderTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrWritePixelsRenderTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrYUVATextureProxies.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrYUVATextureProxies.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/SurfaceFillContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/SurfaceFillContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/d3d/GrD3DTypesPriv.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnTypesPriv.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/geometry/GrInnerFanTriangulator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/egl/GrGLMakeNativeInterface_egl.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/gl/glx/GrGLMakeNativeInterface_glx.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/mtl/GrMtlTypesPriv.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DrawMeshOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/DrawMeshOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/FillPathFlags.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/vk/GrVkBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Attribute.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/BackendTexture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Caps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Caps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/CommandBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/CommandBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Context.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ContextPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ContextUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ContextUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/CopyTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/CopyTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Device.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Device.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawList.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawList.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawOrder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawPass.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawPass.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawWriter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawWriter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/GpuWorkSubmission.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/GraphicsPipeline.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/GraphicsPipeline.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/GraphicsPipelineDesc.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Image_Graphite.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Image_Graphite.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/PipelineDataCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Recorder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Recording.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/RenderPassTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/RenderPassTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Renderer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ResourceProvider.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ResourceProvider.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ResourceTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/SharedContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/SharedContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Surface_Graphite.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Surface_Graphite.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Task.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Task.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/TaskGraph.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/TaskGraph.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Texture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Texture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/TextureInfo.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/TextureProxy.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/TextureProxy.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Uniform.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/UniformManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/UniformManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/geom/BoundsManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/geom/IntersectionTree.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/geom/IntersectionTree.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/geom/Rect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/geom/Shape.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/geom/Shape.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/geom/Transform.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/geom/Transform_graphite.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlCaps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlCaps.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlCommandBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlCommandBuffer.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlGraphicsPipeline.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlGraphicsPipeline.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlResourceProvider.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlResourceProvider.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlSharedContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlSharedContext.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlTexture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlTexture.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlTypesPriv.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/mtl/MtlMemoryAllocatorImpl.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/mtl/MtlMemoryAllocatorImpl.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLBuiltinTypes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLBuiltinTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLIntrinsicList.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLMangler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLOperator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLThreadContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLCanExitWithoutReturningValue.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLCheckProgramStructure.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLGetLoopUnrollInfo.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLIsConstantExpression.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLProgramUsage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLProgramVisitor.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLSwitchCaseContainsExit.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLSymbolTableStackBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLBinaryExpression.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLBlock.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLChildCall.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLChildCall.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorArray.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorArray.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorArrayCast.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorArrayCast.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorCompound.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorCompound.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorCompoundCast.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorCompoundCast.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorDiagonalMatrix.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorDiagonalMatrix.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorMatrixResize.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorMatrixResize.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorScalarCast.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorScalarCast.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorSplat.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorSplat.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorStruct.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLConstructorStruct.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLDoStatement.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLExpressionStatement.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLFieldAccess.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLForStatement.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLFunctionCall.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLFunctionDefinition.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLIfStatement.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLIndexExpression.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLMethodReference.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLPostfixExpression.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLSwitchStatement.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLSwizzle.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLTernaryExpression.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLTypeReference.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLVarDeclarations.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/tracing/SkVMDebugTrace.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/tracing/SkVMDebugTrace.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/tracing/SkVMDebugTracePlayer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/tracing/SkVMDebugTracePlayer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/transform/SkSLEliminateDeadFunctions.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/transform/SkSLEliminateDeadGlobalVariables.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/transform/SkSLEliminateDeadLocalVariables.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/transform/SkSLEliminateUnreachableCode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/transform/SkSLProgramWriter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/transform/SkSLReplaceConstVarsWithLiterals.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/Slug.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/SubRunAllocator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/SubRunAllocator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkVMVisualizer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkVMVisualizer.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/BigPath.cpp -FILE: ../../../third_party/skia/bench/BigPath.h -FILE: ../../../third_party/skia/bench/CanvasSaveRestoreBench.cpp -FILE: ../../../third_party/skia/bench/TriangulatorBench.cpp -FILE: ../../../third_party/skia/experimental/bazel_test/hello_world.go -FILE: ../../../third_party/skia/experimental/lowp-basic/QMath.h -FILE: ../../../third_party/skia/experimental/lowp-basic/bilerp-study.cpp -FILE: ../../../third_party/skia/experimental/lowp-basic/lerp-study.cpp -FILE: ../../../third_party/skia/experimental/lowp-basic/lowp_experiments.cpp -FILE: ../../../third_party/skia/experimental/tskit/bindings/bindings.h -FILE: ../../../third_party/skia/experimental/tskit/bindings/core.cpp -FILE: ../../../third_party/skia/experimental/tskit/bindings/extension.cpp -FILE: ../../../third_party/skia/experimental/webgpu-bazel/src/bindings.cpp FILE: ../../../third_party/skia/gm/attributes.cpp FILE: ../../../third_party/skia/gm/composecolorfilter.cpp FILE: ../../../third_party/skia/gm/crbug_1167277.cpp @@ -7360,15 +7982,50 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/experimental/sorttoy/Cmds.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/batchedconvexpaths.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/destcolor.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkSLProgramKind.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkStringView.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/chromium/SkChromeRemoteGlyphCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/DSLBlock.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/DSLCase.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/DSLFunction.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/DSLLayout.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/DSLStatement.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/SkSLDebugTrace.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/SkSLErrorReporter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/SkSLPosition.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrVertexChunkArray.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrVertexChunkArray.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrModulateAtlasCoverageEffect.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/effects/GrModulateAtlasCoverageEffect.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/AtlasInstancedHelper.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/PathStencilCoverOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/PathStencilCoverOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/PathTessellateOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/ops/PathTessellateOp.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/tessellate/GrTessellationShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/tessellate/AffineMatrix.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/tessellate/PatchWriter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/tessellate/Tessellation.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLErrorReporter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLIntrinsicList.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLMangler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLParser.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLParser.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/dsl/DSLBlock.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/dsl/DSLCase.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/dsl/DSLFunction.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/dsl/DSLLayout.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/dsl/DSLStatement.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/dsl/priv/DSL_priv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLFunctionDeclaration.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLModifiers.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLPoison.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLVariable.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/transform/SkSLFindAndDeclareBuiltinVariables.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/transform/SkSLTransform.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/experimental/sorttoy/Cmds.cpp -FILE: ../../../third_party/skia/experimental/sorttoy/Cmds.h -FILE: ../../../third_party/skia/experimental/sorttoy/Fake.cpp -FILE: ../../../third_party/skia/experimental/sorttoy/Fake.h -FILE: ../../../third_party/skia/experimental/sorttoy/SortKey.h -FILE: ../../../third_party/skia/experimental/sorttoy/sorttoy.cpp -FILE: ../../../third_party/skia/experimental/sorttoy/sorttypes.h FILE: ../../../third_party/skia/gm/batchedconvexpaths.cpp FILE: ../../../third_party/skia/gm/destcolor.cpp FILE: ../../../third_party/skia/include/private/SkSLProgramKind.h @@ -7446,7 +8103,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia +ORIGIN: ../../../third_party/skia/fuzz/FuzzTriangulation.cpp + ../../../third_party/skia/LICENSE ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzDDLThreading.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzRegionOp.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzSkParagraph.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzTriangulation.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/fuzz/FuzzTriangulation.cpp FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzDDLThreading.cpp @@ -7487,13 +8148,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: libjxl -LIBRARY: skia -ORIGIN: ../../../third_party/skia/experimental/tskit/go/gen_types/gen_types.go + ../../../LICENSE +ORIGIN: ../../../third_party/skia/third_party/libjxl/jxl/jxl_export.h + ../../../LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/experimental/tskit/go/gen_types/gen_types.go -FILE: ../../../third_party/skia/experimental/tskit/go/gen_types/gen_types_test.go -FILE: ../../../third_party/skia/infra/bots/gen_tasks_logic/skpbench_flags.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/perf_puppeteer_skottie_frames/make_lotties_with_assets/make_lotties_with_assets.go FILE: ../../../third_party/skia/third_party/libjxl/jxl/jxl_export.h ---------------------------------------------------------------------------------------------------- Copyright 2021 The Chromium Authors. All rights reserved. @@ -7528,6 +8184,33 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/gm/drawlines_with_local_matrix.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/mirrortile.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/nearesthalfpixelimage.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/palette.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkOpenTypeSVGDecoder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/mtl/MtlMemoryAllocator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/BlendModes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/text/Font.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skottie/src/text/Font.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skunicode/src/SkUnicode_client.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/include/SkSVGOpenTypeSVGDecoder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/svg/src/SkSVGOpenTypeSVGDecoder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkAvifCodec.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/codec/SkAvifCodec.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlComputeCommandEncoder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sfnt/SkOTTable_hmtx.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLRasterPipelineBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLRasterPipelineBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLWGSLCodeGenerator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLWGSLCodeGenerator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLDiscardStatement.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLInterfaceBlock.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLLayout.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLLiteral.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/SDFMaskFilter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkBlitterTrace.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkBlitterTraceCommon.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkCycles.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/gm/drawlines_with_local_matrix.cpp FILE: ../../../third_party/skia/gm/mirrortile.cpp @@ -7591,10 +8274,213 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/graphite/BoundsManagerBench.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/bug12866.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/gm/crbug_1313579.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkAlphaType.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkCapabilities.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkColorType.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/core/SkPathUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/GpuTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/CombinationBuilder.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/ContextOptions.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/ImageProvider.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/dawn/DawnBackendContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/vk/VulkanBackendContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkAlignedStorage.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkTypeTraits.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkUniquePaintParamsID.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/sksl/SkSLVersion.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/modules/skunicode/src/SkUnicode.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkCapabilities.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkDebugUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkPathUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkRuntimeEffectDictionary.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSLTypeShared.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/core/SkSLTypeShared.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/AtlasTypes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/AtlasTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/RefCntedCallback.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBufferTransferRenderTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBufferTransferRenderTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBufferUpdateRenderTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrBufferUpdateRenderTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrImageInfo.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/GrSurfaceProxyView.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/TestFormatColorTypeCombination.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/tessellate/PathTessellator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/tessellate/PathTessellator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/tessellate/StrokeTessellator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/tessellate/StrokeTessellator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/tessellate/VertexChunkPatchAllocator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/AttachmentTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/BuiltInCodeSnippetID.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ClientMappedBufferManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ClientMappedBufferManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ClipStack.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ClipStack_graphite.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/CombinationBuilder.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/CommandTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ComputePassTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ComputePassTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ComputePipeline.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ComputePipeline.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ComputePipelineDesc.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ComputeTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawAtlas.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawAtlas.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawCommands.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/DrawParams.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/FactoryFunctions.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/FactoryFunctions.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/GlobalCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/GlobalCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/GpuWorkSubmission.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/GraphiteResourceKey.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/GraphiteResourceKey.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ImageUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ImageUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/KeyContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/KeyContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/KeyHelpers.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/KeyHelpers.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Log.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/PaintOptionsPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/PaintParams.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/PaintParams.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/PaintParamsKey.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/PaintParamsKey.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/PietRenderTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/PietRenderTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/PipelineData.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/PipelineData.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Precompile.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Precompile.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/PrecompileBasePriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/QueueManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/QueueManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/RecorderPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/RecordingPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Renderer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/RendererProvider.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/RendererProvider.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Resource.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Resource.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ResourceCache.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ResourceCache.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Sampler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/Sampler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ShaderCodeDictionary.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/ShaderCodeDictionary.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/SpecialImage_Graphite.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/SynchronizeToCpuTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/SynchronizeToCpuTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/TextureProxyView.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/TextureUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/TextureUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/UploadBufferManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/UploadBufferManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/UploadTask.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/UploadTask.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnAsyncWait.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnAsyncWait.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnCaps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnCaps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnCommandBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnCommandBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnGraphicsPipeline.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnGraphicsPipeline.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnQueueManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnQueueManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnResourceProvider.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnResourceProvider.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnSampler.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnSampler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnSharedContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnSharedContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnTexture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnTexture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnTypesPriv.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/dawn/DawnUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/geom/Geometry.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/geom/SubRunData.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlComputePipeline.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlComputePipeline.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlQueueManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlQueueManager.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlSampler.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/mtl/MtlSampler.mm + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/AnalyticRRectRenderStep.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/AnalyticRRectRenderStep.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/BitmapTextRenderStep.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/BitmapTextRenderStep.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/CommonDepthStencilSettings.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/CoverBoundsRenderStep.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/CoverBoundsRenderStep.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/DynamicInstancesPatchAllocator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/MiddleOutFanRenderStep.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/MiddleOutFanRenderStep.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/SDFTextRenderStep.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/SDFTextRenderStep.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/TessellateCurvesRenderStep.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/TessellateCurvesRenderStep.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/TessellateStrokesRenderStep.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/TessellateStrokesRenderStep.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/TessellateWedgesRenderStep.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/TessellateWedgesRenderStep.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/VerticesRenderStep.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/render/VerticesRenderStep.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/text/AtlasManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/text/AtlasManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanCaps.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanCaps.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanCommandBuffer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanCommandBuffer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanGraphiteUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanQueueManager.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanQueueManager.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanResourceProvider.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanResourceProvider.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanSharedContext.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanSharedContext.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanTexture.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanTexture.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/tessellate/FixedCountBufferUtils.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/tessellate/FixedCountBufferUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/tessellate/LinearTolerances.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/vk/VulkanUtils.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/SkEmptyShader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/shaders/gradients/SkGradientShaderBase.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLModuleLoader.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLModuleLoader.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLFinalizationChecks.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLHasSideEffects.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLIsSameExpressionTree.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLIsTrivialExpression.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLNoOpErrorReporter.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/analysis/SkSLProgramUsage.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLRasterPipelineCodeGenerator.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/codegen/SkSLRasterPipelineCodeGenerator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/ir/SkSLProgram.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/tracing/SkRPDebugTrace.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/tracing/SkRPDebugTrace.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/tracing/SkSLDebugInfo.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/transform/SkSLAddConstToVarModifiers.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/transform/SkSLEliminateEmptyStatements.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/transform/SkSLFindAndDeclareBuiltinFunctions.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/transform/SkSLRenamePrivateSymbols.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/StrikeForGPU.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/GlyphVector.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/GlyphVector.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/SubRunContainer.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/text/gpu/SubRunContainer.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkGaussianColorFilter.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/utils/SkTestCanvas.h + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/graphite/BoundsManagerBench.cpp -FILE: ../../../third_party/skia/example/VulkanBasic.cpp FILE: ../../../third_party/skia/gm/bug12866.cpp FILE: ../../../third_party/skia/gm/crbug_1313579.cpp FILE: ../../../third_party/skia/include/core/SkAlphaType.h @@ -7611,11 +8497,6 @@ FILE: ../../../third_party/skia/include/private/SkAlignedStorage.h FILE: ../../../third_party/skia/include/private/SkTypeTraits.h FILE: ../../../third_party/skia/include/private/SkUniquePaintParamsID.h FILE: ../../../third_party/skia/include/sksl/SkSLVersion.h -FILE: ../../../third_party/skia/infra/bots/task_drivers/bazel_build/bazel_build.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/canvaskit_gold/canvaskit_gold.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/check_generated_files/check_generated_files.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/cpu_tests/cpu_tests.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/toolchain_layering_check/toolchain_layering_check.go FILE: ../../../third_party/skia/modules/skunicode/src/SkUnicode.cpp FILE: ../../../third_party/skia/src/core/SkCapabilities.cpp FILE: ../../../third_party/skia/src/core/SkDebugUtils.h @@ -7840,16 +8721,28 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia -ORIGIN: ../../../third_party/skia/experimental/bazel_test/base/base.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/MutableTextureState.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/dawn/DawnTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/graphite/vk/VulkanGraphiteTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/vk/VulkanExtensions.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/vk/VulkanMemoryAllocator.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/gpu/vk/VulkanTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/SkContainers.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/graphite/DawnTypesPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/graphite/VulkanGraphiteTypesPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/include/private/gpu/vk/VulkanTypesPriv.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/MutableTextureStateRef.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnAsyncWait.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/ganesh/dawn/GrDawnAsyncWait.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/graphite/vk/VulkanGraphiteTypes.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/piet/PietTypes.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/piet/Render.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/piet/Render.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/piet/Scene.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/piet/Scene.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/gpu/tessellate/MidpointContourParser.h + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/src/sksl/SkSLPosition.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/experimental/bazel_test/base/base.h -FILE: ../../../third_party/skia/experimental/bazel_test/base/base_priv.h -FILE: ../../../third_party/skia/experimental/bazel_test/client/gizmo.cpp -FILE: ../../../third_party/skia/experimental/bazel_test/client/gizmo.h -FILE: ../../../third_party/skia/experimental/bazel_test/client/main.cpp -FILE: ../../../third_party/skia/experimental/bazel_test/core/core.cpp -FILE: ../../../third_party/skia/experimental/bazel_test/core/core.h -FILE: ../../../third_party/skia/experimental/bazel_test/core/core_priv.h FILE: ../../../third_party/skia/include/gpu/MutableTextureState.h FILE: ../../../third_party/skia/include/gpu/graphite/dawn/DawnTypes.h FILE: ../../../third_party/skia/include/gpu/graphite/vk/VulkanGraphiteTypes.h @@ -7906,6 +8799,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: skia ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzCOLRv1.cpp + ../../../third_party/skia/LICENSE +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzSkMeshSpecification.cpp + ../../../third_party/skia/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzCOLRv1.cpp FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzSkMeshSpecification.cpp @@ -7941,40 +8835,4 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/infra/bots/task_drivers/codesize/codesize.go + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/infra/bots/task_drivers/codesize/codesize.go -FILE: ../../../third_party/skia/infra/bots/task_drivers/codesize/codesize_test.go -FILE: ../../../third_party/skia/modules/canvaskit/go/gold_test_env/gold_test_env.go ----------------------------------------------------------------------------------------------------- -Copyright 2022 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== -Total license count: 66 +Total license count: 62 diff --git a/ci/licenses_golden/licenses_third_party b/ci/licenses_golden/licenses_third_party index fc56c9a494ae2..ba84f8e1dd3fb 100644 --- a/ci/licenses_golden/licenses_third_party +++ b/ci/licenses_golden/licenses_third_party @@ -1,387 +1,66 @@ -Signature: a608407eb248a96de65ccc6089229915 - -UNUSED LICENSES: - -==================================================================================================== -ORIGIN: ../../../third_party/angle/util/windows/third_party/StackWalker/LICENSE -TYPE: LicenseType.bsd ----------------------------------------------------------------------------------------------------- -BSD 3-Clause License - -Copyright (c) 2005 - 2017, Jochen Kalmbach -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/third_party/ffx_spd/LICENSE -TYPE: LicenseType.mit ----------------------------------------------------------------------------------------------------- -Copyright (c) 2020 Advanced Micro Devices, Inc. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/LICENSE -TYPE: LicenseType.bsd ----------------------------------------------------------------------------------------------------- -Copyright 2006-2011, the V8 project authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -ORIGIN: ../../../third_party/harfbuzz/src/ms-use/COPYING -TYPE: LicenseType.mit ----------------------------------------------------------------------------------------------------- -MIT License - -Copyright (c) Microsoft Corporation. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE -==================================================================================================== - -==================================================================================================== -ORIGIN: ../../../third_party/angle/src/common/third_party/xxhash/LICENSE -TYPE: LicenseType.bsd ----------------------------------------------------------------------------------------------------- -xxHash Library -Copyright (c) 2012-2014, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -USED LICENSES: - -==================================================================================================== -LIBRARY: libpng -ORIGIN: ../../../third_party/libpng/LICENSE -TYPE: LicenseType.libpng -FILE: ../../../third_party/libpng/pngprefix.h ----------------------------------------------------------------------------------------------------- - -==================================================================================================== - -==================================================================================================== -LIBRARY: libpng -ORIGIN: ../../../third_party/libpng/png.h -TYPE: LicenseType.libpng -FILE: ../../../third_party/libpng/arm/arm_init.c -FILE: ../../../third_party/libpng/arm/filter_neon.S -FILE: ../../../third_party/libpng/arm/filter_neon_intrinsics.c -FILE: ../../../third_party/libpng/arm/palette_neon_intrinsics.c -FILE: ../../../third_party/libpng/intel/filter_sse2_intrinsics.c -FILE: ../../../third_party/libpng/intel/intel_init.c -FILE: ../../../third_party/libpng/png.c -FILE: ../../../third_party/libpng/pngconf.h -FILE: ../../../third_party/libpng/pngdebug.h -FILE: ../../../third_party/libpng/pngerror.c -FILE: ../../../third_party/libpng/pngget.c -FILE: ../../../third_party/libpng/pnginfo.h -FILE: ../../../third_party/libpng/pnglibconf.h -FILE: ../../../third_party/libpng/pngmem.c -FILE: ../../../third_party/libpng/pngpread.c -FILE: ../../../third_party/libpng/pngpriv.h -FILE: ../../../third_party/libpng/pngread.c -FILE: ../../../third_party/libpng/pngrio.c -FILE: ../../../third_party/libpng/pngrtran.c -FILE: ../../../third_party/libpng/pngrutil.c -FILE: ../../../third_party/libpng/pngset.c -FILE: ../../../third_party/libpng/pngstruct.h -FILE: ../../../third_party/libpng/pngtest.c -FILE: ../../../third_party/libpng/pngtrans.c -FILE: ../../../third_party/libpng/pngwio.c -FILE: ../../../third_party/libpng/pngwrite.c -FILE: ../../../third_party/libpng/pngwtran.c -FILE: ../../../third_party/libpng/pngwutil.c ----------------------------------------------------------------------------------------------------- - -==================================================================================================== +Signature: 1fe7a172b3697aa624cc216e663c320f ==================================================================================================== LIBRARY: angle +LIBRARY: glslang ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/preprocessor_tab_autogen.cpp +ORIGIN: ../../../third_party/angle/src/compiler/translator/glslang_tab_autogen.cpp +ORIGIN: ../../../third_party/angle/src/compiler/translator/glslang_tab_autogen.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/glslang_tab.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/glslang_tab.cpp.h TYPE: LicenseType.bison FILE: ../../../third_party/angle/src/compiler/preprocessor/preprocessor_tab_autogen.cpp FILE: ../../../third_party/angle/src/compiler/translator/glslang_tab_autogen.cpp FILE: ../../../third_party/angle/src/compiler/translator/glslang_tab_autogen.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/glslang_tab.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/glslang_tab.cpp.h ---------------------------------------------------------------------------------------------------- ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: null -TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/ios-aarch64/crypto/chacha/chacha-armv8.S -FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/aesv8-armx64.S -FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/armv8-mont.S -FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/ghash-neon-armv8.S -FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/ghashv8-armx64.S -FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha1-armv8.S -FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/vpaes-armv8.S -FILE: ../../../third_party/boringssl/ios-arm/crypto/chacha/chacha-armv4.S -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/aesv8-armx32.S -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/armv4-mont.S -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/ghash-armv4.S -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/ghashv8-armx32.S -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha1-armv4-large.S -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/vpaes-armv7.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/chacha/chacha-armv8.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/aesv8-armx64.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/armv8-mont.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/ghash-neon-armv8.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/ghashv8-armx64.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/sha1-armv8.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/vpaes-armv8.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/chacha/chacha-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/aesv8-armx32.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/armv4-mont.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/ghash-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/ghashv8-armx32.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha1-armv4-large.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/vpaes-armv7.S -FILE: ../../../third_party/boringssl/linux-ppc64le/crypto/fipsmodule/aesp8-ppc.S -FILE: ../../../third_party/boringssl/linux-ppc64le/crypto/fipsmodule/ghashp8-ppc.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/chacha/chacha-x86.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/aesni-x86.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/bn-586.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/co-586.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/ghash-ssse3-x86.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/ghash-x86.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/md5-586.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/sha1-586.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/sha256-586.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/sha512-586.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/vpaes-x86.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/x86-mont.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/chacha/chacha-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/ghash-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/md5-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/rdrand-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/rsaz-avx2.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha1-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha256-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha512-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont5.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/chacha/chacha-x86.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/aesni-x86.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/bn-586.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/co-586.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/ghash-ssse3-x86.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/ghash-x86.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/md5-586.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/sha1-586.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/sha256-586.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/sha512-586.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/vpaes-x86.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/x86-mont.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/chacha/chacha-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/aesni-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/ghash-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/md5-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/p256-x86_64-asm.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/rdrand-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/rsaz-avx2.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/sha1-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/sha256-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/sha512-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/vpaes-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/x86_64-mont.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/x86_64-mont5.S -FILE: ../../../third_party/boringssl/win-aarch64/crypto/chacha/chacha-armv8.S -FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/aesv8-armx64.S -FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/armv8-mont.S -FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/ghash-neon-armv8.S -FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/ghashv8-armx64.S -FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/sha1-armv8.S -FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/vpaes-armv8.S -FILE: ../../../third_party/boringssl/win-x86/crypto/chacha/chacha-x86.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/aesni-x86.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/bn-586.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/co-586.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/ghash-ssse3-x86.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/ghash-x86.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/md5-586.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/sha1-586.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/sha256-586.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/sha512-586.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/vpaes-x86.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/x86-mont.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/chacha/chacha-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/aesni-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/ghash-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/md5-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/p256-x86_64-asm.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/rdrand-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/rsaz-avx2.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/sha1-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/sha256-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/sha512-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/vpaes-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/x86_64-mont.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/x86_64-mont5.asm ----------------------------------------------------------------------------------------------------- - -==================================================================================================== - -==================================================================================================== -LIBRARY: smhasher -ORIGIN: ../../../third_party/angle/src/common/third_party/smhasher/LICENSE -TYPE: LicenseType.mit -FILE: ../../../third_party/angle/src/common/third_party/smhasher/src/PMurHash.cpp -FILE: ../../../third_party/angle/src/common/third_party/smhasher/src/PMurHash.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/brkitr/dictionaries/thaidict.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/brkitr/dictionaries/thaidict.txt ---------------------------------------------------------------------------------------------------- -All MurmurHash source files are placed in the public domain. - -The license below applies to all other code in SMHasher: - -Copyright (c) 2011 Google, Inc. +# Copyright (c) 2006-2015 International Business Machines Corporation, + # Apple Inc., and others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== LIBRARY: flatbuffers ORIGIN: ../../../third_party/flatbuffers/dart/LICENSE TYPE: LicenseType.apache -FILE: ../../../third_party/flatbuffers/dart/example/monster_my_game.sample_generated.dart FILE: ../../../third_party/flatbuffers/dart/lib/flat_buffers.dart FILE: ../../../third_party/flatbuffers/dart/lib/flex_buffers.dart FILE: ../../../third_party/flatbuffers/dart/lib/src/builder.dart @@ -390,7 +69,7 @@ FILE: ../../../third_party/flatbuffers/dart/lib/src/types.dart ---------------------------------------------------------------------------------------------------- Apache License Version 2.0, January 2004 -http://www.apache.org/licenses +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -594,58 +273,1218 @@ limitations under the License. ==================================================================================================== LIBRARY: abseil-cpp LIBRARY: angle -LIBRARY: boringssl LIBRARY: expat LIBRARY: flatbuffers LIBRARY: fuchsia-vulkan +LIBRARY: glslang LIBRARY: khronos -LIBRARY: libwebp LIBRARY: pkg -LIBRARY: vulkan-deps +LIBRARY: shaderc +LIBRARY: spirv-cross +LIBRARY: vulkan-headers +LIBRARY: vulkan-validation-layers LIBRARY: wuffs -ORIGIN: ../../../flutter/third_party/txt/LICENSE +ORIGIN: ../../../third_party/flatbuffers/LICENSE.txt +ORIGIN: ../../../third_party/flatbuffers/swift/LICENSE +ORIGIN: ../../../third_party/fuchsia-vulkan/LICENSE.txt +ORIGIN: ../../../third_party/shaderc/LICENSE +ORIGIN: ../../../third_party/vulkan-deps/spirv-cross/src/LICENSE +ORIGIN: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/LICENSE.txt +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_enums.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_funcs.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_handles.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_raii.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_structs.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/fuchsia-vulkan/registry/vk.xml +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/main.cpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cfg.cpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cfg.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_common.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cpp.cpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cpp.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross.cpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_c.cpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_c.h +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_containers.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_error_handling.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_parsed_ir.cpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_parsed_ir.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_util.cpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_util.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_glsl.cpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_glsl.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_hlsl.cpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_hlsl.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_msl.cpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_msl.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_parser.cpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_parser.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_reflect.cpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_reflect.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_enums.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_format_traits.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_funcs.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_handles.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_hash.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_raii.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_structs.hpp +ORIGIN: Apache-2.0 OR MIT referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_to_string.hpp +ORIGIN: Apache-2.0 referenced by ../../../third_party/angle/include/EGL/egl.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/angle/include/EGL/eglext.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/angle/include/EGL/eglplatform.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/angle/include/GLES2/gl2platform.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/angle/include/GLES3/gl3platform.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vk_video/vulkan_video_codec_h264std.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vk_video/vulkan_video_codec_h264std_decode.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vk_video/vulkan_video_codec_h264std_encode.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vk_video/vulkan_video_codec_h265std.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vk_video/vulkan_video_codec_h265std_decode.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vk_video/vulkan_video_codec_h265std_encode.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vk_video/vulkan_video_codecs_common.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vk_platform.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_android.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_beta.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_core.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_directfb.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_fuchsia.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_ggp.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_ios.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_macos.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_metal.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_screen.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_vi.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_wayland.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_win32.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_xcb.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_xlib.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vulkan_xlib_xrandr.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/khronos/EGL/egl.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/khronos/EGL/eglext.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/khronos/EGL/eglplatform.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/Package.swift +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/barrier.hpp +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/external_interface.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/image.hpp +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/internal_interface.hpp +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/sampler.hpp +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/thread_group.hpp +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/pkg-config/spirv-cross-c-shared.pc.in +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vk_video/vulkan_video_codec_h264std.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vk_video/vulkan_video_codec_h264std_decode.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vk_video/vulkan_video_codec_h264std_encode.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vk_video/vulkan_video_codec_h265std.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vk_video/vulkan_video_codec_h265std_decode.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vk_video/vulkan_video_codec_h265std_encode.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vk_video/vulkan_video_codecs_common.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vk_platform.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_android.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_beta.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_core.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_directfb.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_fuchsia.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_ggp.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_ios.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_macos.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_metal.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_screen.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_vi.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_wayland.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_win32.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_xcb.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_xlib.h +ORIGIN: Apache-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_xlib_xrandr.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_d3d10.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_d3d11.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_dx9_media_sharing.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_dx9_media_sharing_intel.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_egl.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_ext.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_ext_intel.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_gl.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_gl_ext.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_half.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_icd.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_layer.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_platform.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_va_api_media_sharing_intel.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/cl_version.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/CL/opencl.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/GLES/egl.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/include/GLES/glplatform.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/layout/fragment.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-af/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-am/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-ar/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-as/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-az/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-b+sr+Latn/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-be/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-bg/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-bn/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-bs/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-ca/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-cs/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-da/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-de/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-el/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-en-rAU/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-en-rCA/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-en-rGB/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-en-rIN/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-en-rXC/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-es-rUS/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-es/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-et/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-eu/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-fa/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-fi/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-fr-rCA/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-fr/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-gl/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-gu/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-hi/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-hr/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-hu/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-hy/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-in/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-is/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-it/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-iw/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-ja/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-ka/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-kk/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-km/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-kn/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-ko/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-ky/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-lo/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-lt/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-lv/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-mk/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-ml/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-mn/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-mr/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-ms/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-my/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-nb/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-ne/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-nl/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-or/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-pa/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-pl/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-pt-rPT/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-pt/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-ro/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-ru/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-si/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-sk/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-sl/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-sq/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-sr/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-sv/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-sw/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-ta/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-te/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-th/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-tl/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-tr/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-uk/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-ur/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-uz/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-vi/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-zh-rCN/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-zh-rHK/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-zh-rTW/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values-zu/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values/dimens.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values/drivers.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values/global_settings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values/intents.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values/preference_keys.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/values/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/res/xml/main.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/src/com/android/angle/AndroidManifest.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/src/com/android/angle/EmptyMainActivity.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/src/com/android/angle/MainActivity.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/src/com/android/angle/common/GlobalSettings.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/src/com/android/angle/common/MainFragment.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/src/com/android/angle/common/Receiver.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/android_system_settings/src/com/android/angle/common/SearchProvider.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/angle/src/common/vulkan/vk_google_filtering_precision.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/expat/expat/fuzz/xml_parse_fuzzer.c +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/expat/expat/fuzz/xml_parsebuffer_fuzzer.c +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/conan/test_package/test_package.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/grpc/flatbuffers-java-grpc/src/main/java/com/google/flatbuffers/grpc/FlatbuffersUtils.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/grpc/src/compiler/java_generator.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/grpc/src/compiler/java_generator.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/grpc/src/compiler/python_generator.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/grpc/src/compiler/python_generator.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/grpc/src/compiler/schema_interface.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/grpc/src/compiler/swift_generator.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/grpc/src/compiler/swift_generator.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/grpc/src/compiler/ts_generator.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/allocator.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/array.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/bfbs_generator.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/buffer.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/buffer_ref.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/code_generators.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/default_allocator.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/detached_buffer.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/flatbuffer_builder.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/flatbuffers.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/flatc.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/flex_flat_util.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/flexbuffers.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/grpc.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/hash.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/idl.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/minireflect.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/pch/flatc_pch.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/pch/pch.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/reflection.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/registry.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/stl_emulation.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/string.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/struct.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/table.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/util.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/vector.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/vector_downward.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/include/flatbuffers/verifier.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/BaseVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/BooleanVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/ByteBufferUtil.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/ByteVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/Constants.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/DoubleVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/FlatBufferBuilder.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/FlexBuffers.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/FlexBuffersBuilder.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/FloatVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/IntVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/LongVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/ShortVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/StringVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/Struct.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/Table.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/UnionVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/Utf8.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/java/com/google/flatbuffers/Utf8Old.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/BaseVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/BooleanVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/ByteBufferUtil.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/ByteVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/Constants.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/DoubleVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/FlatBufferBuilder.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/FlexBuffers.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/FlexBuffersBuilder.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/FloatVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/IntVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/LongVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/ShortVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/StringVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/Struct.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/Table.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/UnionVector.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/Utf8.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/java/com/google/flatbuffers/Utf8Old.java +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/benchmark/FlexBuffersBenchmark.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/benchmark/JsonBenchmark.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/benchmark/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/benchmark/UTF8Benchmark.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/Buffers.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/ByteArray.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/FlexBuffers.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/FlexBuffersBuilder.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/FlexBuffersInternals.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/JSON.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/Utf8.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/ByteArrayTest.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/FlexBuffersTest.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/JSONTest.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/jsMain/kotlin/com/google/flatbuffers/kotlin/ByteArray.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/ByteArray.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/nativeMain/kotlin/com/google/flatbuffers/kotlin/ByteArray.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/kotlin/spotless/spotless.kt +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/lobster/flatbuffers.lobster +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/annotated_binary_text_gen.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/bfbs_gen.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/bfbs_gen_lua.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/bfbs_gen_lua.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/binary_annotator.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/code_generators.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/flatc.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/flatc_main.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/flathash.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_cpp.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_csharp.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_dart.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_fbs.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_go.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_grpc.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_java.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_json_schema.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_kotlin.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_lobster.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_lua.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_php.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_python.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_rust.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_swift.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_text.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_gen_ts.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/idl_parser.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/reflection.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/src/util.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Package.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Package@swift-5.5.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/ByteBuffer.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Constants.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Enum.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/FlatBufferBuilder.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/FlatBufferObject.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/FlatBuffersUtils.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/FlatbuffersErrors.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Int+extension.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Message.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Mutable.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/NativeObject.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Offset.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Root.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/String+extension.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Struct.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Table.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/TableVerifier.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/VeriferOptions.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Verifiable.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Verifier.swift +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vk_icd.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vk_layer.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/fuchsia-vulkan/include/vulkan/vk_sdk_platform.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/khronos/GLES2/gl2platform.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/khronos/GLES3/gl3platform.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/async.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/cache.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/check.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/collection.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/core.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/io.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/iterables.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/mirrors.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/pattern.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/async/collect.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/async/concat.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/async/countdown_timer.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/async/enumerate.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/async/future_stream.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/async/iteration.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/async/metronome.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/async/stream_buffer.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/async/stream_router.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/async/string.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/cache/cache.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/cache/map_cache.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/collection/bimap.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/collection/delegates/iterable.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/collection/delegates/list.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/collection/delegates/map.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/collection/delegates/queue.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/collection/delegates/set.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/collection/lru_map.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/collection/multimap.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/collection/treeset.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/core/hash.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/core/optional.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/iterables/concat.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/iterables/count.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/iterables/cycle.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/iterables/enumerate.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/iterables/generating_iterable.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/iterables/infinite_iterable.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/iterables/merge.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/iterables/min_max.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/iterables/partition.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/iterables/range.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/iterables/zip.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/time/clock.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/time/duration_unit_constants.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/src/time/util.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/strings.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/pkg/quiver/lib/time.dart +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/android_test/test.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/dependency_info.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/dependency_info.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/file.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/file.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/file_compiler.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/file_compiler.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/file_includer.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/file_includer.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/file_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/main.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/resource_parse.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/resource_parse.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/resource_parse_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/shader_stage.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/shader_stage.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/glslc/src/stage_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/android-release/continuous_arm.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/android-release/continuous_x86.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/android-release/presubmit_arm.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/android-release/presubmit_x86.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/continuous_clang_asan.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/continuous_clang_debug.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/continuous_clang_release.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/continuous_gcc_coverage.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/continuous_gcc_debug.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/continuous_gcc_debug_exception.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/continuous_gcc_release.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/continuous_license_check.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/continuous_mingw_release.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/presubmit_clang_asan.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/presubmit_clang_debug.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/presubmit_clang_release.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/presubmit_gcc_coverage.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/presubmit_gcc_debug.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/presubmit_gcc_release.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/linux/presubmit_license_check.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/macos/continuous_clang_debug.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/macos/continuous_clang_release.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/macos/presubmit_clang_debug.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/macos/presubmit_clang_release.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/ndk-build/continuous_khronos.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/ndk-build/presubmit_khronos.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/windows/continuous_debug_2017.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/windows/continuous_release_2015.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/windows/continuous_release_2017.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/windows/presubmit_debug_2017.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/windows/presubmit_release_2015.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/kokoro/windows/presubmit_release_2017.cfg +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc/include/shaderc/env.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc/include/shaderc/shaderc.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc/include/shaderc/shaderc.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc/include/shaderc/status.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc/include/shaderc/visibility.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc/src/common_shaders_for_test.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc/src/shaderc.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc/src/shaderc_c_smoke_test.c +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc/src/shaderc_cpp_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc/src/shaderc_private.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc/src/shaderc_private_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc/src/shaderc_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/args.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/compiler.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/counting_includer.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/exceptions.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/file_finder.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/format.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/io_shaderc.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/message.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/mutex.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/resources.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/resources.inc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/shader_stage.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/spirv_tools_wrapper.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/string_piece.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/universal_unistd.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/version_profile.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/args.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/compiler.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/compiler_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/counting_includer_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/death_test.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/file_finder.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/file_finder_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/format_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/io_shaderc.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/io_shaderc_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/message.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/message_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/mutex_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/resources.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/shader_stage.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/spirv_tools_wrapper.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/string_piece_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/version_profile.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/shaderc/libshaderc_util/src/version_profile_test.cc +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/glslang/src/SPIRV/bitutils.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/glslang/src/SPIRV/hex_float.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/glslang/src/gtests/Common.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/glslang/src/gtests/HexFloat.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/glslang/src/ndk_test/test.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/barrier.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/external_interface.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/image.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/internal_interface.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/sampler.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/thread_group.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/main.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cfg.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cfg.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_common.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cpp.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cpp.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_c.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_c.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_containers.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_error_handling.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_parsed_ir.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_parsed_ir.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_util.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_util.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_glsl.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_glsl.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_hlsl.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_hlsl.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_msl.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_msl.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_parser.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_parser.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_reflect.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/spirv_reflect.hpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/small_vector.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vk_icd.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vk_layer.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vk_sdk_platform.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/build-android/res/values/strings.xml +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/VkLayer_khronos_validation.def +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/android_ndk_types.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/base_node.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/base_node.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/best_practices_error_enums.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/best_practices_utils.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/best_practices_validation.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/buffer_state.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/buffer_state.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/buffer_validation.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/buffer_validation.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/cast_utils.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/cmd_buffer_state.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/cmd_buffer_state.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/convert_to_renderpass2.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/convert_to_renderpass2.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/core_error_location.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/core_error_location.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/core_validation.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/core_validation.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/core_validation_error_enums.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/debug_printf.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/debug_printf.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/descriptor_sets.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/descriptor_sets.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/descriptor_validation.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/device_memory_state.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/device_memory_state.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/device_state.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/drawdispatch.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/best_practices.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/best_practices.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/chassis.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/chassis.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/chassis_dispatch_helper.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/command_validation.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/command_validation.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/corechecks_optick_instrumentation.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/corechecks_optick_instrumentation.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/gpu_as_inspection_comp.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/gpu_pre_dispatch_comp.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/gpu_pre_draw_vert.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/layer_chassis_dispatch.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/layer_chassis_dispatch.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/lvt_function_pointers.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/lvt_function_pointers.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/object_tracker.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/object_tracker.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/parameter_validation.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/parameter_validation.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/spirv_grammar_helper.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/spirv_grammar_helper.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/spirv_tools_commit_id.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/spirv_validation_helper.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/synchronization_validation_types.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/synchronization_validation_types.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/thread_safety.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/thread_safety.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_dispatch_table_helper.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_enum_string_helper.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_extension_helper.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_format_utils.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_format_utils.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_layer_dispatch_table.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_object_types.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_safe_struct.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_safe_struct.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_typemap_helper.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_validation_error_messages.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_shaders/gpu_pre_dispatch.comp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_shaders/gpu_pre_draw.vert +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_shaders/gpu_shaders_constants.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_utils.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_utils.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_validation.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_validation.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_vuids.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/hash_util.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/hash_vk_types.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/image_layout_map.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/image_layout_map.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/image_state.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/image_state.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/layer_options.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/layer_options.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/object_lifetime_validation.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/object_tracker_utils.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/parameter_name.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/parameter_validation_utils.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/pipeline_layout_state.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/pipeline_layout_state.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/pipeline_state.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/pipeline_state.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/pipeline_sub_state.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/pipeline_sub_state.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/qfo_transfer.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/query_state.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/queue_state.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/queue_state.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/range_vector.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/ray_tracing_state.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/render_pass_state.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/render_pass_state.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/sampler_state.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/shader_module.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/shader_module.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/shader_validation.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/shader_validation.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/sparse_containers.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/state_tracker.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/state_tracker.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/stateless_validation.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/subresource_adapter.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/subresource_adapter.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/sync_utils.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/sync_utils.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/sync_vuid_maps.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/sync_vuid_maps.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/synchronization_validation.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/synchronization_validation.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_config.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_config.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_data.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_extension_utils.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_extension_utils.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_logging.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_settings_ext.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_utils.cpp +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_utils.h +ORIGIN: http://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_loader_platform.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/algorithm/algorithm.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/algorithm/container.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/algorithm/equal_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/attributes.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/call_once.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/casts.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/config.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/const_init.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/dynamic_annotations.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/inline_variable_test_a.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/inline_variable_test_b.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/atomic_hook.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/atomic_hook_test_helper.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/atomic_hook_test_helper.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/cycleclock.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/cycleclock.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/direct_mmap.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/endian.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/errno_saver.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/exception_safety_testing.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/exception_safety_testing.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/exception_testing.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/fast_type_id.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/hide_ptr.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/identity.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/inline_variable.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/inline_variable_testing.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/invoke.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/per_thread_tls.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/prefetch.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/pretty_function.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/raw_logging.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/raw_logging.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/scheduling_mode.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/scoped_set_env.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/scoped_set_env.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/spinlock.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/spinlock.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/spinlock_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/strerror.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/strerror.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/strerror_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/sysinfo.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/sysinfo.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/thread_identity.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/thread_identity.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/thread_identity_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/throw_delegate.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/unaligned_access.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/log_severity.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/log_severity.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/macros.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/optimization.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/options.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/policy_checks.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/port.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/spinlock_test_common.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/base/thread_annotations.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/cleanup/cleanup.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/cleanup/internal/cleanup.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/btree_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/btree_map.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/btree_set.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/fixed_array.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/fixed_array_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/flat_hash_map.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/flat_hash_set.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/inlined_vector.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/inlined_vector_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/btree.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/btree_container.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/common.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/container_memory.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/counting_allocator.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/hash_generator_testing.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/hash_generator_testing.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/hash_policy_testing.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/hashtable_debug.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/hashtable_debug_hooks.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/inlined_vector.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/layout.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/layout_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/node_slot_policy.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/raw_hash_set_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/raw_hash_set_probe_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/test_instance_tracker.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/test_instance_tracker.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/internal/tracked.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/node_hash_map.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/container/node_hash_set.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/failure_signal_handler.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/address_is_readable.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/demangle.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/demangle.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/examine_stack.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/stack_consumption.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/stack_consumption.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/stacktrace_generic-inl.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/stacktrace_win32-inl.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/symbolize.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/internal/vdso_support.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/leak_check.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/leak_check.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/stacktrace.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/stacktrace.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/stacktrace_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/symbolize.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/symbolize.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/symbolize_unimplemented.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/debugging/symbolize_win32.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/commandlineflag.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/commandlineflag.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/config.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/declare.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/flag.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/flag.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/flag_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/flag_test_defs.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/commandlineflag.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/flag.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/flag.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/parse.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/path_util.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/program_name.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/program_name.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/registry.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/sequence_lock.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/usage.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/internal/usage.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/marshalling.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/marshalling.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/parse.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/parse.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/reflection.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/reflection.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/usage.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/usage.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/usage_config.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/flags/usage_config.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/functional/any_invocable.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/functional/bind_front.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/functional/function_ref.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/functional/function_type_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/functional/internal/any_invocable.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/functional/internal/front_binder.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/functional/internal/function_ref.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/hash/hash.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/hash/hash_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/hash/hash_testing.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/hash/internal/city.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/hash/internal/city.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/hash/internal/hash.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/hash/internal/hash.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/hash/internal/print_hash_of.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/hash/internal/spy_hash_state.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/memory/memory.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/meta/type_traits.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/numeric/bits.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/numeric/bits_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/numeric/int128.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/numeric/int128.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/numeric/int128_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/numeric/internal/bits.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/numeric/internal/representation.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/profiling/internal/exponential_biased.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/profiling/internal/exponential_biased.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/profiling/internal/periodic_sampler.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/profiling/internal/periodic_sampler.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/profiling/internal/periodic_sampler_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/benchmarks.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/bernoulli_distribution.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/beta_distribution.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/bit_gen_ref.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/discrete_distribution.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/discrete_distribution.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/distributions.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/exponential_distribution.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/gaussian_distribution.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/chi_square.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/chi_square.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/distribution_caller.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/distribution_test_util.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/distribution_test_util.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/explicit_seed_seq.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/fastmath.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/gaussian_distribution_gentables.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/generate_real.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/mock_helpers.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/mock_overload_set.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/nanobenchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/nanobenchmark.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/pcg_engine.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/platform.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/pool_urbg.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/randen.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/randen.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/randen_benchmarks.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/randen_detect.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/randen_detect.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/randen_engine.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/randen_hwaes.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/randen_round_keys.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/randen_slow.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/randen_slow.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/randen_traits.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/seed_material.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/seed_material.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/sequence_urbg.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/traits.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/uniform_helper.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/internal/wide_multiply.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/mock_distributions.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/mocking_bit_gen.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/poisson_distribution.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/random.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/seed_gen_exception.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/seed_gen_exception.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/seed_sequences.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/seed_sequences.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/uniform_int_distribution.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/uniform_real_distribution.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/random/zipf_distribution.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/status/internal/status_internal.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/status/internal/statusor_internal.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/status/status.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/status/status.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/status/status_payload_printer.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/status/status_payload_printer.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/status/statusor.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/status/statusor.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/ascii.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/ascii.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/ascii_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/charconv.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/charconv.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/charconv_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/cord.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/cord.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/cord_analysis.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/cord_analysis.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/cord_buffer.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/cord_buffer.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/cord_test_helpers.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/cordz_test_helpers.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/escaping.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/escaping.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/escaping_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/char_map.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/char_map_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/charconv_parse.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_data_edge.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_internal.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_test_util.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cordz_info.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cordz_sample_token.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cordz_sample_token.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cordz_update_scope.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/escaping.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/escaping.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/escaping_test_common.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/memutil.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/memutil.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/memutil_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/numbers_test_common.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/ostringstream.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/ostringstream_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/pow10_helper.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/pow10_helper.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_format/output.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_format/output.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/string_constant.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/utf8.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/internal/utf8.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/match.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/match.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/numbers.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/numbers.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/numbers_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/str_cat.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/str_cat.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/str_cat_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/str_format.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/str_join.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/str_join_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/str_replace.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/str_replace.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/str_replace_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/str_split.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/str_split.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/str_split_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/string_view.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/string_view.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/string_view_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/strip.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/substitute.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/strings/substitute.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/barrier.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/barrier.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/blocking_counter.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/blocking_counter.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/blocking_counter_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/internal/futex.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/internal/graphcycles_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/internal/thread_pool.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/internal/waiter.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/mutex.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/mutex.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/mutex_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/notification.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/synchronization/notification.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/civil_time.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/civil_time.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/civil_time_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/clock.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/clock.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/clock_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/duration.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/duration_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/format.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/format_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/cctz_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/get_current_time_chrono.inc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/test_util.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/internal/test_util.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/time.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/time.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/time/time_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/any.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/bad_any_cast.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/bad_any_cast.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/bad_optional_access.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/bad_optional_access.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/bad_variant_access.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/bad_variant_access.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/compare.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/internal/conformance_aliases.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/internal/conformance_archetype.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/internal/conformance_profile.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/internal/conformance_testing.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/internal/conformance_testing_helpers.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/internal/optional.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/internal/parentheses.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/internal/span.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/internal/transform_args.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/internal/variant.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/optional.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/span.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/variant.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/types/variant_benchmark.cc +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/absl/utility/utility.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/abseil-cpp/ci/absl_alternate_options.h +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/wuffs/release/c/wuffs-v0.2.c +ORIGIN: https://www.apache.org/licenses/LICENSE-2.0 referenced by ../../../third_party/wuffs/release/c/wuffs-v0.3.c TYPE: LicenseType.apache -FILE: ../../../third_party/abseil-cpp/BUILD.bazel -FILE: ../../../third_party/abseil-cpp/CMake/install_test_project/simple.cc -FILE: ../../../third_party/abseil-cpp/WORKSPACE -FILE: ../../../third_party/abseil-cpp/absl/BUILD.bazel -FILE: ../../../third_party/abseil-cpp/absl/algorithm/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/algorithm/algorithm.h -FILE: ../../../third_party/abseil-cpp/absl/algorithm/algorithm_test.cc FILE: ../../../third_party/abseil-cpp/absl/algorithm/container.h -FILE: ../../../third_party/abseil-cpp/absl/algorithm/container_test.cc FILE: ../../../third_party/abseil-cpp/absl/algorithm/equal_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/base/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/base/attributes.h -FILE: ../../../third_party/abseil-cpp/absl/base/bit_cast_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/call_once.h -FILE: ../../../third_party/abseil-cpp/absl/base/call_once_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/casts.h FILE: ../../../third_party/abseil-cpp/absl/base/config.h -FILE: ../../../third_party/abseil-cpp/absl/base/config_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/const_init.h FILE: ../../../third_party/abseil-cpp/absl/base/dynamic_annotations.h -FILE: ../../../third_party/abseil-cpp/absl/base/exception_safety_testing_test.cc -FILE: ../../../third_party/abseil-cpp/absl/base/inline_variable_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/inline_variable_test_a.cc FILE: ../../../third_party/abseil-cpp/absl/base/inline_variable_test_b.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/atomic_hook.h -FILE: ../../../third_party/abseil-cpp/absl/base/internal/atomic_hook_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/atomic_hook_test_helper.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/atomic_hook_test_helper.h -FILE: ../../../third_party/abseil-cpp/absl/base/internal/cmake_thread_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/cycleclock.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/cycleclock.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/direct_mmap.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/endian.h -FILE: ../../../third_party/abseil-cpp/absl/base/internal/endian_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/errno_saver.h -FILE: ../../../third_party/abseil-cpp/absl/base/internal/errno_saver_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/exception_safety_testing.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/exception_safety_testing.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/exception_testing.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/fast_type_id.h -FILE: ../../../third_party/abseil-cpp/absl/base/internal/fast_type_id_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/hide_ptr.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/identity.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/inline_variable.h @@ -653,18 +1492,15 @@ FILE: ../../../third_party/abseil-cpp/absl/base/internal/inline_variable_testing FILE: ../../../third_party/abseil-cpp/absl/base/internal/invoke.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/low_level_alloc.h -FILE: ../../../third_party/abseil-cpp/absl/base/internal/low_level_alloc_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/per_thread_tls.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/prefetch.h -FILE: ../../../third_party/abseil-cpp/absl/base/internal/prefetch_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/pretty_function.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/raw_logging.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/raw_logging.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/scheduling_mode.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/scoped_set_env.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/scoped_set_env.h -FILE: ../../../third_party/abseil-cpp/absl/base/internal/scoped_set_env_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/spinlock.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/spinlock.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc @@ -677,127 +1513,79 @@ FILE: ../../../third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc FILE: ../../../third_party/abseil-cpp/absl/base/internal/strerror.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/strerror.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/strerror_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/base/internal/strerror_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/sysinfo.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/sysinfo.h -FILE: ../../../third_party/abseil-cpp/absl/base/internal/sysinfo_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/thread_identity.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/thread_identity.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/thread_identity_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/base/internal/thread_identity_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/throw_delegate.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/throw_delegate.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h FILE: ../../../third_party/abseil-cpp/absl/base/internal/unaligned_access.h -FILE: ../../../third_party/abseil-cpp/absl/base/internal/unique_small_name_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc FILE: ../../../third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h -FILE: ../../../third_party/abseil-cpp/absl/base/invoke_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/log_severity.cc FILE: ../../../third_party/abseil-cpp/absl/base/log_severity.h -FILE: ../../../third_party/abseil-cpp/absl/base/log_severity_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/macros.h FILE: ../../../third_party/abseil-cpp/absl/base/optimization.h -FILE: ../../../third_party/abseil-cpp/absl/base/optimization_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/options.h FILE: ../../../third_party/abseil-cpp/absl/base/policy_checks.h FILE: ../../../third_party/abseil-cpp/absl/base/port.h -FILE: ../../../third_party/abseil-cpp/absl/base/raw_logging_test.cc FILE: ../../../third_party/abseil-cpp/absl/base/spinlock_test_common.cc FILE: ../../../third_party/abseil-cpp/absl/base/thread_annotations.h -FILE: ../../../third_party/abseil-cpp/absl/base/throw_delegate_test.cc -FILE: ../../../third_party/abseil-cpp/absl/cleanup/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/cleanup/cleanup.h -FILE: ../../../third_party/abseil-cpp/absl/cleanup/cleanup_test.cc FILE: ../../../third_party/abseil-cpp/absl/cleanup/internal/cleanup.h -FILE: ../../../third_party/abseil-cpp/absl/container/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/container/btree_benchmark.cc FILE: ../../../third_party/abseil-cpp/absl/container/btree_map.h FILE: ../../../third_party/abseil-cpp/absl/container/btree_set.h -FILE: ../../../third_party/abseil-cpp/absl/container/btree_test.cc -FILE: ../../../third_party/abseil-cpp/absl/container/btree_test.h FILE: ../../../third_party/abseil-cpp/absl/container/fixed_array.h FILE: ../../../third_party/abseil-cpp/absl/container/fixed_array_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/container/fixed_array_exception_safety_test.cc -FILE: ../../../third_party/abseil-cpp/absl/container/fixed_array_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/flat_hash_map.h -FILE: ../../../third_party/abseil-cpp/absl/container/flat_hash_map_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/flat_hash_set.h -FILE: ../../../third_party/abseil-cpp/absl/container/flat_hash_set_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/inlined_vector.h FILE: ../../../third_party/abseil-cpp/absl/container/inlined_vector_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/container/inlined_vector_exception_safety_test.cc -FILE: ../../../third_party/abseil-cpp/absl/container/inlined_vector_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/btree.h FILE: ../../../third_party/abseil-cpp/absl/container/internal/btree_container.h FILE: ../../../third_party/abseil-cpp/absl/container/internal/common.h FILE: ../../../third_party/abseil-cpp/absl/container/internal/compressed_tuple.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/compressed_tuple_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/container_memory.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/container_memory_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/counting_allocator.h FILE: ../../../third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/hash_function_defaults_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/hash_generator_testing.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/hash_generator_testing.h FILE: ../../../third_party/abseil-cpp/absl/container/internal/hash_policy_testing.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/hash_policy_testing_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/hash_policy_traits_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/hashtable_debug.h FILE: ../../../third_party/abseil-cpp/absl/container/internal/hashtable_debug_hooks.h FILE: ../../../third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h FILE: ../../../third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc -FILE: ../../../third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/inlined_vector.h FILE: ../../../third_party/abseil-cpp/absl/container/internal/layout.h FILE: ../../../third_party/abseil-cpp/absl/container/internal/layout_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/container/internal/layout_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/node_slot_policy.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/node_slot_policy_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/raw_hash_map.h FILE: ../../../third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/raw_hash_set.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/raw_hash_set_allocator_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/raw_hash_set_benchmark.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/raw_hash_set_probe_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/container/internal/raw_hash_set_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/test_instance_tracker.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/test_instance_tracker.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/test_instance_tracker_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/internal/tracked.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/unordered_map_constructor_test.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/unordered_map_lookup_test.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/unordered_map_members_test.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/unordered_map_modifiers_test.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/unordered_map_test.cc -FILE: ../../../third_party/abseil-cpp/absl/container/internal/unordered_set_constructor_test.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/unordered_set_lookup_test.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/unordered_set_members_test.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/unordered_set_modifiers_test.h -FILE: ../../../third_party/abseil-cpp/absl/container/internal/unordered_set_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/node_hash_map.h -FILE: ../../../third_party/abseil-cpp/absl/container/node_hash_map_test.cc FILE: ../../../third_party/abseil-cpp/absl/container/node_hash_set.h -FILE: ../../../third_party/abseil-cpp/absl/container/node_hash_set_test.cc -FILE: ../../../third_party/abseil-cpp/absl/container/sample_element_size_test.cc -FILE: ../../../third_party/abseil-cpp/absl/debugging/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/failure_signal_handler.h -FILE: ../../../third_party/abseil-cpp/absl/debugging/failure_signal_handler_test.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/address_is_readable.h FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/demangle.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/demangle.h -FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/demangle_test.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/examine_stack.h FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/stack_consumption.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/stack_consumption.h -FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/stack_consumption_test.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc @@ -811,8 +1599,6 @@ FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/vdso_support.h FILE: ../../../third_party/abseil-cpp/absl/debugging/leak_check.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/leak_check.h -FILE: ../../../third_party/abseil-cpp/absl/debugging/leak_check_fail_test.cc -FILE: ../../../third_party/abseil-cpp/absl/debugging/leak_check_test.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/stacktrace.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/stacktrace.h FILE: ../../../third_party/abseil-cpp/absl/debugging/stacktrace_benchmark.cc @@ -821,20 +1607,15 @@ FILE: ../../../third_party/abseil-cpp/absl/debugging/symbolize.h FILE: ../../../third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc FILE: ../../../third_party/abseil-cpp/absl/debugging/symbolize_elf.inc FILE: ../../../third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc -FILE: ../../../third_party/abseil-cpp/absl/debugging/symbolize_test.cc FILE: ../../../third_party/abseil-cpp/absl/debugging/symbolize_unimplemented.inc FILE: ../../../third_party/abseil-cpp/absl/debugging/symbolize_win32.inc -FILE: ../../../third_party/abseil-cpp/absl/flags/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/flags/commandlineflag.cc FILE: ../../../third_party/abseil-cpp/absl/flags/commandlineflag.h -FILE: ../../../third_party/abseil-cpp/absl/flags/commandlineflag_test.cc FILE: ../../../third_party/abseil-cpp/absl/flags/config.h -FILE: ../../../third_party/abseil-cpp/absl/flags/config_test.cc FILE: ../../../third_party/abseil-cpp/absl/flags/declare.h FILE: ../../../third_party/abseil-cpp/absl/flags/flag.cc FILE: ../../../third_party/abseil-cpp/absl/flags/flag.h FILE: ../../../third_party/abseil-cpp/absl/flags/flag_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/flags/flag_test.cc FILE: ../../../third_party/abseil-cpp/absl/flags/flag_test_defs.cc FILE: ../../../third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc FILE: ../../../third_party/abseil-cpp/absl/flags/internal/commandlineflag.h @@ -843,251 +1624,163 @@ FILE: ../../../third_party/abseil-cpp/absl/flags/internal/flag.h FILE: ../../../third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc FILE: ../../../third_party/abseil-cpp/absl/flags/internal/parse.h FILE: ../../../third_party/abseil-cpp/absl/flags/internal/path_util.h -FILE: ../../../third_party/abseil-cpp/absl/flags/internal/path_util_test.cc FILE: ../../../third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.cc FILE: ../../../third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h FILE: ../../../third_party/abseil-cpp/absl/flags/internal/program_name.cc FILE: ../../../third_party/abseil-cpp/absl/flags/internal/program_name.h -FILE: ../../../third_party/abseil-cpp/absl/flags/internal/program_name_test.cc FILE: ../../../third_party/abseil-cpp/absl/flags/internal/registry.h FILE: ../../../third_party/abseil-cpp/absl/flags/internal/sequence_lock.h -FILE: ../../../third_party/abseil-cpp/absl/flags/internal/sequence_lock_test.cc FILE: ../../../third_party/abseil-cpp/absl/flags/internal/usage.cc FILE: ../../../third_party/abseil-cpp/absl/flags/internal/usage.h -FILE: ../../../third_party/abseil-cpp/absl/flags/internal/usage_test.cc FILE: ../../../third_party/abseil-cpp/absl/flags/marshalling.cc FILE: ../../../third_party/abseil-cpp/absl/flags/marshalling.h -FILE: ../../../third_party/abseil-cpp/absl/flags/marshalling_test.cc FILE: ../../../third_party/abseil-cpp/absl/flags/parse.cc FILE: ../../../third_party/abseil-cpp/absl/flags/parse.h -FILE: ../../../third_party/abseil-cpp/absl/flags/parse_test.cc FILE: ../../../third_party/abseil-cpp/absl/flags/reflection.cc FILE: ../../../third_party/abseil-cpp/absl/flags/reflection.h -FILE: ../../../third_party/abseil-cpp/absl/flags/reflection_test.cc FILE: ../../../third_party/abseil-cpp/absl/flags/usage.cc FILE: ../../../third_party/abseil-cpp/absl/flags/usage.h FILE: ../../../third_party/abseil-cpp/absl/flags/usage_config.cc FILE: ../../../third_party/abseil-cpp/absl/flags/usage_config.h -FILE: ../../../third_party/abseil-cpp/absl/flags/usage_config_test.cc -FILE: ../../../third_party/abseil-cpp/absl/functional/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/functional/any_invocable.h -FILE: ../../../third_party/abseil-cpp/absl/functional/any_invocable_test.cc FILE: ../../../third_party/abseil-cpp/absl/functional/bind_front.h -FILE: ../../../third_party/abseil-cpp/absl/functional/bind_front_test.cc FILE: ../../../third_party/abseil-cpp/absl/functional/function_ref.h -FILE: ../../../third_party/abseil-cpp/absl/functional/function_ref_test.cc FILE: ../../../third_party/abseil-cpp/absl/functional/function_type_benchmark.cc FILE: ../../../third_party/abseil-cpp/absl/functional/internal/any_invocable.h FILE: ../../../third_party/abseil-cpp/absl/functional/internal/front_binder.h FILE: ../../../third_party/abseil-cpp/absl/functional/internal/function_ref.h -FILE: ../../../third_party/abseil-cpp/absl/hash/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/hash/hash.h FILE: ../../../third_party/abseil-cpp/absl/hash/hash_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/hash/hash_test.cc FILE: ../../../third_party/abseil-cpp/absl/hash/hash_testing.h FILE: ../../../third_party/abseil-cpp/absl/hash/internal/city.cc FILE: ../../../third_party/abseil-cpp/absl/hash/internal/city.h -FILE: ../../../third_party/abseil-cpp/absl/hash/internal/city_test.cc FILE: ../../../third_party/abseil-cpp/absl/hash/internal/hash.cc FILE: ../../../third_party/abseil-cpp/absl/hash/internal/hash.h FILE: ../../../third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc FILE: ../../../third_party/abseil-cpp/absl/hash/internal/low_level_hash.h -FILE: ../../../third_party/abseil-cpp/absl/hash/internal/low_level_hash_test.cc FILE: ../../../third_party/abseil-cpp/absl/hash/internal/print_hash_of.cc FILE: ../../../third_party/abseil-cpp/absl/hash/internal/spy_hash_state.h -FILE: ../../../third_party/abseil-cpp/absl/memory/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/memory/memory.h -FILE: ../../../third_party/abseil-cpp/absl/memory/memory_exception_safety_test.cc -FILE: ../../../third_party/abseil-cpp/absl/memory/memory_test.cc -FILE: ../../../third_party/abseil-cpp/absl/meta/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/meta/type_traits.h -FILE: ../../../third_party/abseil-cpp/absl/meta/type_traits_test.cc -FILE: ../../../third_party/abseil-cpp/absl/numeric/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/numeric/bits.h FILE: ../../../third_party/abseil-cpp/absl/numeric/bits_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/numeric/bits_test.cc FILE: ../../../third_party/abseil-cpp/absl/numeric/int128.cc FILE: ../../../third_party/abseil-cpp/absl/numeric/int128.h FILE: ../../../third_party/abseil-cpp/absl/numeric/int128_benchmark.cc FILE: ../../../third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc FILE: ../../../third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc -FILE: ../../../third_party/abseil-cpp/absl/numeric/int128_stream_test.cc -FILE: ../../../third_party/abseil-cpp/absl/numeric/int128_test.cc FILE: ../../../third_party/abseil-cpp/absl/numeric/internal/bits.h FILE: ../../../third_party/abseil-cpp/absl/numeric/internal/representation.h -FILE: ../../../third_party/abseil-cpp/absl/profiling/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/profiling/internal/exponential_biased.cc FILE: ../../../third_party/abseil-cpp/absl/profiling/internal/exponential_biased.h -FILE: ../../../third_party/abseil-cpp/absl/profiling/internal/exponential_biased_test.cc FILE: ../../../third_party/abseil-cpp/absl/profiling/internal/periodic_sampler.cc FILE: ../../../third_party/abseil-cpp/absl/profiling/internal/periodic_sampler.h FILE: ../../../third_party/abseil-cpp/absl/profiling/internal/periodic_sampler_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/profiling/internal/periodic_sampler_test.cc FILE: ../../../third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h -FILE: ../../../third_party/abseil-cpp/absl/profiling/internal/sample_recorder_test.cc -FILE: ../../../third_party/abseil-cpp/absl/random/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/random/benchmarks.cc FILE: ../../../third_party/abseil-cpp/absl/random/bernoulli_distribution.h -FILE: ../../../third_party/abseil-cpp/absl/random/bernoulli_distribution_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/beta_distribution.h -FILE: ../../../third_party/abseil-cpp/absl/random/beta_distribution_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/bit_gen_ref.h -FILE: ../../../third_party/abseil-cpp/absl/random/bit_gen_ref_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/discrete_distribution.cc FILE: ../../../third_party/abseil-cpp/absl/random/discrete_distribution.h -FILE: ../../../third_party/abseil-cpp/absl/random/discrete_distribution_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/distributions.h -FILE: ../../../third_party/abseil-cpp/absl/random/distributions_test.cc -FILE: ../../../third_party/abseil-cpp/absl/random/examples_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/exponential_distribution.h -FILE: ../../../third_party/abseil-cpp/absl/random/exponential_distribution_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/gaussian_distribution.h -FILE: ../../../third_party/abseil-cpp/absl/random/gaussian_distribution_test.cc -FILE: ../../../third_party/abseil-cpp/absl/random/generators_test.cc -FILE: ../../../third_party/abseil-cpp/absl/random/internal/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/random/internal/chi_square.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/chi_square.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/chi_square_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/distribution_caller.h FILE: ../../../third_party/abseil-cpp/absl/random/internal/distribution_test_util.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/distribution_test_util.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/distribution_test_util_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/explicit_seed_seq.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/explicit_seed_seq_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/fast_uniform_bits_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/fastmath.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/fastmath_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/gaussian_distribution_gentables.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/generate_real.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/generate_real_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/iostream_state_saver_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/mock_helpers.h FILE: ../../../third_party/abseil-cpp/absl/random/internal/mock_overload_set.h FILE: ../../../third_party/abseil-cpp/absl/random/internal/nanobenchmark.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/nanobenchmark.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/nanobenchmark_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/nonsecure_base.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/nonsecure_base_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/pcg_engine.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/pcg_engine_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/platform.h FILE: ../../../third_party/abseil-cpp/absl/random/internal/pool_urbg.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/pool_urbg.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/pool_urbg_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen.h FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_benchmarks.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_detect.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_detect.h FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_engine.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_engine_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_hwaes.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_hwaes_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_round_keys.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_slow.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_slow.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_slow_test.cc -FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/randen_traits.h FILE: ../../../third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/salted_seed_seq_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/seed_material.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/seed_material.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/seed_material_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/sequence_urbg.h FILE: ../../../third_party/abseil-cpp/absl/random/internal/traits.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/traits_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/uniform_helper.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/uniform_helper_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/internal/wide_multiply.h -FILE: ../../../third_party/abseil-cpp/absl/random/internal/wide_multiply_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h -FILE: ../../../third_party/abseil-cpp/absl/random/log_uniform_int_distribution_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/mock_distributions.h -FILE: ../../../third_party/abseil-cpp/absl/random/mock_distributions_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/mocking_bit_gen.h -FILE: ../../../third_party/abseil-cpp/absl/random/mocking_bit_gen_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/poisson_distribution.h -FILE: ../../../third_party/abseil-cpp/absl/random/poisson_distribution_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/random.h FILE: ../../../third_party/abseil-cpp/absl/random/seed_gen_exception.cc FILE: ../../../third_party/abseil-cpp/absl/random/seed_gen_exception.h FILE: ../../../third_party/abseil-cpp/absl/random/seed_sequences.cc FILE: ../../../third_party/abseil-cpp/absl/random/seed_sequences.h -FILE: ../../../third_party/abseil-cpp/absl/random/seed_sequences_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/uniform_int_distribution.h -FILE: ../../../third_party/abseil-cpp/absl/random/uniform_int_distribution_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/uniform_real_distribution.h -FILE: ../../../third_party/abseil-cpp/absl/random/uniform_real_distribution_test.cc FILE: ../../../third_party/abseil-cpp/absl/random/zipf_distribution.h -FILE: ../../../third_party/abseil-cpp/absl/random/zipf_distribution_test.cc -FILE: ../../../third_party/abseil-cpp/absl/status/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/status/internal/status_internal.h FILE: ../../../third_party/abseil-cpp/absl/status/internal/statusor_internal.h FILE: ../../../third_party/abseil-cpp/absl/status/status.cc FILE: ../../../third_party/abseil-cpp/absl/status/status.h FILE: ../../../third_party/abseil-cpp/absl/status/status_payload_printer.cc FILE: ../../../third_party/abseil-cpp/absl/status/status_payload_printer.h -FILE: ../../../third_party/abseil-cpp/absl/status/status_test.cc FILE: ../../../third_party/abseil-cpp/absl/status/statusor.cc FILE: ../../../third_party/abseil-cpp/absl/status/statusor.h -FILE: ../../../third_party/abseil-cpp/absl/status/statusor_test.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/strings/ascii.cc FILE: ../../../third_party/abseil-cpp/absl/strings/ascii.h FILE: ../../../third_party/abseil-cpp/absl/strings/ascii_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/ascii_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/charconv.cc FILE: ../../../third_party/abseil-cpp/absl/strings/charconv.h FILE: ../../../third_party/abseil-cpp/absl/strings/charconv_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/charconv_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/cord.cc FILE: ../../../third_party/abseil-cpp/absl/strings/cord.h FILE: ../../../third_party/abseil-cpp/absl/strings/cord_analysis.cc FILE: ../../../third_party/abseil-cpp/absl/strings/cord_analysis.h FILE: ../../../third_party/abseil-cpp/absl/strings/cord_buffer.cc FILE: ../../../third_party/abseil-cpp/absl/strings/cord_buffer.h -FILE: ../../../third_party/abseil-cpp/absl/strings/cord_buffer_test.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/cord_ring_reader_test.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/cord_ring_test.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/cord_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/cord_test_helpers.h -FILE: ../../../third_party/abseil-cpp/absl/strings/cordz_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/cordz_test_helpers.h FILE: ../../../third_party/abseil-cpp/absl/strings/escaping.cc FILE: ../../../third_party/abseil-cpp/absl/strings/escaping.h FILE: ../../../third_party/abseil-cpp/absl/strings/escaping_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/escaping_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/char_map.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/char_map_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/char_map_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/charconv_bigint_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/charconv_parse.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/charconv_parse_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_data_edge.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_data_edge_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_internal.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_internal.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader_test.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_crc_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h @@ -1095,157 +1788,111 @@ FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cord_rep_test_util.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_functions.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_functions_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_handle.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_handle_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_info.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_info.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_info_statistics_test.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_info_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_sample_token.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_sample_token.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_sample_token_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_update_scope.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_update_scope_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/escaping.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/escaping.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/escaping_test_common.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/memutil.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/memutil.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/memutil_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/memutil_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/numbers_test_common.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/ostringstream.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/ostringstream.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/ostringstream_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/ostringstream_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/pow10_helper.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/pow10_helper.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/pow10_helper_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/resize_uninitialized_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/arg.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/arg_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/bind.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/bind_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/checker.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/checker_test.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/convert_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/extension.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/extension_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/output.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/output.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/output_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/parser.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_format/parser_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_join_internal.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/str_split_internal.h FILE: ../../../third_party/abseil-cpp/absl/strings/internal/string_constant.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/string_constant_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/utf8.cc FILE: ../../../third_party/abseil-cpp/absl/strings/internal/utf8.h -FILE: ../../../third_party/abseil-cpp/absl/strings/internal/utf8_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/match.cc FILE: ../../../third_party/abseil-cpp/absl/strings/match.h -FILE: ../../../third_party/abseil-cpp/absl/strings/match_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/numbers.cc FILE: ../../../third_party/abseil-cpp/absl/strings/numbers.h FILE: ../../../third_party/abseil-cpp/absl/strings/numbers_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/numbers_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/str_cat.cc FILE: ../../../third_party/abseil-cpp/absl/strings/str_cat.h FILE: ../../../third_party/abseil-cpp/absl/strings/str_cat_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/str_cat_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/str_format.h -FILE: ../../../third_party/abseil-cpp/absl/strings/str_format_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/str_join.h FILE: ../../../third_party/abseil-cpp/absl/strings/str_join_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/str_join_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/str_replace.cc FILE: ../../../third_party/abseil-cpp/absl/strings/str_replace.h FILE: ../../../third_party/abseil-cpp/absl/strings/str_replace_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/str_replace_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/str_split.cc FILE: ../../../third_party/abseil-cpp/absl/strings/str_split.h FILE: ../../../third_party/abseil-cpp/absl/strings/str_split_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/str_split_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/string_view.cc FILE: ../../../third_party/abseil-cpp/absl/strings/string_view.h FILE: ../../../third_party/abseil-cpp/absl/strings/string_view_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/strings/string_view_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/strip.h -FILE: ../../../third_party/abseil-cpp/absl/strings/strip_test.cc FILE: ../../../third_party/abseil-cpp/absl/strings/substitute.cc FILE: ../../../third_party/abseil-cpp/absl/strings/substitute.h -FILE: ../../../third_party/abseil-cpp/absl/strings/substitute_test.cc -FILE: ../../../third_party/abseil-cpp/absl/synchronization/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/synchronization/barrier.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/barrier.h -FILE: ../../../third_party/abseil-cpp/absl/synchronization/barrier_test.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/blocking_counter.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/blocking_counter.h FILE: ../../../third_party/abseil-cpp/absl/synchronization/blocking_counter_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/synchronization/blocking_counter_test.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.h FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/futex.h FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/graphcycles_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/graphcycles_test.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h -FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem_test.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/thread_pool.h FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/waiter.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/internal/waiter.h -FILE: ../../../third_party/abseil-cpp/absl/synchronization/lifetime_test.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/mutex.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/mutex.h FILE: ../../../third_party/abseil-cpp/absl/synchronization/mutex_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/synchronization/mutex_test.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/notification.cc FILE: ../../../third_party/abseil-cpp/absl/synchronization/notification.h -FILE: ../../../third_party/abseil-cpp/absl/synchronization/notification_test.cc -FILE: ../../../third_party/abseil-cpp/absl/time/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/time/civil_time.cc FILE: ../../../third_party/abseil-cpp/absl/time/civil_time.h FILE: ../../../third_party/abseil-cpp/absl/time/civil_time_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/time/civil_time_test.cc FILE: ../../../third_party/abseil-cpp/absl/time/clock.cc FILE: ../../../third_party/abseil-cpp/absl/time/clock.h FILE: ../../../third_party/abseil-cpp/absl/time/clock_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/time/clock_test.cc FILE: ../../../third_party/abseil-cpp/absl/time/duration.cc FILE: ../../../third_party/abseil-cpp/absl/time/duration_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/time/duration_test.cc FILE: ../../../third_party/abseil-cpp/absl/time/format.cc FILE: ../../../third_party/abseil-cpp/absl/time/format_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/time/format_test.cc -FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/cctz_benchmark.cc FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc -FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_test.cc FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc -FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format_test.cc FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc @@ -1255,7 +1902,6 @@ FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc -FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup_test.cc FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h FILE: ../../../third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc @@ -1265,12 +1911,7 @@ FILE: ../../../third_party/abseil-cpp/absl/time/internal/test_util.h FILE: ../../../third_party/abseil-cpp/absl/time/time.cc FILE: ../../../third_party/abseil-cpp/absl/time/time.h FILE: ../../../third_party/abseil-cpp/absl/time/time_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/time/time_test.cc -FILE: ../../../third_party/abseil-cpp/absl/time/time_zone_test.cc -FILE: ../../../third_party/abseil-cpp/absl/types/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/types/any.h -FILE: ../../../third_party/abseil-cpp/absl/types/any_exception_safety_test.cc -FILE: ../../../third_party/abseil-cpp/absl/types/any_test.cc FILE: ../../../third_party/abseil-cpp/absl/types/bad_any_cast.cc FILE: ../../../third_party/abseil-cpp/absl/types/bad_any_cast.h FILE: ../../../third_party/abseil-cpp/absl/types/bad_optional_access.cc @@ -1278,30 +1919,21 @@ FILE: ../../../third_party/abseil-cpp/absl/types/bad_optional_access.h FILE: ../../../third_party/abseil-cpp/absl/types/bad_variant_access.cc FILE: ../../../third_party/abseil-cpp/absl/types/bad_variant_access.h FILE: ../../../third_party/abseil-cpp/absl/types/compare.h -FILE: ../../../third_party/abseil-cpp/absl/types/compare_test.cc FILE: ../../../third_party/abseil-cpp/absl/types/internal/conformance_aliases.h FILE: ../../../third_party/abseil-cpp/absl/types/internal/conformance_archetype.h FILE: ../../../third_party/abseil-cpp/absl/types/internal/conformance_profile.h FILE: ../../../third_party/abseil-cpp/absl/types/internal/conformance_testing.h FILE: ../../../third_party/abseil-cpp/absl/types/internal/conformance_testing_helpers.h -FILE: ../../../third_party/abseil-cpp/absl/types/internal/conformance_testing_test.cc FILE: ../../../third_party/abseil-cpp/absl/types/internal/optional.h FILE: ../../../third_party/abseil-cpp/absl/types/internal/parentheses.h FILE: ../../../third_party/abseil-cpp/absl/types/internal/span.h FILE: ../../../third_party/abseil-cpp/absl/types/internal/transform_args.h FILE: ../../../third_party/abseil-cpp/absl/types/internal/variant.h FILE: ../../../third_party/abseil-cpp/absl/types/optional.h -FILE: ../../../third_party/abseil-cpp/absl/types/optional_exception_safety_test.cc -FILE: ../../../third_party/abseil-cpp/absl/types/optional_test.cc FILE: ../../../third_party/abseil-cpp/absl/types/span.h -FILE: ../../../third_party/abseil-cpp/absl/types/span_test.cc FILE: ../../../third_party/abseil-cpp/absl/types/variant.h FILE: ../../../third_party/abseil-cpp/absl/types/variant_benchmark.cc -FILE: ../../../third_party/abseil-cpp/absl/types/variant_exception_safety_test.cc -FILE: ../../../third_party/abseil-cpp/absl/types/variant_test.cc -FILE: ../../../third_party/abseil-cpp/absl/utility/BUILD.bazel FILE: ../../../third_party/abseil-cpp/absl/utility/utility.h -FILE: ../../../third_party/abseil-cpp/absl/utility/utility_test.cc FILE: ../../../third_party/abseil-cpp/ci/absl_alternate_options.h FILE: ../../../third_party/angle/include/CL/cl.h FILE: ../../../third_party/angle/include/CL/cl_d3d10.h @@ -1327,7 +1959,6 @@ FILE: ../../../third_party/angle/include/GLES/egl.h FILE: ../../../third_party/angle/include/GLES/glplatform.h FILE: ../../../third_party/angle/include/GLES2/gl2platform.h FILE: ../../../third_party/angle/include/GLES3/gl3platform.h -FILE: ../../../third_party/angle/scripts/gl.xml FILE: ../../../third_party/angle/src/android_system_settings/res/layout/fragment.xml FILE: ../../../third_party/angle/src/android_system_settings/res/values-af/strings.xml FILE: ../../../third_party/angle/src/android_system_settings/res/values-am/strings.xml @@ -1428,312 +2059,12 @@ FILE: ../../../third_party/angle/src/android_system_settings/src/com/android/ang FILE: ../../../third_party/angle/src/android_system_settings/src/com/android/angle/common/Receiver.java FILE: ../../../third_party/angle/src/android_system_settings/src/com/android/angle/common/SearchProvider.java FILE: ../../../third_party/angle/src/common/vulkan/vk_google_filtering_precision.h -FILE: ../../../third_party/angle/util/android/third_party/android_native_app_glue.c -FILE: ../../../third_party/angle/util/android/third_party/android_native_app_glue.h -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/METADATA -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aead_aes_siv_cmac_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aegis128L_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aegis128_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aegis256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_cbc_pkcs5_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_ccm_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_cmac_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_eax_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_gcm_siv_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_gcm_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_siv_cmac_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/chacha20_poly1305_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_2048_224_sha224_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_2048_224_sha224_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_2048_224_sha256_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_2048_224_sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_2048_256_sha256_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_2048_256_sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_3072_256_sha256_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_3072_256_sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_brainpoolP224r1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_brainpoolP256r1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_brainpoolP320r1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_brainpoolP384r1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_brainpoolP512r1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp224r1_ecpoint_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp224r1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp256k1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp256r1_ecpoint_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp256r1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp384r1_ecpoint_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp384r1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp521r1_ecpoint_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_secp521r1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_webcrypto_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP224r1_sha224_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP224r1_sha224_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP256r1_sha256_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP256r1_sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP320r1_sha384_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP320r1_sha384_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP384r1_sha384_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP384r1_sha384_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP512r1_sha512_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP512r1_sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha3_224_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha3_256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha3_512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha512_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha256_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha3_256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha3_512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha512_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha3_256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha3_512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha512_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha3_384_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha3_512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp521r1_sha3_512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_p1363_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_webcrypto_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ed448_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/eddsa_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/gmac_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hkdf_sha1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hkdf_sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hkdf_sha384_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hkdf_sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha224_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha384_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha3_224_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha3_256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha3_384_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha3_512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/hmac_sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/kw_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/kwp_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/primality_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha1_mgf1sha1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha224_mgf1sha1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha224_mgf1sha224_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha256_mgf1sha1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha256_mgf1sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha384_mgf1sha1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha384_mgf1sha384_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha512_mgf1sha1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_2048_sha512_mgf1sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha256_mgf1sha1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha256_mgf1sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha512_mgf1sha1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_3072_sha512_mgf1sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha256_mgf1sha1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha256_mgf1sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha512_mgf1sha1_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_4096_sha512_mgf1sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_oaep_misc_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pkcs1_2048_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pkcs1_3072_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pkcs1_4096_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_2048_sha1_mgf1_20_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_2048_sha256_mgf1_0_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_2048_sha256_mgf1_32_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_2048_sha512_256_mgf1_28_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_2048_sha512_256_mgf1_32_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_3072_sha256_mgf1_32_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_4096_sha256_mgf1_32_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_4096_sha512_mgf1_32_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_pss_misc_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_sig_gen_misc_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha224_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha384_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha3_224_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha3_256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha3_384_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha3_512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha512_224_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha512_256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_2048_sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha384_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha3_256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha3_384_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha3_512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha512_256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_3072_sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_4096_sha384_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_4096_sha512_256_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_4096_sha512_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/vmac_128_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/vmac_64_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x25519_asn_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x25519_jwk_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x25519_pem_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x25519_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x448_asn_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x448_jwk_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x448_pem_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x448_test.json -FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/xchacha20_poly1305_test.json FILE: ../../../third_party/expat/expat/fuzz/xml_parse_fuzzer.c FILE: ../../../third_party/expat/expat/fuzz/xml_parsebuffer_fuzzer.c -FILE: ../../../third_party/flatbuffers/.bazelci/presubmit.yml -FILE: ../../../third_party/flatbuffers/.editorconfig -FILE: ../../../third_party/flatbuffers/.eslintrc.js -FILE: ../../../third_party/flatbuffers/BUILD.bazel -FILE: ../../../third_party/flatbuffers/CMake/CMakeLists_legacy.cmake.in -FILE: ../../../third_party/flatbuffers/CMake/FlatbuffersConfigVersion.cmake.in -FILE: ../../../third_party/flatbuffers/CMake/flatbuffers.pc.in -FILE: ../../../third_party/flatbuffers/WORKSPACE -FILE: ../../../third_party/flatbuffers/android/AndroidManifest.xml -FILE: ../../../third_party/flatbuffers/android/app/proguard-rules.pro -FILE: ../../../third_party/flatbuffers/android/app/src/main/AndroidManifest.xml -FILE: ../../../third_party/flatbuffers/android/app/src/main/cpp/animals.cpp -FILE: ../../../third_party/flatbuffers/android/app/src/main/cpp/generated/animal_generated.h -FILE: ../../../third_party/flatbuffers/android/app/src/main/fbs/animal.fbs -FILE: ../../../third_party/flatbuffers/android/app/src/main/java/com/flatbuffers/app/MainActivity.kt -FILE: ../../../third_party/flatbuffers/android/app/src/main/java/generated/com/fbs/app/Animal.kt -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/drawable/ic_launcher_background.xml -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/layout/activity_main.xml -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/values/colors.xml -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/values/strings.xml -FILE: ../../../third_party/flatbuffers/android/app/src/main/res/values/styles.xml -FILE: ../../../third_party/flatbuffers/android/gradle.properties -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/META-INF/MANIFEST.MF -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/gradle-wrapper-classpath.properties -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/AbstractCommandLineConverter.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/AbstractPropertiesCommandLineConverter.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineArgumentException.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineConverter.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineOption.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$1.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$AfterFirstSubCommand.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$AfterOptions.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$BeforeFirstSubCommand.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$CaseInsensitiveStringComparator.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$KnownOptionParserState.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$MissingOptionArgState.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$OptionAwareParserState.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$OptionComparator.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$OptionParserState.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$OptionString.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$OptionStringComparator.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$ParserState.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser$UnknownOptionParserState.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/CommandLineParser.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/ParsedCommandLine.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/ParsedCommandLineOption.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/ProjectPropertiesCommandLineConverter.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/cli/SystemPropertiesCommandLineConverter.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/BootstrapMainStarter$1.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/BootstrapMainStarter.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/Download$1.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/Download$DefaultDownloadProgressListener.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/Download$ProxyAuthenticator.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/Download.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/DownloadProgressListener.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/ExclusiveFileAccessManager.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/GradleUserHomeLookup.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/GradleWrapperMain.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/IDownload.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/Install$1.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/Install$InstallCheck.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/Install.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/Logger.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/PathAssembler$LocalDistribution.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/PathAssembler.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/SystemPropertiesHandler.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/WrapperConfiguration.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.jar!/org/gradle/wrapper/WrapperExecutor.class -FILE: ../../../third_party/flatbuffers/android/gradle/wrapper/gradle-wrapper.properties -FILE: ../../../third_party/flatbuffers/android/gradlew -FILE: ../../../third_party/flatbuffers/benchmarks/cpp/bench.h -FILE: ../../../third_party/flatbuffers/benchmarks/cpp/benchmark_main.cpp -FILE: ../../../third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench.fbs -FILE: ../../../third_party/flatbuffers/benchmarks/cpp/flatbuffers/bench_generated.h -FILE: ../../../third_party/flatbuffers/benchmarks/cpp/flatbuffers/fb_bench.cpp -FILE: ../../../third_party/flatbuffers/benchmarks/cpp/flatbuffers/fb_bench.h -FILE: ../../../third_party/flatbuffers/benchmarks/cpp/raw/raw_bench.cpp -FILE: ../../../third_party/flatbuffers/benchmarks/cpp/raw/raw_bench.h -FILE: ../../../third_party/flatbuffers/build_defs.bzl FILE: ../../../third_party/flatbuffers/composer.json FILE: ../../../third_party/flatbuffers/conan/test_package/test_package.cpp -FILE: ../../../third_party/flatbuffers/dart/example/example.dart -FILE: ../../../third_party/flatbuffers/docs/footer.html -FILE: ../../../third_party/flatbuffers/docs/header.html -FILE: ../../../third_party/flatbuffers/docs/images/fpl_logo_small.png -FILE: ../../../third_party/flatbuffers/docs/images/ftv2mnode.png -FILE: ../../../third_party/flatbuffers/docs/images/ftv2pnode.png -FILE: ../../../third_party/flatbuffers/docs/source/doxygen_layout.xml -FILE: ../../../third_party/flatbuffers/docs/source/groups -FILE: ../../../third_party/flatbuffers/go/BUILD.bazel -FILE: ../../../third_party/flatbuffers/go/builder.go -FILE: ../../../third_party/flatbuffers/go/doc.go -FILE: ../../../third_party/flatbuffers/go/encode.go -FILE: ../../../third_party/flatbuffers/go/grpc.go -FILE: ../../../third_party/flatbuffers/go/lib.go -FILE: ../../../third_party/flatbuffers/go/sizes.go -FILE: ../../../third_party/flatbuffers/go/struct.go -FILE: ../../../third_party/flatbuffers/go/table.go FILE: ../../../third_party/flatbuffers/grpc/boringssl.patch -FILE: ../../../third_party/flatbuffers/grpc/examples/go/greeter/client/go.mod -FILE: ../../../third_party/flatbuffers/grpc/examples/go/greeter/client/main.go -FILE: ../../../third_party/flatbuffers/grpc/examples/go/greeter/models/Greeter_grpc.go -FILE: ../../../third_party/flatbuffers/grpc/examples/go/greeter/models/HelloReply.go -FILE: ../../../third_party/flatbuffers/grpc/examples/go/greeter/models/HelloRequest.go -FILE: ../../../third_party/flatbuffers/grpc/examples/go/greeter/models/go.mod -FILE: ../../../third_party/flatbuffers/grpc/examples/go/greeter/server/go.mod -FILE: ../../../third_party/flatbuffers/grpc/examples/go/greeter/server/main.go -FILE: ../../../third_party/flatbuffers/grpc/examples/greeter.fbs -FILE: ../../../third_party/flatbuffers/grpc/examples/swift/Greeter/Package.swift -FILE: ../../../third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/Model/greeter.grpc.swift -FILE: ../../../third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/Model/greeter_generated.swift -FILE: ../../../third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/client/main.swift -FILE: ../../../third_party/flatbuffers/grpc/examples/swift/Greeter/Sources/server/main.swift -FILE: ../../../third_party/flatbuffers/grpc/examples/ts/greeter/package.json -FILE: ../../../third_party/flatbuffers/grpc/examples/ts/greeter/src/client.ts -FILE: ../../../third_party/flatbuffers/grpc/examples/ts/greeter/src/greeter.ts -FILE: ../../../third_party/flatbuffers/grpc/examples/ts/greeter/src/greeter_grpc.d.ts -FILE: ../../../third_party/flatbuffers/grpc/examples/ts/greeter/src/greeter_grpc.js -FILE: ../../../third_party/flatbuffers/grpc/examples/ts/greeter/src/models/hello-reply.ts -FILE: ../../../third_party/flatbuffers/grpc/examples/ts/greeter/src/models/hello-request.ts -FILE: ../../../third_party/flatbuffers/grpc/examples/ts/greeter/src/server.ts -FILE: ../../../third_party/flatbuffers/grpc/examples/ts/greeter/tsconfig.json FILE: ../../../third_party/flatbuffers/grpc/flatbuffers-java-grpc/src/main/java/com/google/flatbuffers/grpc/FlatbuffersUtils.java -FILE: ../../../third_party/flatbuffers/grpc/samples/greeter/client.cpp -FILE: ../../../third_party/flatbuffers/grpc/samples/greeter/greeter.fbs -FILE: ../../../third_party/flatbuffers/grpc/samples/greeter/server.cpp -FILE: ../../../third_party/flatbuffers/grpc/src/compiler/BUILD.bazel FILE: ../../../third_party/flatbuffers/grpc/src/compiler/cpp_generator.cc FILE: ../../../third_party/flatbuffers/grpc/src/compiler/cpp_generator.h FILE: ../../../third_party/flatbuffers/grpc/src/compiler/go_generator.cc @@ -1844,9 +2175,7 @@ FILE: ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/ FILE: ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonTest/kotlin/com/google/flatbuffers/kotlin/JSONTest.kt FILE: ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/jsMain/kotlin/com/google/flatbuffers/kotlin/ByteArray.kt FILE: ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/jvmMain/kotlin/com/google/flatbuffers/kotlin/ByteArray.kt -FILE: ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/jvmTest/kotlin/com/google/flatbuffers/kotlin/Utf8Test.kt FILE: ../../../third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/nativeMain/kotlin/com/google/flatbuffers/kotlin/ByteArray.kt -FILE: ../../../third_party/flatbuffers/kotlin/gradle.properties FILE: ../../../third_party/flatbuffers/kotlin/gradle/libs.versions.toml FILE: ../../../third_party/flatbuffers/kotlin/gradle/wrapper/gradle-wrapper.jar!/META-INF/MANIFEST.MF FILE: ../../../third_party/flatbuffers/kotlin/gradle/wrapper/gradle-wrapper.jar!/gradle-wrapper-classpath.properties @@ -1907,90 +2236,7 @@ FILE: ../../../third_party/flatbuffers/lua/flatbuffers/compat_5_3.lua FILE: ../../../third_party/flatbuffers/lua/flatbuffers/compat_luajit.lua FILE: ../../../third_party/flatbuffers/lua/flatbuffers/numTypes.lua FILE: ../../../third_party/flatbuffers/lua/flatbuffers/view.lua -FILE: ../../../third_party/flatbuffers/net/FlatBuffers/ByteBuffer.cs -FILE: ../../../third_party/flatbuffers/net/FlatBuffers/ByteBufferUtil.cs -FILE: ../../../third_party/flatbuffers/net/FlatBuffers/FlatBufferBuilder.cs -FILE: ../../../third_party/flatbuffers/net/FlatBuffers/FlatBufferConstants.cs -FILE: ../../../third_party/flatbuffers/net/FlatBuffers/FlatBuffers.csproj -FILE: ../../../third_party/flatbuffers/net/FlatBuffers/FlatBuffers.net35.csproj -FILE: ../../../third_party/flatbuffers/net/FlatBuffers/IFlatbufferObject.cs -FILE: ../../../third_party/flatbuffers/net/FlatBuffers/Offset.cs -FILE: ../../../third_party/flatbuffers/net/FlatBuffers/Properties/AssemblyInfo.cs -FILE: ../../../third_party/flatbuffers/net/FlatBuffers/Struct.cs -FILE: ../../../third_party/flatbuffers/net/FlatBuffers/Table.cs -FILE: ../../../third_party/flatbuffers/package.json -FILE: ../../../third_party/flatbuffers/php/ByteBuffer.php -FILE: ../../../third_party/flatbuffers/php/Constants.php -FILE: ../../../third_party/flatbuffers/php/FlatbufferBuilder.php -FILE: ../../../third_party/flatbuffers/php/Struct.php -FILE: ../../../third_party/flatbuffers/php/Table.php -FILE: ../../../third_party/flatbuffers/python/setup.cfg -FILE: ../../../third_party/flatbuffers/reflection/BUILD.bazel FILE: ../../../third_party/flatbuffers/reflection/reflection.fbs -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/Cargo.toml -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/src/array.rs -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/src/builder.rs -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/src/endian_scalar.rs -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/src/follow.rs -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/src/get_root.rs -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/src/lib.rs -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/src/primitives.rs -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/src/push.rs -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/src/table.rs -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/src/vector.rs -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/src/verifier.rs -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/src/vtable.rs -FILE: ../../../third_party/flatbuffers/rust/flatbuffers/src/vtable_writer.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/Cargo.toml -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/bitwidth.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/buffer.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/builder/map.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/builder/mod.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/builder/push.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/builder/ser.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/builder/value.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/builder/vector.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/flexbuffer_type.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/lib.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/reader/de.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/reader/iter.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/reader/map.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/reader/mod.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/reader/serialize.rs -FILE: ../../../third_party/flatbuffers/rust/flexbuffers/src/reader/vector.rs -FILE: ../../../third_party/flatbuffers/samples/SampleBinary.cs -FILE: ../../../third_party/flatbuffers/samples/SampleBinary.java -FILE: ../../../third_party/flatbuffers/samples/SampleBinary.kt -FILE: ../../../third_party/flatbuffers/samples/SampleBinary.php -FILE: ../../../third_party/flatbuffers/samples/lua/MyGame/Sample/Color.lua -FILE: ../../../third_party/flatbuffers/samples/lua/MyGame/Sample/Equipment.lua -FILE: ../../../third_party/flatbuffers/samples/lua/MyGame/Sample/Monster.lua -FILE: ../../../third_party/flatbuffers/samples/lua/MyGame/Sample/Vec3.lua -FILE: ../../../third_party/flatbuffers/samples/lua/MyGame/Sample/Weapon.lua -FILE: ../../../third_party/flatbuffers/samples/monster.bfbs -FILE: ../../../third_party/flatbuffers/samples/monster.fbs -FILE: ../../../third_party/flatbuffers/samples/monster_generated.h -FILE: ../../../third_party/flatbuffers/samples/monster_generated.lobster -FILE: ../../../third_party/flatbuffers/samples/monster_generated.swift -FILE: ../../../third_party/flatbuffers/samples/monsterdata.json -FILE: ../../../third_party/flatbuffers/samples/rust_generated/mod.rs -FILE: ../../../third_party/flatbuffers/samples/rust_generated/my_game/sample/color_generated.rs -FILE: ../../../third_party/flatbuffers/samples/rust_generated/my_game/sample/equipment_generated.rs -FILE: ../../../third_party/flatbuffers/samples/rust_generated/my_game/sample/monster_generated.rs -FILE: ../../../third_party/flatbuffers/samples/rust_generated/my_game/sample/vec_3_generated.rs -FILE: ../../../third_party/flatbuffers/samples/rust_generated/my_game/sample/weapon_generated.rs -FILE: ../../../third_party/flatbuffers/samples/sample_bfbs.cpp -FILE: ../../../third_party/flatbuffers/samples/sample_binary.cpp -FILE: ../../../third_party/flatbuffers/samples/sample_binary.go -FILE: ../../../third_party/flatbuffers/samples/sample_binary.lobster -FILE: ../../../third_party/flatbuffers/samples/sample_binary.lua -FILE: ../../../third_party/flatbuffers/samples/sample_binary.rs -FILE: ../../../third_party/flatbuffers/samples/sample_binary.swift -FILE: ../../../third_party/flatbuffers/samples/sample_flexbuffers.rs -FILE: ../../../third_party/flatbuffers/samples/sample_flexbuffers_serde.rs -FILE: ../../../third_party/flatbuffers/samples/sample_text.cpp -FILE: ../../../third_party/flatbuffers/samples/sample_text.lobster -FILE: ../../../third_party/flatbuffers/src/BUILD.bazel FILE: ../../../third_party/flatbuffers/src/annotated_binary_text_gen.cpp FILE: ../../../third_party/flatbuffers/src/annotated_binary_text_gen.h FILE: ../../../third_party/flatbuffers/src/bfbs_gen.h @@ -2025,12 +2271,12 @@ FILE: ../../../third_party/flatbuffers/src/idl_parser.cpp FILE: ../../../third_party/flatbuffers/src/namer.h FILE: ../../../third_party/flatbuffers/src/reflection.cpp FILE: ../../../third_party/flatbuffers/src/util.cpp -FILE: ../../../third_party/flatbuffers/swift/BUILD.bazel FILE: ../../../third_party/flatbuffers/swift/FlatBuffers.podspec FILE: ../../../third_party/flatbuffers/swift/Package.swift FILE: ../../../third_party/flatbuffers/swift/Package@swift-5.5.swift FILE: ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/ByteBuffer.swift FILE: ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Constants.swift +FILE: ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Documentation.md FILE: ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/fbs/monster_step_1.fbs FILE: ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/fbs/monster_step_2.fbs FILE: ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Documentation.docc/Resources/code/fbs/monster_step_3.fbs @@ -2074,29 +2320,9 @@ FILE: ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/TableVerifier.s FILE: ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/VeriferOptions.swift FILE: ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Verifiable.swift FILE: ../../../third_party/flatbuffers/swift/Sources/FlatBuffers/Verifier.swift -FILE: ../../../third_party/flatbuffers/ts/BUILD.bazel -FILE: ../../../third_party/flatbuffers/ts/builder.ts -FILE: ../../../third_party/flatbuffers/ts/byte-buffer.ts -FILE: ../../../third_party/flatbuffers/ts/constants.ts -FILE: ../../../third_party/flatbuffers/ts/encoding.ts -FILE: ../../../third_party/flatbuffers/ts/flexbuffers.ts -FILE: ../../../third_party/flatbuffers/ts/flexbuffers/bit-width-util.ts -FILE: ../../../third_party/flatbuffers/ts/flexbuffers/bit-width.ts -FILE: ../../../third_party/flatbuffers/ts/flexbuffers/builder.ts -FILE: ../../../third_party/flatbuffers/ts/flexbuffers/flexbuffers-util.ts -FILE: ../../../third_party/flatbuffers/ts/flexbuffers/reference-util.ts -FILE: ../../../third_party/flatbuffers/ts/flexbuffers/reference.ts -FILE: ../../../third_party/flatbuffers/ts/flexbuffers/stack-value.ts -FILE: ../../../third_party/flatbuffers/ts/flexbuffers/value-type-util.ts -FILE: ../../../third_party/flatbuffers/ts/flexbuffers/value-type.ts -FILE: ../../../third_party/flatbuffers/ts/index.ts -FILE: ../../../third_party/flatbuffers/ts/types.ts -FILE: ../../../third_party/flatbuffers/ts/utils.ts FILE: ../../../third_party/flatbuffers/tsconfig.json FILE: ../../../third_party/flatbuffers/tsconfig.mjs.json -FILE: ../../../third_party/flatbuffers/typescript.bzl FILE: ../../../third_party/flatbuffers/yarn.lock -FILE: ../../../third_party/fuchsia-vulkan/cmake/cmake_uninstall.cmake.in FILE: ../../../third_party/fuchsia-vulkan/include/vk_video/vulkan_video_codec_h264std.h FILE: ../../../third_party/fuchsia-vulkan/include/vk_video/vulkan_video_codec_h264std_decode.h FILE: ../../../third_party/fuchsia-vulkan/include/vk_video/vulkan_video_codec_h264std_encode.h @@ -2138,7 +2364,6 @@ FILE: ../../../third_party/khronos/EGL/eglext.h FILE: ../../../third_party/khronos/EGL/eglplatform.h FILE: ../../../third_party/khronos/GLES2/gl2platform.h FILE: ../../../third_party/khronos/GLES3/gl3platform.h -FILE: ../../../third_party/libwebp/gradlew FILE: ../../../third_party/pkg/quiver/lib/async.dart FILE: ../../../third_party/pkg/quiver/lib/cache.dart FILE: ../../../third_party/pkg/quiver/lib/check.dart @@ -2187,6 +2412,2627 @@ FILE: ../../../third_party/pkg/quiver/lib/src/time/duration_unit_constants.dart FILE: ../../../third_party/pkg/quiver/lib/src/time/util.dart FILE: ../../../third_party/pkg/quiver/lib/strings.dart FILE: ../../../third_party/pkg/quiver/lib/time.dart +FILE: ../../../third_party/shaderc/DEVELOPMENT.howto.md +FILE: ../../../third_party/shaderc/android_test/test.cpp +FILE: ../../../third_party/shaderc/downloads.md +FILE: ../../../third_party/shaderc/glslc/src/dependency_info.cc +FILE: ../../../third_party/shaderc/glslc/src/dependency_info.h +FILE: ../../../third_party/shaderc/glslc/src/file.cc +FILE: ../../../third_party/shaderc/glslc/src/file.h +FILE: ../../../third_party/shaderc/glslc/src/file_compiler.cc +FILE: ../../../third_party/shaderc/glslc/src/file_compiler.h +FILE: ../../../third_party/shaderc/glslc/src/file_includer.cc +FILE: ../../../third_party/shaderc/glslc/src/file_includer.h +FILE: ../../../third_party/shaderc/glslc/src/file_test.cc +FILE: ../../../third_party/shaderc/glslc/src/main.cc +FILE: ../../../third_party/shaderc/glslc/src/resource_parse.cc +FILE: ../../../third_party/shaderc/glslc/src/resource_parse.h +FILE: ../../../third_party/shaderc/glslc/src/resource_parse_test.cc +FILE: ../../../third_party/shaderc/glslc/src/shader_stage.cc +FILE: ../../../third_party/shaderc/glslc/src/shader_stage.h +FILE: ../../../third_party/shaderc/glslc/src/stage_test.cc +FILE: ../../../third_party/shaderc/kokoro/android-release/continuous_arm.cfg +FILE: ../../../third_party/shaderc/kokoro/android-release/continuous_x86.cfg +FILE: ../../../third_party/shaderc/kokoro/android-release/presubmit_arm.cfg +FILE: ../../../third_party/shaderc/kokoro/android-release/presubmit_x86.cfg +FILE: ../../../third_party/shaderc/kokoro/img/linux.png +FILE: ../../../third_party/shaderc/kokoro/img/macos.png +FILE: ../../../third_party/shaderc/kokoro/img/windows.png +FILE: ../../../third_party/shaderc/kokoro/linux/continuous_clang_asan.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/continuous_clang_debug.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/continuous_clang_release.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/continuous_gcc_coverage.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/continuous_gcc_debug.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/continuous_gcc_debug_exception.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/continuous_gcc_release.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/continuous_license_check.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/continuous_mingw_release.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/presubmit_clang_asan.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/presubmit_clang_debug.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/presubmit_clang_release.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/presubmit_gcc_coverage.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/presubmit_gcc_debug.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/presubmit_gcc_release.cfg +FILE: ../../../third_party/shaderc/kokoro/linux/presubmit_license_check.cfg +FILE: ../../../third_party/shaderc/kokoro/macos/continuous_clang_debug.cfg +FILE: ../../../third_party/shaderc/kokoro/macos/continuous_clang_release.cfg +FILE: ../../../third_party/shaderc/kokoro/macos/presubmit_clang_debug.cfg +FILE: ../../../third_party/shaderc/kokoro/macos/presubmit_clang_release.cfg +FILE: ../../../third_party/shaderc/kokoro/ndk-build/continuous_khronos.cfg +FILE: ../../../third_party/shaderc/kokoro/ndk-build/presubmit_khronos.cfg +FILE: ../../../third_party/shaderc/kokoro/windows/continuous_debug_2017.cfg +FILE: ../../../third_party/shaderc/kokoro/windows/continuous_release_2015.cfg +FILE: ../../../third_party/shaderc/kokoro/windows/continuous_release_2017.cfg +FILE: ../../../third_party/shaderc/kokoro/windows/presubmit_debug_2017.cfg +FILE: ../../../third_party/shaderc/kokoro/windows/presubmit_release_2015.cfg +FILE: ../../../third_party/shaderc/kokoro/windows/presubmit_release_2017.cfg +FILE: ../../../third_party/shaderc/libshaderc/include/shaderc/env.h +FILE: ../../../third_party/shaderc/libshaderc/include/shaderc/shaderc.h +FILE: ../../../third_party/shaderc/libshaderc/include/shaderc/shaderc.hpp +FILE: ../../../third_party/shaderc/libshaderc/include/shaderc/status.h +FILE: ../../../third_party/shaderc/libshaderc/include/shaderc/visibility.h +FILE: ../../../third_party/shaderc/libshaderc/src/common_shaders_for_test.h +FILE: ../../../third_party/shaderc/libshaderc/src/shaderc.cc +FILE: ../../../third_party/shaderc/libshaderc/src/shaderc_c_smoke_test.c +FILE: ../../../third_party/shaderc/libshaderc/src/shaderc_cpp_test.cc +FILE: ../../../third_party/shaderc/libshaderc/src/shaderc_private.h +FILE: ../../../third_party/shaderc/libshaderc/src/shaderc_private_test.cc +FILE: ../../../third_party/shaderc/libshaderc/src/shaderc_test.cc +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/args.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/compiler.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/counting_includer.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/exceptions.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/file_finder.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/format.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/io_shaderc.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/message.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/mutex.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/resources.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/resources.inc +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/shader_stage.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/spirv_tools_wrapper.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/string_piece.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/universal_unistd.h +FILE: ../../../third_party/shaderc/libshaderc_util/include/libshaderc_util/version_profile.h +FILE: ../../../third_party/shaderc/libshaderc_util/src/args.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/compiler.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/compiler_test.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/counting_includer_test.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/death_test.h +FILE: ../../../third_party/shaderc/libshaderc_util/src/file_finder.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/file_finder_test.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/format_test.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/io_shaderc.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/io_shaderc_test.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/message.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/message_test.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/mutex_test.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/resources.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/shader_stage.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/spirv_tools_wrapper.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/string_piece_test.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/version_profile.cc +FILE: ../../../third_party/shaderc/libshaderc_util/src/version_profile_test.cc +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/bitutils.h +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/hex_float.h +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/Common.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/HexFloat.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/ndk_test/test.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/Package.swift +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/barrier.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/external_interface.h +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/image.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/internal_interface.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/sampler.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/include/spirv_cross/thread_group.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/main.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/pkg-config/spirv-cross-c-shared.pc.in +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/comp/access-chain-invalidate.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/comp/atomic-decrement.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/comp/atomic-increment.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/comp/bitcast_icmp.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/comp/block-name-alias-global.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/comp/control-flow-hints.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/comp/global-parameter-name-alias.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/comp/nmin-max-clamp.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/comp/nmin-max-clamp.relax-nan.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/cbuffer-stripped.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/combined-sampler-reuse.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/empty-struct.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/frem.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/function-overload-alias.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/image-extract-reuse.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/implicit-read-dep-phi.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/inf-nan-constant.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/line-directive.line.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/lut-promotion-initializer.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/pack-and-unpack-uint2.fxconly.nofxc.sm60.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/pass-by-value.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/sample-and-compare.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/single-function-private-lut.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/srem.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/storage-class-output-initializer.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/texel-fetch-no-lod.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/texture-sampling-fp16.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/unknown-depth-state.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/frag/unreachable.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/vert/extract-transposed-matrix-from-struct.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/vert/spec-constant-op-composite.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/vert/uint-vertex-id-instance-id.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/asm/vert/vertex-id-instance-id.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/access-chain-load-composite.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/access-chains.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/access-chains.force-uav.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/address-buffers.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/atomic.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/barriers.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/builtins.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/composite-array-initialization.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/globallycoherent.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/image.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/image.nonwritable-uav-texture.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/inverse.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/num-workgroups-alone.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/num-workgroups-with-builtins.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/outer-product.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/rayquery.nofxc.fxconly.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/rmw-matrix.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/rwbuffer-matrix.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/scalar-std450-distance-length-normalize.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/shared.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/spec-constant-op-member-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/spec-constant-work-group-size.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/ssbo-array-length.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/comp/ssbo-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/flatten/array.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/flatten/basic.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/flatten/copy.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/flatten/dynamic.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/flatten/matrix-conversion.flatten.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/flatten/matrixindex.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/flatten/multiindex.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/flatten/push-constant.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/flatten/rowmajor.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/flatten/struct.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/flatten/struct.rowmajor.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/flatten/swizzle.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/flatten/types.flatten.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/array-lut-no-loop-variable.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/basic-color-3comp.sm30.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/basic-color-3comp.sm50.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/basic.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/bit-conversions.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/boolean-mix.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/builtins.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/bvec-operations.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/clip-cull-distance.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/combined-texture-sampler-parameter.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/combined-texture-sampler-shadow.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/complex-expression-in-access-chain.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/constant-composites.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/control-dependent-in-branch.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/demote-to-helper.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/depth-greater-than.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/depth-less-than.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/dual-source-blending.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/early-fragment-test.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/for-loop-continue-control-flow.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/fp16-packing.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/front-facing.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/image-query-selective.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/image-query-uav.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/image-query-uav.nonwritable-uav-texture.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/image-query.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/input-attachment-ms.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/input-attachment.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/io-block.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/legacy-tex-modifiers.sm30.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/lut-promotion.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/matrix-input.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/mod.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/mrt.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/no-return.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/no-return2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/nonuniform-qualifier.nonuniformresource.sm51.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/partial-write-preserve.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/pixel-interlock-ordered.sm51.fxconly.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/point-coord-compat.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/query-lod.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/readonly-coherent-ssbo.force-uav.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/readonly-coherent-ssbo.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/resources.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/row-major-layout-in-struct.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/sample-cmp-level-zero.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/sample-mask-in-and-out.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/sample-mask-in.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/sample-mask-out.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/sampler-array.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/sampler-image-arrays.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/scalar-refract-reflect.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/separate-combined-fake-overload.sm30.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/spec-constant-block-size.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/spec-constant-ternary.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/switch-unreachable-break.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/switch-unsigned-case.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/swizzle-scalar.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/tex-sampling-ms.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/tex-sampling.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/tex-sampling.sm30.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/texel-fetch-offset.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/texture-proj-shadow.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/texture-size-combined-image-sampler.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/unary-enclose.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/unorm-snorm-packing.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/frag/various-glsl-ops.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/basic.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/clip-cull-distance.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/instancing.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/invariant.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/locations.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/matrix-attribute.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/matrix-output.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/no-contraction.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/no-input.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/point-size-compat.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/qualifiers.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/read-from-row-major-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/return-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/sampler-buffers.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/struct-composite-decl.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-hlsl/vert/texture_buffer.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/amd/shader_trinary_minmax.msl21.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/atomic-decrement.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/atomic-increment.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/bitcast_iadd.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/bitcast_icmp.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/bitcast_sar.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/bitcast_sdiv.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/bitcast_slr.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/block-name-alias-global.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/buffer-write-relative-addr.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/buffer-write.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/global-parameter-name-alias.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/image-load-store-short-vector.invalid.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/multiple-entry.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/quantize.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/relaxed-block-layout.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/specialization-constant-workgroup.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/struct-resource-name-aliasing.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/variable-pointers-2.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/variable-pointers-store-forwarding.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/vector-builtin-type-cast-func.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/comp/vector-builtin-type-cast.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/combined-sampler-reuse.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/default-member-names.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/depth-image-color-format-fetch.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/depth-image-color-format-sampled.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/descriptor-array-unnamed.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/disable-renamed-output.frag-output.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/empty-struct.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/extract-packed-from-composite.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/frem.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/function-overload-alias.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/image-extract-reuse.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/implicit-read-dep-phi.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/inf-nan-constant.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/interpolation-qualifiers-struct.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/line-directive.line.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/locations-components.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/lut-promotion-initializer.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/min-lod.msl22.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/op-constant-null.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/op-image-sampled-image.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/pass-by-value.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/phi-loop-variable.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/pull-model-interpolation.asm.msl23.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/sample-and-compare.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/single-function-private-lut.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/srem.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/storage-class-output-initializer.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/switch-different-sizes.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/switch-long-case.asm.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/switch-unsigned-long-case.asm.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/texel-fetch-no-lod.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/texture-atomics.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/texture-atomics.asm.graphics-robust-access.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/texture-sampling-fp16.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/undef-variable-store.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/unknown-depth-state.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/unord-relational-op.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/unord-relational-op.relax-nan.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/unreachable.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/frag/vector-shuffle-oom.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/tesc/tess-level-overrun.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/tesc/tess-level-overrun.multi-patch.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/tese/unnamed-builtin-array.asm.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/vert/clip-distance-plain-variable.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/vert/clip-distance-plain-variable.no-user-varying.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/vert/copy-memory-interface.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/vert/extract-transposed-matrix-from-struct.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/vert/fake-builtin-input.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/vert/invariant.msl21.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/vert/packed-bool-to-uint.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/vert/packed-bool2-to-packed_uint2.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/vert/packing-test.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/vert/spec-constant-op-composite.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/asm/vert/uint-vertex-id-instance-id.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/access-private-workgroup-in-function.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/argument-buffers-discrete.msl2.argument.discrete.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/argument-buffers-image-load-store.ios.msl2.argument.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/argument-buffers-image-load-store.msl2.argument.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/array-length.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/array-length.msl2.argument.discrete.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/atomic.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/barriers.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/basic.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/basic.dispatchbase.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/basic.dispatchbase.msl11.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/basic.inline-block.msl2.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/buffer_device_address-packed-vec-and-cast-to-and-from-uvec2.msl23.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/buffer_device_address-recursive-struct-pointers.msl23.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/buffer_device_address.msl2.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/builtins.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/cfg-preserve-parameter.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/coherent-block.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/coherent-image.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/complex-composite-constant-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/complex-type-alias.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/composite-array-initialization.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/composite-array-initialization.force-native-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/composite-construct.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/copy-array-of-arrays.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/copy-array-of-arrays.force-native-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/culling.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/defer-parens.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/dowhile.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/force-recompile-hooks.swizzle.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/functions.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/global-invocation-id-writable-ssbo-in-function.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/global-invocation-id.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/image-atomic-automatic-bindings.argument.msl2.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/image-atomic-automatic-bindings.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/image-cube-array-load-store.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/image.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/insert.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/inverse.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/local-invocation-id.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/local-invocation-index.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/mat3-row-maj-read-write-const.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/mat3.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/mod.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/modf.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/outer-product.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/packing-test-1.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/packing-test-2.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/ray-query.nocompat.spv14.vk.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/ray-query.spv14.vk.ios.msl24..invalid.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/read-write-only.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/rmw-matrix.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/rmw-opt.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/scalar-std450-distance-length-normalize.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/shared-array-of-arrays.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/shared-matrix-array-of-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/shared-matrix-cast.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/shared-matrix-nested-struct-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/shared-matrix-nested-struct.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/shared-struct-bool-cast.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/shared.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/spec-constant-op-member-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/spec-constant-work-group-size.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/storage-buffer-std140-vector-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/struct-layout.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/struct-nested.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/struct-packing.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/threadgroup-boolean-workaround.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/torture-loop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/type-alias.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/type_casting_i64.msl22.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/udiv.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/comp/writable-ssbo.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/comp/extended-arithmetic.desktop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/frag/image-ms.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/frag/query-levels.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/frag/sampler-ms-query.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/tesc/arrayed-output.desktop.sso.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/tesc/basic.desktop.sso.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/tesc/basic.desktop.sso.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/tesc/struct-copy.desktop.sso.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/tesc/struct-copy.desktop.sso.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/tese/triangle.desktop.sso.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/vert/basic.desktop.sso.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/vert/clip-cull-distance..no-user-varying.desktop.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/vert/clip-cull-distance.desktop.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/vert/shader-draw-parameters.desktop.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/desktop-only/vert/shader-draw-parameters.desktop.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/flatten/basic.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/flatten/multiindex.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/flatten/push-constant.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/flatten/rowmajor.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/flatten/struct.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/flatten/swizzle.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/flatten/types.flatten.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/argument-buffers.msl2.argument.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/array-component-io.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/array-lut-no-loop-variable.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/array-of-array-lut.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/array-of-texture-swizzle-nonconstant-uniform.msl2.argument.discrete.swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/array-of-texture-swizzle-nonconstant-uniform.msl2.swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/array-of-texture-swizzle.msl2.argument.discrete.swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/array-of-texture-swizzle.msl2.swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/barycentric-nv-nopersp.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/barycentric-nv.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/basic.force-sample.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/basic.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/binary-func-unpack-pack-arguments.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/binary-unpack-pack-arguments.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/bitcasting.1d-as-2d.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/bitcasting.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/buffer-read-write.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/buffer-read-write.texture-buffer-native.msl21.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/builtins.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/clip-distance-varying.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/complex-expression-in-access-chain.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/composite-extract-forced-temporary.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/constant-array.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/constant-composites.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/control-dependent-in-branch.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/cull-distance-varying.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/depth-greater-than.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/depth-less-than.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/depth-out-early-frag-tests.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/depth-out-no-early-frag-tests.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/disable-frag-output.frag-output.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/dual-source-blending.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/early-fragment-tests.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/false-loop-init.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/flush_params.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/for-loop-continue-control-flow.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/for-loop-init.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/fp16-packing.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/fragment-component-padding.pad-fragment.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/front-facing.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/gather-dref.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/gather-offset.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/helper-invocation.msl21.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/huge-argument-buffer.device-argument-buffer.argument.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/illegal-name-test-0.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/image-query-lod.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/in_block.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/in_block_with_multiple_structs_of_same_type.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/in_mat.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/input-attachment-ms.arrayed-subpass.msl21.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/input-attachment-ms.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/input-attachment-ms.multiview.msl21.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/input-attachment.arrayed-subpass.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/input-attachment.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/input-attachment.multiview.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/interpolation-qualifiers-block.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/interpolation-qualifiers.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/lut-promotion.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/mix.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/modf-access-tracking-function.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/mrt-array.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/nonuniform-qualifier.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/packed-expression-vector-shuffle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/packing-test-3.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/pixel-interlock-ordered.msl2.argument.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/pixel-interlock-ordered.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/pls.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/post-depth-coverage.ios.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/post-depth-coverage.msl23.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/private-variable-prototype-declaration.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/ray-query-object-in-function.spv14.vk.msl24.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/read-cull-clip-distance-in-function.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/readonly-ssbo.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/return-value-after-discard-terminator.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sample-depth-propagate-state-from-resource.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sample-depth-separate-image-sampler.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sample-mask-in-and-out.fixed-sample-mask.force-sample.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sample-mask-in-and-out.fixed-sample-mask.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sample-mask-not-used.fixed-sample-mask.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sample-mask.fixed-sample-mask.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sample-mask.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sample-position-func.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sample-position.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sample-rate-frag-coord-sample-id.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sample-rate-frag-coord-sample-input.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sample-rate-frag-coord-sample-pos.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sample-rate-frag-coord.force-sample.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sampler-1d-lod.1d-as-2d.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sampler-1d-lod.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sampler-compare-bias.msl23.1d-as-2d.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sampler-compare-cascade-gradient.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sampler-compare-cascade-gradient.ios.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sampler-compare-cascade-gradient.msl23.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sampler-image-arrays.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sampler-ms.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/sampler.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/scalar-refract-reflect.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/separate-image-sampler-argument.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/shader-arithmetic-8bit.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/spec-constant-block-size.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/spec-constant-ternary.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/stencil-export.msl21.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/subgroup-builtins.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/subgroup-globals-extract.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/switch-unreachable-break.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/switch-unsigned-case.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/texel-fetch-offset.1d-as-2d.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/texel-fetch-offset.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/texture-cube-array.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/texture-cube-array.ios.emulate-cube-array.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/texture-multisample-array.msl21.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/texture-proj-shadow.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/ubo_layout.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/unary-enclose.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/vecsize-mismatch.shader-inputs.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/frag/write-depth-in-function.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/intel/shader-integer-functions2.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/legacy/vert/transpose.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/copy-arrays.mask-location-0.msl2.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/copy-arrays.mask-location-0.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/copy-arrays.mask-location-1.msl2.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/copy-arrays.mask-location-1.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs-block.mask-location-0.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs-block.mask-location-0.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs-block.mask-location-0.multi-patch.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs-block.mask-location-0.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs-block.mask-location-1.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs-block.mask-location-1.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs-block.mask-location-1.multi-patch.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs-block.mask-location-1.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-clip-distance.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-location-0.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-location-0.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-location-0.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-location-0.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-location-0.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-location-1.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-location-1.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-location-1.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-location-1.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-location-1.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-point-size.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-point-size.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-point-size.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-point-size.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-position.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/masking/write-outputs.mask-position.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/basic.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/basic.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/complex-control-point-inout-types.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/complex-control-point-inout-types.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/complex-patch-out-types.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/load-control-point-array-of-matrix.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/load-control-point-array-of-matrix.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/load-control-point-array-of-struct.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/load-control-point-array-of-struct.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/load-control-point-array.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/load-control-point-array.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/matrix-output.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/reload-tess-level.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/reload-tess-level.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/struct-output.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/water_tess.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tesc/water_tess.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tese/in-block-with-nested-struct.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tese/input-array.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tese/input-types.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tese/load-control-point-array-of-matrix.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tese/load-control-point-array.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tese/quad.domain.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tese/quad.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tese/read-tess-level-in-func-quad.msl2.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tese/read-tess-level-in-func.msl2.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tese/set-from-function.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tese/triangle-tess-level.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tese/triangle.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/tese/water_tess.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/array-component-io.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/array-component-io.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/basic.capture.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/basic.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/basic.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/buffer_device_address.msl2.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/clip-distance-block.no-user-varying.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/clip-distance-block.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/copy.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/dynamic.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/float-math.invariant-float-math.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/float-math.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/functions.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/implicit-position-1.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/implicit-position-2.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/in_out_array_mat.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/interface-block-block-composites.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/interface-block-block-composites.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/interface-block-single-element-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/interpolation-qualifiers-block.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/interpolation-qualifiers.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/invariant.msl21.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/leaf-function.capture.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/leaf-function.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/no-contraction.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/no-disable-vertex-out.frag-output.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/no_stage_out.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/no_stage_out.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/no_stage_out.write_buff.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/no_stage_out.write_buff_atomic.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/no_stage_out.write_tex.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/out-block-with-nested-struct-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/out-block-with-struct-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/out_block.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/packed-bool-to-uint.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/packed-bool2-to-packed_uint2.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/packed_matrix.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/pointsize.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/read-from-row-major-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/resource-arrays-leaf.ios.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/resource-arrays.ios.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/return-array.force-native-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/return-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/set_builtin_in_func.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/sign-int-types.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/signedness-mismatch.shader-inputs.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/texture_buffer.texture-buffer-native.msl21.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/texture_buffer.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/ubo.alignment.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/ubo.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/uniform-struct-out-of-order-offests.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/uniform-struct-packing-nested.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vert/unused-position.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/frag/basic.multiview.no-layered.nocompat.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/frag/basic.multiview.nocompat.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/frag/demote-to-helper-forwarding.asm.vk.nocompat.msl23.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/frag/demote-to-helper.vk.nocompat.msl23.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/frag/demote-to-helper.vk.nocompat.msl23.ios.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/frag/push-constant.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/frag/spec-constant.msl11.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/frag/spec-constant.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/vert/device-group.multiview.viewfromdev.nocompat.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/vert/device-group.nocompat.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/vert/multiview.multiview.no-layered.nocompat.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/vert/multiview.multiview.nocompat.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/vert/multiview.nocompat.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/vert/small-storage.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-msl/vulkan/vert/vulkan-vertex.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/frag/depth-compare.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/frag/global-constant-arrays.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/frag/padded-float-array-member-defef.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/frag/sample-mask-not-array.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/frag/subpass-input.ios.framebuffer-fetch.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/frag/subpass-input.msl23.framebuffer-fetch.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/frag/texture-atomics.asm.argument.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/frag/texture-atomics.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/frag/texture-atomics.asm.graphics-robust-access.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/tesc/hs-incorrect-base-type.invalid.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/tesc/hs-input-array-access.invalid.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/tesc/hs-texcoord-array.invalid.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/tesc/tess-factor-must-be-threadgroup.invalid.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/tese/ds-double-gl-in-deref.asm.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/tese/ds-patch-input-fixes.asm.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/tese/ds-patch-inputs.asm.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/vert/array-missing-copies.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders-ue4/asm/vert/texture-buffer.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/amd/gcn_shader.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/amd/shader_ballot.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/amd/shader_group_vote.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/amd/shader_trinary_minmax.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/atomic-decrement.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/atomic-increment.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/bitcast_iadd.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/bitcast_icmp.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/bitcast_iequal.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/bitcast_sar.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/bitcast_sdiv.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/bitcast_slr.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/block-name-alias-global.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/builtin-compute-bitcast.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/control-flow-hints.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/decoration-group.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/global-parameter-name-alias.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/hlsl-functionality.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/logical.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/multiple-entry.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/nmin-max-clamp.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/nmin-max-clamp.relax-nan.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/op-phi-swap.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/quantize.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/recompile-block-naming.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/specialization-constant-workgroup.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/comp/switch-break-ladder.asm.invalid.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/combined-sampler-reuse.vk.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/combined-sampler-reuse.vk.asm.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/complex-name-workarounds.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/composite-construct-struct-no-swizzle.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/default-member-names.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/do-while-statement-fallback.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/empty-struct.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/for-loop-phi-only-continue.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/frem.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/function-overload-alias.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/hlsl-sample-cmp-level-zero-cube.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/hlsl-sample-cmp-level-zero.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/image-extract-reuse.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/image-fetch-no-sampler.asm.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/image-fetch-no-sampler.asm.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/image-fetch-no-sampler.no-samplerless.asm.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/image-fetch-no-sampler.no-samplerless.asm.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/image-query-no-sampler.no-samplerless.vk.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/image-query-no-sampler.no-samplerless.vk.asm.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/image-query-no-sampler.vk.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/image-query-no-sampler.vk.asm.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/implicit-read-dep-phi.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/inf-nan-constant-double.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/inf-nan-constant.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/invalidation.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/line-directive.line.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/locations-components.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/loop-body-dominator-continue-access.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/loop-header-to-continue.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/lut-promotion-initializer.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/multi-for-loop-init.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/op-constant-null.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/op-phi-swap-continue-block.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/out-of-bounds-access-opspecconstant.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/out-of-bounds-access.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/pack-and-unpack-uint2.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/pass-by-value.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/phi-loop-variable.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/sample-and-compare.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/sampler-buffer-array-without-sampler.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/sampler-buffer-without-sampler.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/single-function-private-lut.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/srem.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/storage-class-output-initializer.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/struct-composite-extract-swizzle.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/switch-label-shared-block.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/switch-preserve-sign-extension.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/temporary-name-alias.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/temporary-phi-hoisting.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/texel-fetch-no-lod.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/texture-sampling-fp16.asm.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/texture-sampling-fp16.asm.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/undef-variable-store.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/unknown-depth-state.asm.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/unknown-depth-state.asm.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/unreachable.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/frag/vector-shuffle-oom.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/geom/block-name-namespace.asm.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/geom/inout-split-access-chain-handle.asm.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/geom/split-access-chain-input.asm.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/geom/unroll-glposition-load.asm.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/tese/unroll-input-array-load.asm.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/vert/empty-io.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/vert/extract-transposed-matrix-from-struct.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/vert/global-builtin.sso.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/vert/invariant-block.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/vert/invariant-block.sso.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/vert/invariant.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/vert/invariant.sso.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/vert/spec-constant-op-composite.asm.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/vert/spec-constant-op-composite.asm.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/asm/vert/uint-vertex-id-instance-id.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/atomic.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/bake_gradient.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/barriers.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/basic.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/casts.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/cfg-preserve-parameter.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/cfg.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/coherent-block.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/coherent-image.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/composite-array-initialization.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/composite-construct.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/culling.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/defer-parens.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/dowhile.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/generate_height.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/image.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/insert.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/mat3.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/mod.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/modf.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/outer-product.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/read-write-only.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/rmw-matrix.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/rmw-opt.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/scalar-std450-distance-length-normalize.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/shared.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/ssbo-array-length.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/ssbo-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/struct-layout.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/struct-packing.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/torture-loop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/type-alias.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/comp/udiv.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/comp/enhanced-layouts.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/comp/extended-arithmetic.desktop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/comp/fp64.desktop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/comp/image-formats.desktop.noeliminate.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/comp/int64.desktop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/clip-cull-distance.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/control-dependent-in-branch.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/depth-greater-than.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/depth-less-than.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/dual-source-blending.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/hlsl-uav-block-alias.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/image-ms.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/image-query.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/image-size.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/image-size.no-qualifier-deduction.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/in-block-qualifiers.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/layout-component.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/query-levels.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/query-lod.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/sampler-ms-query.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/stencil-export.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/frag/texture-proj-shadow.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/geom/basic.desktop.sso.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/geom/viewport-index.desktop.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/tesc/basic.desktop.sso.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/tese/triangle.desktop.sso.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/vert/basic.desktop.sso.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/vert/clip-cull-distance.desktop.sso.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/vert/clip-cull-distance.desktop.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/vert/out-block-qualifiers.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/vert/shader-draw-parameters-450.desktop.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/vert/shader-draw-parameters-450.desktop.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/vert/shader-draw-parameters.desktop.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/desktop-only/vert/shader-draw-parameters.desktop.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/flatten/array.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/flatten/basic.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/flatten/copy.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/flatten/dynamic.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/flatten/matrix-conversion.flatten.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/flatten/matrixindex.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/flatten/multiindex.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/flatten/push-constant.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/flatten/rowmajor.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/flatten/struct.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/flatten/struct.rowmajor.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/flatten/swizzle.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/flatten/types.flatten.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/array-lut-no-loop-variable.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/avoid-expression-lowering-to-loop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/barycentric-khr.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/barycentric-nv.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/basic.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/complex-expression-in-access-chain.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/composite-extract-forced-temporary.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/constant-array.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/constant-composites.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/false-loop-init.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/flush_params.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/for-loop-continue-control-flow.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/for-loop-init.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/frexp-modf.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/front-facing.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/gather-dref.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/ground.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/helper-invocation.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/hoisted-temporary-use-continue-block-as-value.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/image-load-store-uint-coord.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/inside-loop-dominated-variable-preservation.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/loop-dominator-and-switch-default.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/lut-promotion.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/mix.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/modf-pointer-function-analysis.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/partial-write-preserve.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/pixel-interlock-ordered.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/pixel-interlock-unordered.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/pls.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/post-depth-coverage-es.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/post-depth-coverage.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/round-even.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/round.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/sample-interlock-ordered.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/sample-interlock-unordered.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/sample-parameter.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/sampler-ms.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/sampler-proj.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/sampler.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/scalar-refract-reflect.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/selection-block-dominator.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/struct-type-unrelated-alias.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/switch-unreachable-break.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/switch-unsigned-case.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/texel-fetch-offset.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/ubo-load-row-major-workaround.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/ubo_layout.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/frag/unary-enclose.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/geom/basic.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/geom/geometry-passthrough.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/geom/lines-adjacency.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/geom/lines.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/geom/multi-stream.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/geom/points.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/geom/single-invocation.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/geom/transform-feedback-streams.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/geom/triangles-adjacency.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/geom/triangles.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/fragment/explicit-lod.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/fragment/explicit-lod.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/fragment/fma.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/fragment/io-blocks.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/fragment/multiple-struct-flattening.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/fragment/round.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/fragment/struct-varying.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/fragment/switch.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/vert/implicit-lod.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/vert/io-block.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/vert/struct-flatten-inner-array.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/vert/struct-flatten-stores-multi-dimension.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/vert/struct-varying.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/vert/switch-nested.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/legacy/vert/transpose.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/mesh/mesh-shader-basic-lines.spv14.vk.nocompat.mesh.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/mesh/mesh-shader-basic-points.spv14.vk.nocompat.mesh.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/mesh/mesh-shader-basic-triangle.spv14.vk.nocompat.mesh.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/task/task-shader-basic-2.vk.spv14.nocompat.task.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/task/task-shader-basic.vk.spv14.nocompat.task.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/tesc/basic.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/tesc/water_tess.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/tese/ccw.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/tese/cw.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/tese/equal.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/tese/fractional_even.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/tese/fractional_odd.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/tese/input-array.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/tese/line.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/tese/load-array-of-array.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/tese/patch-input-array.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/tese/triangle.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/tese/water_tess.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vert/basic.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vert/ground.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vert/invariant.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vert/no-contraction.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vert/ocean.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vert/read-from-row-major-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vert/return-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vert/texture_buffer.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vert/transform-feedback-decorations.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vert/ubo.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/array-of-buffer-reference.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/buffer-reference-atomic.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/buffer-reference-base-alignment-promote.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/buffer-reference-bitcast-uvec2-2.nocompat.invalid.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/buffer-reference-bitcast-uvec2.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/buffer-reference-bitcast.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/buffer-reference-decorations.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/buffer-reference.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/fp-atomic.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/ray-query.nocompat.spv14.invalid.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/spec-constant-op-member-array.vk.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/spec-constant-op-member-array.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/spec-constant-work-group-size.vk.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/comp/spec-constant-work-group-size.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/combined-texture-sampler-shadow.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/combined-texture-sampler-shadow.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/combined-texture-sampler.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/combined-texture-sampler.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/demote-to-helper-forwarding.asm.vk.nocompat.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/demote-to-helper.vk.nocompat.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/desktop-mediump.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/desktop-mediump.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/input-attachment-ms.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/input-attachment-ms.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/input-attachment.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/input-attachment.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/nonuniform-qualifier.vk.nocompat.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/push-constant-as-ubo.push-ubo.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/push-constant-as-ubo.push-ubo.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/push-constant.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/push-constant.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/separate-combined-fake-overload.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/separate-combined-fake-overload.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/separate-sampler-texture-array.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/separate-sampler-texture-array.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/separate-sampler-texture.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/separate-sampler-texture.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/shader-arithmetic-8bit.nocompat.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/spec-constant-block-size.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/spec-constant-block-size.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/spec-constant-ternary.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/frag/spec-constant-ternary.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rahit/terminators.khr.spv14.nocompat.vk.rahit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rahit/terminators.nocompat.vk.rahit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rcall/incoming-callable.khr.spv14.nocompat.vk.rcall.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/hit_attribute_block.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/hit_attribute_block.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/hit_attribute_block_in_function.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/hit_attribute_block_in_function.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/hit_attribute_plain.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/hit_attribute_plain.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/hit_attribute_struct.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/hit_attribute_struct.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/hit_kind.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/hit_kind.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/hit_t.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/hit_t.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/incoming_ray_flags.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/incoming_ray_flags.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/instance_custom_id.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/instance_custom_id.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/instance_id.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/instance_id.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/object_ray_direction.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/object_ray_direction.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/object_ray_origin.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/object_ray_origin.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/object_to_world.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/object_to_world.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/payloads.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/payloads.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/primitive_id.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/primitive_id.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/ray_tmax.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/ray_tmax.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/ray_tmin.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/ray_tmin.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/ray_tracing.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/ray_tracing.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/world_ray_direction.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/world_ray_direction.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/world_ray_origin.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/world_ray_origin.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/world_to_object.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rchit/world_to_object.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/convert-u-to-as.spv14.vk.nocompat.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/execute_callable.nocompat.khr.spv14.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/execute_callable.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/launch_id.khr.spv14.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/launch_id.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/launch_size.khr.spv14.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/launch_size.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/payloads.khr.spv14.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/payloads.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/pure_call.khr.spv14.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/pure_call.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/ray_tracing.khr.spv14.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/ray_tracing.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/shader_record_buffer.khr.spv14.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rgen/shader_record_buffer.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rint/report-intersection.khr.spv14.nocompat.vk.rint.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rint/report-intersection.nocompat.vk.rint.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rmiss/ray_tracing.khr.spv14.nocompat.vk.rmiss.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rmiss/ray_tracing.nocompat.vk.rmiss.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/rmiss/ray_tracing_trace_incoming.khr.spv14.nocompat.vk.rmiss.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/vert/device-group.nocompat.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/vert/multiview.nocompat.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/vert/small-storage.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/vert/small-storage.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/vert/vulkan-vertex.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/opt/shaders/vulkan/vert/vulkan-vertex.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/access-chain-load-store-composite.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/aliased-struct-divergent-member-name.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/atomic-load-store.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/atomic-result-temporary.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/bitfield-signed-operations.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/bitscan.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/buffer-atomic-nonuniform.asm.sm51.nonuniformresource.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/constant-composite-undef.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/constant-lut-name-aliasing.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/eliminate-globals-not-in-entry-point.noeliminate.spv14.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/glsl-signed-operations.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/glsl.std450.frexp-modf-struct.fxconly.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/image-atomic-nonuniform.asm.sm51.nonuniformresource.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/local-size-id-override.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/local-size-id.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/num-workgroups.spv14.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/spec-constant-name-aliasing.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/specialization-constant-workgroup.nofxc.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/comp/storage-buffer-basic.nofxc.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/anonymous-inner-struct-names.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/composite-insert-inheritance.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/empty-struct-in-struct.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/image-fetch-uint-coord.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/nonuniform-bracket-handling-2.nonuniformresource.sm51.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/nonuniform-qualifier-propagation.nonuniformresource.sm51.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/nonuniform-ssbo.sm51.nonuniformresource.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/only-initializer-frag-depth.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/phi.zero-initialize.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/pixel-interlock-callstack.sm51.fxconly.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/pixel-interlock-control-flow.sm51.fxconly.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/pixel-interlock-split-functions.sm51.fxconly.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/reserved-function-identifier.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/scalar-select.spv14.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/struct-packing-last-element-array-matrix-rule.invalid.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/subgroup-arithmetic-cast.invalid.nofxc.sm60.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/switch-block-case-fallthrough.asm.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/unordered-compare.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/unordered-compare.relax-nan.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/frag/vector-shuffle-undef-index.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/temporary.zero-initialize.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/vert/block-struct-initializer.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/vert/builtin-output-initializer.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/vert/complex-link-by-name.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/asm/vert/empty-struct-composite.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/comp/bitfield.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/comp/glsl.std450.fxconly.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/comp/illegal-struct-name.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/comp/intmin-literal.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/comp/subgroups-boolean.invalid.nofxc.sm60.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/comp/subgroups.invalid.nofxc.sm60.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/comp/trivial-select-cast-vector.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/comp/trivial-select-matrix.spv14.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/frag/cbuffer-packing-straddle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/frag/constant-buffer-array.invalid.sm51.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/frag/fp16.invalid.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/frag/frag-coord.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/frag/helper-invocation.fxconly.nofxc.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/frag/native-16bit-types.fxconly.nofxc.sm62.native-16bit.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/frag/nonuniform-constructor.sm51.nonuniformresource.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/frag/pixel-interlock-simple-callstack.sm51.fxconly.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/frag/spec-constant.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/frag/texture-gather-uint-component.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/frag/ubo-offset-out-of-order.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/frag/variables.zero-initialize.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/frag/volatile-helper-invocation.fxconly.nofxc.spv16.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/vert/block-io-auto-location-assignment.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/vert/empty-shader.nofxc.sm30.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/vert/flatten-matrix-input.flatten-matrix-vertex-input.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl-no-opt/vert/pass-array-by-value.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/comp/access-chain-invalidate.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/comp/atomic-decrement.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/comp/atomic-increment.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/comp/bitcast_icmp.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/comp/block-name-alias-global.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/comp/control-flow-hints.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/comp/global-parameter-name-alias.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/comp/nmin-max-clamp.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/comp/nmin-max-clamp.relax-nan.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/cbuffer-stripped.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/combined-sampler-reuse.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/empty-struct.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/frem.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/function-overload-alias.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/image-extract-reuse.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/implicit-read-dep-phi.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/inf-nan-constant.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/line-directive.line.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/lut-promotion-initializer.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/pack-and-unpack-uint2.fxconly.nofxc.sm60.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/pass-by-value.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/sample-and-compare.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/single-function-private-lut.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/srem.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/storage-class-output-initializer.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/texel-fetch-no-lod.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/texture-sampling-fp16.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/unknown-depth-state.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/frag/unreachable.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/vert/extract-transposed-matrix-from-struct.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/vert/spec-constant-op-composite.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/vert/uint-vertex-id-instance-id.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/asm/vert/vertex-id-instance-id.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/access-chain-load-composite.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/access-chains.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/access-chains.force-uav.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/address-buffers.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/atomic.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/barriers.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/builtins.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/composite-array-initialization.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/globallycoherent.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/image.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/image.nonwritable-uav-texture.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/inverse.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/num-workgroups-alone.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/num-workgroups-with-builtins.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/outer-product.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/rayquery.nofxc.fxconly.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/rmw-matrix.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/rwbuffer-matrix.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/scalar-std450-distance-length-normalize.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/shared.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/spec-constant-op-member-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/spec-constant-work-group-size.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/ssbo-array-length.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/comp/ssbo-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/flatten/array.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/flatten/basic.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/flatten/copy.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/flatten/dynamic.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/flatten/matrix-conversion.flatten.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/flatten/matrixindex.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/flatten/multiindex.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/flatten/push-constant.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/flatten/rowmajor.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/flatten/struct.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/flatten/struct.rowmajor.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/flatten/swizzle.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/flatten/types.flatten.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/array-lut-no-loop-variable.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/basic-color-3comp.sm30.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/basic-color-3comp.sm50.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/basic.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/bit-conversions.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/boolean-mix.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/builtins.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/bvec-operations.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/clip-cull-distance.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/combined-texture-sampler-parameter.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/combined-texture-sampler-shadow.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/complex-expression-in-access-chain.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/constant-composites.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/control-dependent-in-branch.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/demote-to-helper.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/depth-greater-than.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/depth-less-than.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/dual-source-blending.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/early-fragment-test.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/for-loop-continue-control-flow.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/fp16-packing.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/front-facing.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/image-query-selective.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/image-query-uav.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/image-query-uav.nonwritable-uav-texture.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/image-query.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/input-attachment-ms.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/input-attachment.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/io-block.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/legacy-tex-modifiers.sm30.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/lut-promotion.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/matrix-input.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/mod.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/mrt.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/no-return.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/no-return2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/nonuniform-qualifier.nonuniformresource.sm51.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/partial-write-preserve.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/pixel-interlock-ordered.sm51.fxconly.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/point-coord-compat.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/query-lod.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/readonly-coherent-ssbo.force-uav.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/readonly-coherent-ssbo.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/resources.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/row-major-layout-in-struct.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/sample-cmp-level-zero.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/sample-mask-in-and-out.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/sample-mask-in.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/sample-mask-out.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/sampler-array.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/sampler-image-arrays.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/scalar-refract-reflect.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/separate-combined-fake-overload.sm30.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/spec-constant-block-size.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/spec-constant-ternary.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/switch-unreachable-break.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/switch-unsigned-case.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/swizzle-scalar.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/tex-sampling-ms.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/tex-sampling.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/tex-sampling.sm30.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/texel-fetch-offset.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/texture-proj-shadow.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/texture-size-combined-image-sampler.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/unary-enclose.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/unorm-snorm-packing.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/frag/various-glsl-ops.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/basic.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/clip-cull-distance.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/instancing.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/invariant.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/locations.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/matrix-attribute.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/matrix-output.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/no-contraction.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/no-input.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/point-size-compat.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/qualifiers.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/read-from-row-major-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/return-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/sampler-buffers.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/struct-composite-decl.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-hlsl/vert/texture_buffer.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/aliased-struct-divergent-member-name.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/arithmetic-conversion-signs.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/atomic-load-store.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/atomic-min-max-sign.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/atomic-result-temporary.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/bitcast-fp16-fp32.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/bitfield-signed-operations.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/bitscan.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/block-like-array-type-construct-2.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/block-like-array-type-construct.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/buffer-device-address-ptr-casting.msl24.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/composite-construct-buffer-struct.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/constant-composite-undef.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/constant-lut-name-aliasing.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/copy-logical-2.spv14.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/copy-logical.spv14.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/device-array-load-temporary.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/device-array-load-temporary.force-native-array.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/device-constant-array-load-store.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/device-constant-array-load-store.force-native-array.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/eliminate-globals-not-in-entry-point.noeliminate.spv14.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/glsl-signed-operations.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/glsl.std450.frexp-modf-struct.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/local-size-id-override.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/local-size-id.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/modf-storage-class.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/spec-constant-name-aliasing.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/storage-buffer-basic.invalid.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/storage-buffer-pointer-argument.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/comp/variable-pointers.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/anonymous-inner-struct-names.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/component-insert-packed-expression.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/composite-insert-inheritance.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/constant-composite-block-no-array-stride-2.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/copy-memory-block-like-thread-local.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/empty-struct-in-struct.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/fixup-entry-point-identifier.nomain.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/image-fetch-uint-coord.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/image-gather.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/image-type-normal-comparison-usage.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/in_block_with_aliased_struct_and_name.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/input-attachment-unused-frag-coord.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/modf-frexp-scalar-access-chain-output.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/only-initializer-frag-depth.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/phi.zero-initialize.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/pixel-interlock-callstack.msl2.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/pixel-interlock-control-flow.msl2.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/pixel-interlock-split-functions.msl2.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/private-initializer-direct-store.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/reserved-function-identifier.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/scalar-select.spv14.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/subgroup-arithmetic-cast.msl21.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/switch-block-case-fallthrough.asm.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/texture-access.swizzle.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/usage-tracking-modf-io-pointer.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/frag/vector-shuffle-undef-index.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers-block.mask-location-0.msl2.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers-block.mask-location-0.multi-patch.msl2.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers-block.mask-location-1.msl2.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers-block.mask-location-1.multi-patch.msl2.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers-block.mask-point-size.msl2.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers-block.mask-point-size.multi-patch.msl2.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers-block.mask-position.msl2.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers-block.mask-position.multi-patch.msl2.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers.mask-location-0.msl2.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers.mask-location-0.msl2.multi-patch.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers.mask-location-1.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers.mask-location-1.multi-patch.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers.mask-point-size.msl2.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers.mask-point-size.msl2.multi-patch.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers.mask-position.msl2.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/masking/initializers.mask-position.msl2.multi-patch.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/composite-extract-row-major.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/load-packed-no-forwarding-2.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/load-packed-no-forwarding-3.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/load-packed-no-forwarding-4.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/load-packed-no-forwarding-5.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/load-packed-no-forwarding.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/packed-vector-extract-insert.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/row-major-split-access-chain.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/scalar-array-float2.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/scalar-array-float3-one-element.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/scalar-array-float3.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/scalar-float2x2-col-major.invalid.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/scalar-float2x2-row-major.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/scalar-float2x3-col-major.invalid.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/scalar-float2x3-row-major.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/scalar-float3x2-col-major.invalid.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/scalar-float3x2-row-major.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/scalar-float3x3-col-major.invalid.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/packing/scalar-float3x3-row-major.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/temporary.zero-initialize.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tesc/array-control-point-initializer.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tesc/block-control-point-initializer.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tesc/builtin-control-point-initializer.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tesc/composite-control-point-initializer.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tesc/copy-memory-control-point.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tesc/copy-tess-level-tri.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tesc/plain-control-point-initializer.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tesc/tess-fixed-input-array-builtin-array.invalid.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tesc/tess-fixed-input-array-builtin-array.invalid.multi-patch.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tesc/tess-level-initializer-quad.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tesc/tess-level-initializer-triangle.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tesc/tess-level-read-write-in-function-tri.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tese/copy-tess-level.asm.msl2.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/tese/split-access-chain.asm.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/vert/block-struct-initializer.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/vert/builtin-output-initializer.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/vert/composite-extract-physical-type-id.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/vert/constant-composite-block-no-array-stride.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/vert/duplicate-view-index.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/vert/empty-struct-composite.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/vert/op-load-forced-temporary-array.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/asm/vert/pointer-to-pointer.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/array-copy-threadgroup-memory.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/basic.dynamic-buffer.msl2.invalid.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/bitcast-16bit-1.invalid.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/bitcast-16bit-2.invalid.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/bitfield.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/glsl.std450.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/illegal-struct-name.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/int16min-literal.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/int64.invalid.msl22.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/int64min-literal.msl22.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/intmin-literal.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/loop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/return.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/std140-array-load-composite-construct.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/struct-packing-scalar.nocompat.invalid.vk.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/subgroups.nocompat.invalid.vk.msl12.emulate-subgroup.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/subgroups.nocompat.invalid.vk.msl21.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/subgroups.nocompat.invalid.vk.msl21.fixed-subgroup.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/subgroups.nocompat.invalid.vk.msl21.ios.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/subgroups.nocompat.invalid.vk.msl22.ios.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/subgroups.nocompat.invalid.vk.msl23.ios.simd.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/trivial-select-cast-vector.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/comp/trivial-select-matrix.spv14.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/components/fragment-input-component.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/components/fragment-output-component.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/components/fragment-output-component.pad-fragment.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/components/vertex-input-component.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/components/vertex-output-component.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/16bit-constants.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/demote-to-helper.vk.nocompat.msl21.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/depth-image-gather.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/force-active-resources.msl2.argument..force-active.discrete.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/fp16.desktop.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/image-gather.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/in_block_assign.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/min-max-clamp.invalid.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/min-max-clamp.relax-nan.invalid.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/nonuniform-constructor.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/pixel-interlock-simple-callstack.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/pull-interpolant-access-chain.msl23.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/scalar-block-layout-ubo-std430.vk.nocompat.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/shadow-compare-global-alias.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/subgroups.nocompat.invalid.vk.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/subpass-input-attachment-index-fallback.msl20.ios.framebuffer-fetch.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/subpass-input-attachment-index-fallback.msl23.framebuffer-fetch.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/subpass-input-function-argument.framebuffer-fetch.ios.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/subpass-input-function-argument.framebuffer-fetch.msl23.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/subpass-input.decoration-binding.framebuffer-fetch.msl23.argument.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/subpass-input.decoration-binding.framebuffer-fetch.msl23.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/subpass-input.decoration-binding.ios.framebuffer-fetch.msl2.argument.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/subpass-input.decoration-binding.ios.framebuffer-fetch.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/texture-access-int.swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/texture-access-leaf.swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/texture-access-uint.swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/texture-access.swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/texture-gather-uint-component.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/ubo-array-multiple-structs-access-chain.argument.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/ubo-array-multiple-structs-access-chain.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/ubo-offset-out-of-order.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/variables.zero-initialize.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/frag/volatile-helper-invocation.msl23.spv16.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/array-of-vec3.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/array-of-vec4.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/isolated-scalar-access.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/load-store-col-rows.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-2x2-scalar.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-2x2-std140.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-2x2-std430.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-2x3-scalar.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-2x3-std140.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-2x3-std430.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-2x4-scalar.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-2x4-std140.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-2x4-std430.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-3x2-scalar.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-3x2-std140.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-3x2-std430.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-3x3-scalar.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-3x3-std140.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-3x3-std430.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-3x4-scalar.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-3x4-std140.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-3x4-std430.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-4x2-scalar.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-4x2-std140.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-4x2-std430.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-4x3-scalar.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-4x3-std140.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-4x3-std430.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-4x4-scalar.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-4x4-std140.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-4x4-std430.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-multiply-row-major.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-multiply-unpacked-col-major-2.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-multiply-unpacked-col-major.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-multiply-unpacked-row-major-2.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/matrix-multiply-unpacked-row-major.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/member-padding.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/std140-array-of-vectors.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/struct-alignment.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/struct-packing-array-of-scalar.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/struct-packing-recursive.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/struct-packing.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/struct-size-padding-array-of-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/packing/struct-size-padding.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/tesc/copy-tess-level.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/tesc/passthrough-clip-cull.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/tesc/tess-level-read-write-in-function-quad.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/tese/builtin-input-automatic-attribute-assignment.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/tese/load-clip-cull.msl2.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/vert/cull-distance.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/vert/functions_nested.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/vert/layer.msl11.invalid.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/vert/modf-storage-class.capture.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/vert/pass-array-by-value.force-native-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/vert/pass-array-by-value.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/vert/uninitialized-vertex-output.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/vert/unused-subgroup-builtin.msl22.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/vert/viewport-index.msl2.invalid.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl-no-opt/vulkan/frag/texture-access-function.swizzle.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/amd/shader_trinary_minmax.msl21.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/atomic-decrement.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/atomic-increment.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/bitcast_iadd.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/bitcast_icmp.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/bitcast_sar.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/bitcast_sdiv.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/bitcast_slr.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/block-name-alias-global.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/buffer-write-relative-addr.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/buffer-write.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/global-parameter-name-alias.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/image-load-store-short-vector.invalid.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/multiple-entry.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/quantize.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/relaxed-block-layout.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/specialization-constant-workgroup.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/struct-resource-name-aliasing.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/variable-pointers-2.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/variable-pointers-store-forwarding.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/vector-builtin-type-cast-func.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/comp/vector-builtin-type-cast.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/combined-sampler-reuse.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/default-member-names.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/depth-image-color-format-fetch.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/depth-image-color-format-sampled.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/descriptor-array-unnamed.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/disable-renamed-output.frag-output.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/empty-struct.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/extract-packed-from-composite.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/frem.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/function-overload-alias.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/image-extract-reuse.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/implicit-read-dep-phi.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/inf-nan-constant.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/interpolation-qualifiers-struct.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/line-directive.line.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/locations-components.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/lut-promotion-initializer.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/min-lod.msl22.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/op-constant-null.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/op-image-sampled-image.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/pass-by-value.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/phi-loop-variable.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/pull-model-interpolation.asm.msl23.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/sample-and-compare.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/single-function-private-lut.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/srem.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/storage-class-output-initializer.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/switch-different-sizes.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/switch-long-case.asm.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/switch-unsigned-long-case.asm.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/texel-fetch-no-lod.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/texture-atomics.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/texture-atomics.asm.graphics-robust-access.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/texture-sampling-fp16.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/undef-variable-store.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/unknown-depth-state.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/unord-relational-op.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/unord-relational-op.relax-nan.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/unreachable.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/frag/vector-shuffle-oom.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/tesc/tess-level-overrun.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/tesc/tess-level-overrun.multi-patch.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/tese/unnamed-builtin-array.asm.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/vert/clip-distance-plain-variable.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/vert/clip-distance-plain-variable.no-user-varying.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/vert/copy-memory-interface.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/vert/extract-transposed-matrix-from-struct.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/vert/fake-builtin-input.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/vert/invariant.msl21.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/vert/packed-bool-to-uint.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/vert/packed-bool2-to-packed_uint2.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/vert/packing-test.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/vert/spec-constant-op-composite.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/asm/vert/uint-vertex-id-instance-id.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/access-private-workgroup-in-function.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/argument-buffers-discrete.msl2.argument.discrete.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/argument-buffers-image-load-store.ios.msl2.argument.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/argument-buffers-image-load-store.msl2.argument.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/array-length.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/array-length.msl2.argument.discrete.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/atomic.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/barriers.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/basic.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/basic.dispatchbase.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/basic.dispatchbase.msl11.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/basic.inline-block.msl2.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/buffer_device_address-packed-vec-and-cast-to-and-from-uvec2.msl23.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/buffer_device_address-recursive-struct-pointers.msl23.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/buffer_device_address.msl2.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/builtins.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/cfg-preserve-parameter.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/coherent-block.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/coherent-image.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/complex-composite-constant-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/complex-type-alias.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/composite-array-initialization.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/composite-array-initialization.force-native-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/composite-construct.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/copy-array-of-arrays.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/copy-array-of-arrays.force-native-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/culling.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/defer-parens.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/dowhile.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/force-recompile-hooks.swizzle.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/functions.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/global-invocation-id-writable-ssbo-in-function.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/global-invocation-id.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/image-atomic-automatic-bindings.argument.msl2.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/image-atomic-automatic-bindings.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/image-cube-array-load-store.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/image.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/insert.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/inverse.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/local-invocation-id.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/local-invocation-index.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/mat3-row-maj-read-write-const.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/mat3.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/mod.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/modf.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/outer-product.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/packing-test-1.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/packing-test-2.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/ray-query.spv14.vk.ios.msl24..invalid.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/read-write-only.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/rmw-matrix.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/rmw-opt.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/scalar-std450-distance-length-normalize.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/shared-array-of-arrays.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/shared-matrix-array-of-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/shared-matrix-cast.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/shared-matrix-nested-struct-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/shared-matrix-nested-struct.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/shared-struct-bool-cast.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/shared.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/spec-constant-op-member-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/spec-constant-work-group-size.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/storage-buffer-std140-vector-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/struct-layout.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/struct-nested.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/struct-packing.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/threadgroup-boolean-workaround.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/torture-loop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/type-alias.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/type_casting_i64.msl22.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/udiv.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/comp/writable-ssbo.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/comp/extended-arithmetic.desktop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/frag/image-ms.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/frag/query-levels.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/frag/sampler-ms-query.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/tesc/arrayed-output.desktop.sso.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/tesc/basic.desktop.sso.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/tesc/basic.desktop.sso.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/tesc/struct-copy.desktop.sso.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/tesc/struct-copy.desktop.sso.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/tese/triangle.desktop.sso.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/vert/basic.desktop.sso.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/vert/clip-cull-distance..no-user-varying.desktop.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/vert/clip-cull-distance.desktop.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/vert/shader-draw-parameters.desktop.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/desktop-only/vert/shader-draw-parameters.desktop.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/flatten/basic.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/flatten/multiindex.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/flatten/push-constant.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/flatten/rowmajor.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/flatten/struct.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/flatten/swizzle.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/flatten/types.flatten.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/argument-buffers.msl2.argument.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/array-component-io.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/array-lut-no-loop-variable.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/array-of-array-lut.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/array-of-texture-swizzle-nonconstant-uniform.msl2.argument.discrete.swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/array-of-texture-swizzle-nonconstant-uniform.msl2.swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/array-of-texture-swizzle.msl2.argument.discrete.swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/array-of-texture-swizzle.msl2.swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/barycentric-nv-nopersp.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/barycentric-nv.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/basic.force-sample.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/basic.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/binary-func-unpack-pack-arguments.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/binary-unpack-pack-arguments.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/bitcasting.1d-as-2d.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/bitcasting.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/buffer-read-write.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/buffer-read-write.texture-buffer-native.msl21.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/builtins.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/clip-distance-varying.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/complex-expression-in-access-chain.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/composite-extract-forced-temporary.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/constant-array.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/constant-composites.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/control-dependent-in-branch.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/cull-distance-varying.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/depth-greater-than.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/depth-less-than.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/depth-out-early-frag-tests.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/depth-out-no-early-frag-tests.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/disable-frag-output.frag-output.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/dual-source-blending.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/early-fragment-tests.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/false-loop-init.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/flush_params.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/for-loop-continue-control-flow.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/for-loop-init.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/fp16-packing.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/fragment-component-padding.pad-fragment.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/front-facing.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/gather-dref.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/gather-offset.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/helper-invocation.msl21.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/huge-argument-buffer.device-argument-buffer.argument.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/illegal-name-test-0.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/image-query-lod.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/in_block.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/in_block_with_multiple_structs_of_same_type.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/in_mat.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/input-attachment-ms.arrayed-subpass.msl21.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/input-attachment-ms.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/input-attachment-ms.multiview.msl21.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/input-attachment.arrayed-subpass.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/input-attachment.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/input-attachment.multiview.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/interpolation-qualifiers-block.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/interpolation-qualifiers.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/lut-promotion.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/mix.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/modf-access-tracking-function.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/mrt-array.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/nonuniform-qualifier.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/packed-expression-vector-shuffle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/packing-test-3.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/pixel-interlock-ordered.msl2.argument.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/pixel-interlock-ordered.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/pls.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/post-depth-coverage.ios.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/post-depth-coverage.msl23.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/private-variable-prototype-declaration.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/ray-query-object-in-function.spv14.vk.msl24.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/read-cull-clip-distance-in-function.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/readonly-ssbo.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/return-value-after-discard-terminator.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sample-depth-propagate-state-from-resource.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sample-depth-separate-image-sampler.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sample-mask-in-and-out.fixed-sample-mask.force-sample.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sample-mask-in-and-out.fixed-sample-mask.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sample-mask-not-used.fixed-sample-mask.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sample-mask.fixed-sample-mask.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sample-mask.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sample-position-func.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sample-position.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sample-rate-frag-coord-sample-id.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sample-rate-frag-coord-sample-input.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sample-rate-frag-coord-sample-pos.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sample-rate-frag-coord.force-sample.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sampler-1d-lod.1d-as-2d.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sampler-1d-lod.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sampler-compare-bias.msl23.1d-as-2d.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sampler-compare-cascade-gradient.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sampler-compare-cascade-gradient.ios.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sampler-compare-cascade-gradient.msl23.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sampler-image-arrays.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sampler-ms.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/sampler.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/scalar-refract-reflect.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/separate-image-sampler-argument.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/shader-arithmetic-8bit.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/spec-constant-block-size.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/spec-constant-ternary.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/stencil-export.msl21.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/subgroup-builtins.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/subgroup-globals-extract.msl22.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/switch-unreachable-break.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/switch-unsigned-case.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/texel-fetch-offset.1d-as-2d.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/texel-fetch-offset.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/texture-cube-array.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/texture-cube-array.ios.emulate-cube-array.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/texture-multisample-array.msl21.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/texture-proj-shadow.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/ubo_layout.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/unary-enclose.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/vecsize-mismatch.shader-inputs.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/frag/write-depth-in-function.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/intel/shader-integer-functions2.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/legacy/vert/transpose.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/copy-arrays.mask-location-0.msl2.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/copy-arrays.mask-location-0.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/copy-arrays.mask-location-1.msl2.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/copy-arrays.mask-location-1.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs-block.mask-location-0.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs-block.mask-location-0.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs-block.mask-location-0.multi-patch.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs-block.mask-location-0.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs-block.mask-location-1.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs-block.mask-location-1.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs-block.mask-location-1.multi-patch.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs-block.mask-location-1.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-clip-distance.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-location-0.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-location-0.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-location-0.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-location-0.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-location-0.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-location-1.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-location-1.msl2.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-location-1.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-location-1.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-location-1.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-point-size.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-point-size.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-point-size.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-point-size.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-position.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/masking/write-outputs.mask-position.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/basic.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/basic.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/complex-control-point-inout-types.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/complex-control-point-inout-types.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/complex-patch-out-types.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/load-control-point-array-of-matrix.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/load-control-point-array-of-matrix.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/load-control-point-array-of-struct.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/load-control-point-array-of-struct.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/load-control-point-array.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/load-control-point-array.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/matrix-output.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/reload-tess-level.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/reload-tess-level.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/struct-output.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/water_tess.multi-patch.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tesc/water_tess.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tese/in-block-with-nested-struct.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tese/input-array.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tese/input-types.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tese/load-control-point-array-of-matrix.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tese/load-control-point-array.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tese/quad.domain.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tese/quad.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tese/read-tess-level-in-func-quad.msl2.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tese/read-tess-level-in-func.msl2.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tese/set-from-function.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tese/triangle-tess-level.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tese/triangle.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/tese/water_tess.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/array-component-io.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/array-component-io.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/basic.capture.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/basic.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/basic.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/buffer_device_address.msl2.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/clip-distance-block.no-user-varying.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/clip-distance-block.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/copy.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/dynamic.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/float-math.invariant-float-math.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/float-math.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/functions.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/implicit-position-1.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/implicit-position-2.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/in_out_array_mat.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/interface-block-block-composites.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/interface-block-block-composites.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/interface-block-single-element-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/interpolation-qualifiers-block.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/interpolation-qualifiers.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/invariant.msl21.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/leaf-function.capture.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/leaf-function.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/no-contraction.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/no-disable-vertex-out.frag-output.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/no_stage_out.for-tess.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/no_stage_out.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/no_stage_out.write_buff.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/no_stage_out.write_buff_atomic.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/no_stage_out.write_tex.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/out-block-with-nested-struct-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/out-block-with-struct-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/out_block.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/packed-bool-to-uint.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/packed-bool2-to-packed_uint2.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/packed_matrix.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/pointsize.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/read-from-row-major-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/resource-arrays-leaf.ios.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/resource-arrays.ios.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/return-array.force-native-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/return-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/set_builtin_in_func.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/sign-int-types.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/signedness-mismatch.shader-inputs.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/texture_buffer.texture-buffer-native.msl21.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/texture_buffer.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/ubo.alignment.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/ubo.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/uniform-struct-out-of-order-offests.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/uniform-struct-packing-nested.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vert/unused-position.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/frag/basic.multiview.no-layered.nocompat.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/frag/basic.multiview.nocompat.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/frag/demote-to-helper-forwarding.asm.vk.nocompat.msl23.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/frag/demote-to-helper.vk.nocompat.msl23.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/frag/demote-to-helper.vk.nocompat.msl23.ios.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/frag/push-constant.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/frag/spec-constant.msl11.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/frag/spec-constant.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/vert/device-group.multiview.viewfromdev.nocompat.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/vert/device-group.nocompat.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/vert/multiview.multiview.no-layered.nocompat.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/vert/multiview.multiview.nocompat.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/vert/multiview.nocompat.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/vert/small-storage.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-msl/vulkan/vert/vulkan-vertex.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/access-chain-dominator-in-loop-body-2.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/access-chain-dominator-in-loop-body.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/access-tracking-function-call-result.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/aliased-struct-divergent-member-name.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/arithmetic-conversion-signs.asm.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/atomic-load-store.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/atomic-result-temporary.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/basic.spv16.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/bitcast-fp16-fp32.asm.vk.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/bitcast-fp16-fp32.asm.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/bitfield-signed-operations.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/bitscan.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/buffer-atomic-nonuniform.vk.nocompat.asm.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/buffer-device-address-ptr-casting.vk.nocompat.asm.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/buffer-reference-aliased-block-name.nocompat.vk.asm.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/buffer-reference-pointer-to-pod-in-buffer.asm.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/buffer-reference-pointer-to-unused-pod-in-buffer.asm.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/buffer-reference-synthesized-pointer-2.asm.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/buffer-reference-synthesized-pointer.asm.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/constant-composite-undef.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/constant-lut-name-aliasing.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/copy-logical.spv14.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/eliminate-globals-not-in-entry-point.noeliminate.spv14.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/expression-nesting-limits.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/extended-debug-extinst.invalid.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/fuzz-collapse-degenerate-loop.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/fuzz-loop-variable-dominator-with-unreachable-continue-block.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/glsl-signed-operations.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/glsl.std450.frexp-modf-struct.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/image-atomic-nonuniform.vk.nocompat.asm.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/local-size-id-override.vk.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/local-size-id-override.vk.asm.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/local-size-id.vk.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/local-size-id.vk.asm.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/loop-variable-early-read-with-initializer.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/loop-variable-early-read-with-undef.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/loop-variable-with-initializer.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/multi-break-switch-out-of-loop.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/nonuniform-bracket-handling.vk.nocompat.asm.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/phi-temporary-copy-loop-variable.asm.invalid.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/ray-query-force-temporary-rtas.spv14.asm.vk.nocompat.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/ray-query-function-object.spv14.asm.vk.nocompat.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/spec-constant-name-aliasing.vk.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/spec-constant-name-aliasing.vk.asm.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/spec-constant-op-convert-sign.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/storage-buffer-basic.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/comp/temorary-access-terminator.vk.nocompat.asm.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/degenerate-selection-constructs.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/anonymous-inner-struct-names.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/array-builtin-bitcast-load-store.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/collapsed-switch-phi-flush.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/combined-image-sampler-dxc-min16float.asm.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/composite-insert-hoisted-temporaries-1.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/composite-insert-hoisted-temporaries-2.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/composite-insert-inheritance.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/demote-impure-function-call.vk.nocompat.asm.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/discard-impure-function-call.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/do-while-continue-phi.asm.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/do-while-loop-inverted-test.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/early-conditional-return-switch.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/empty-struct-in-struct.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/for-loop-dedicated-merge-block-inverted.asm.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/for-loop-dedicated-merge-block-non-inverted.asm.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/for-loop-inverted-test.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/image-fetch-uint-coord.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/inliner-dominator-inside-loop.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/late-expression-invalidation-2.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/late-expression-invalidation.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/ldexp-uint-exponent.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/loop-merge-to-continue.asm.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/nonuniform-bracket-handling-2.vk.nocompat.asm.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/nonuniform-qualifier-propagation.vk.nocompat.asm.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/nonuniform-ssbo.nocompat.vk.asm.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/only-initializer-frag-depth.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/opaque-id-literal-alias.preserve.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/out-of-order-struct-id.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/phi.zero-initialize.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/pixel-interlock-callstack.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/pixel-interlock-control-flow.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/pixel-interlock-split-functions.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/relaxed-precision-inheritance-rules-hoisted-temporaries.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/relaxed-precision-inheritance-rules-hoisted-temporary.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/relaxed-precision-inheritance-rules.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/reserved-function-identifier.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/reserved-identifiers.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/scalar-select.spv14.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/selection-merge-to-continue.asm.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/sparse-texture-feedback-uint-code.asm.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/subgroup-arithmetic-cast.nocompat.vk.asm.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/subgroup-ballot-only.vk.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/subgroup-ballot-only.vk.asm.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/switch-block-case-fallthrough.asm.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/switch-merge-to-continue.asm.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/switch-non-default-fallthrough-no-phi.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/switch-single-case-multiple-exit-cfg.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/terminate-impure-function-call.spv16.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/texel-fetch-ms-uint-sample.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/unordered-compare.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/unordered-compare.relax-nan.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/vector-extract-dynamic-spec-constant.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/vector-shuffle-undef-index.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/frag/while-loop-inverted-test.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/geom/store-uint-layer.invalid.asm.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/loop-header-self-continue-break.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/rgen/acceleration-nonuniform.spv14.vk.nocompat.asm.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/task/task-shader.vk.nocompat.invalid.spv14.asm.task.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/temporary.zero-initialize.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/tesc/array-of-block-output-initializer.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/tesc/copy-memory-control-point.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/tesc/tess-fixed-input-array-builtin-array.invalid.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/tesc/tess-level-initializer.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/vert/block-struct-initializer.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/vert/builtin-output-initializer.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/vert/complex-link-by-name.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/vert/complex-link-by-name.force-flattened-io.legacy.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/vert/constant-composite-extract.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/vert/debug-printf.asm.vk.nocompat.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/vert/empty-struct-composite.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/asm/vert/semantic-decoration.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/bitcast-16bit-1.invalid.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/bitcast-16bit-2.invalid.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/bitfield.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/glsl.std450.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/illegal-struct-name.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/image-load-formatted.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/inout-struct.invalid.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/int16min-literal.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/int64min-literal.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/intmin-literal.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/loop-break-merge-after-inner-continue.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/loop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/return.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/shader_ballot_nonuniform_invocations.invalid.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/specialization-constant-evaluation.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/struct-packing-scalar.nocompat.invalid.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/subgroups.nocompat.invalid.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/subgroups_basicvoteballot.vk.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/subgroups_basicvoteballot.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/trivial-select-cast-vector.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/comp/trivial-select-matrix.spv14.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/16bit-constants.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/fp16.invalid.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/frag-fully-covered.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/fragmentMaskFetch_subpassInput.vk.nocompat.invalid.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/fs.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/image-gather.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/modf-non-function-purity-analysis.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/multi-dimensional.desktop.invalid.flatten_dim.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/nonuniform-constructor.vk.nocompat.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/pixel-interlock-simple-callstack.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/scalar-block-layout-ubo-std430.vk.nocompat.invalid.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/sparse-texture-clamp.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/sparse-texture-feedback.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/subpass-input.framebuffer-fetch.nocompat.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/subpass-input.framebuffer-fetch.nocompat.framebuffer-fetch-noncoherent.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/subpass-input.framebuffer-fetch.nocompat.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/subpass-input.framebuffer-fetch.nocompat.legacy.framebuffer-fetch-noncoherent.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/texture-gather-uint-component.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/texture1d-emulation.es.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/texture1d-emulation.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/frag/variables.zero-initialize.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/legacy/frag/switch-single-case-multiple-exit-cfg.legacy.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/vert/io-blocks.force-flattened-io.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/vert/pass-array-by-value.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/vulkan/frag/shading-rate.vk.nocompat.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/vulkan/frag/spec-constant.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/vulkan/frag/spec-constant.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/vulkan/frag/ubo-offset-out-of-order.vk.nocompat.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/vulkan/frag/volatile-helper-invocation.vk.nocompat.spv16.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-no-opt/vulkan/vert/primitive-shading-rate.vk.nocompat.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/asm/aliased-entry-point-names.asm.multi.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/asm/comp/pointer-to-array-of-physical-pointer.asm.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/asm/op-source-glsl-ssbo-1.asm.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/asm/op-source-glsl-ssbo-2.asm.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/asm/op-source-hlsl-uav-1.asm.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/asm/op-source-hlsl-uav-2.asm.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/asm/op-source-none-ssbo-1.asm.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/asm/op-source-none-ssbo-2.asm.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/asm/op-source-none-uav-1.asm.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/asm/op-source-none-uav-2.asm.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/comp/array-of-physical-pointer.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/comp/function-pointer.invalid.asm.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/comp/out-of-order-block-offsets.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/comp/physical-pointer.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/comp/struct-layout.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/comp/struct-packing.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/comp/workgroup-size-spec-constant.comp.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/frag/combined-texture-sampler-shadow.vk.frag.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/frag/combined-texture-sampler.vk.frag.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/frag/image-load-store-uint-coord.asm.frag.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/frag/input-attachment-ms.vk.frag.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/frag/input-attachment.vk.frag.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/frag/push-constant.vk.frag.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/frag/separate-sampler-texture-array.vk.frag.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/frag/spec-constant.vk.frag.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/rgen/acceleration_structure.vk.rgen.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/vert/array-size-reflection.vert.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/vert/read-from-row-major-array.vert.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/vert/stride-reflection.vert.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-reflection/vert/texture_buffer.vert.json +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4-no-opt/asm/frag/accesschain-invalid-expression.asm.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4-no-opt/asm/frag/array-copy-error.asm.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4-no-opt/asm/frag/phi-variable-declaration.asm.invalid.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4-no-opt/asm/tese/ds-texcoord-array.asm.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4-no-opt/asm/vert/loop-accesschain-writethrough.asm.invalid.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/frag/depth-compare.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/frag/global-constant-arrays.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/frag/padded-float-array-member-defef.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/frag/sample-mask-not-array.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/frag/subpass-input.ios.framebuffer-fetch.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/frag/subpass-input.msl23.framebuffer-fetch.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/frag/texture-atomics.asm.argument.msl2.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/frag/texture-atomics.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/frag/texture-atomics.asm.graphics-robust-access.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/tesc/hs-incorrect-base-type.invalid.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/tesc/hs-input-array-access.invalid.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/tesc/hs-texcoord-array.invalid.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/tesc/tess-factor-must-be-threadgroup.invalid.asm.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/tese/ds-double-gl-in-deref.asm.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/tese/ds-patch-input-fixes.asm.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/tese/ds-patch-inputs.asm.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/vert/array-missing-copies.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders-ue4/asm/vert/texture-buffer.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/amd/gcn_shader.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/amd/shader_ballot.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/amd/shader_group_vote.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/amd/shader_trinary_minmax.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/atomic-decrement.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/atomic-increment.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/bitcast_iadd.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/bitcast_icmp.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/bitcast_iequal.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/bitcast_sar.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/bitcast_sdiv.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/bitcast_slr.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/block-name-alias-global.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/builtin-compute-bitcast.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/control-flow-hints.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/decoration-group.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/global-parameter-name-alias.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/hlsl-functionality.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/logical.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/multiple-entry.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/nmin-max-clamp.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/nmin-max-clamp.relax-nan.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/op-phi-swap.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/quantize.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/recompile-block-naming.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/specialization-constant-workgroup.asm.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/comp/switch-break-ladder.asm.invalid.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/combined-sampler-reuse.vk.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/combined-sampler-reuse.vk.asm.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/complex-name-workarounds.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/composite-construct-struct-no-swizzle.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/default-member-names.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/do-while-statement-fallback.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/empty-struct.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/for-loop-phi-only-continue.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/frem.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/function-overload-alias.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/hlsl-sample-cmp-level-zero-cube.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/hlsl-sample-cmp-level-zero.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/image-extract-reuse.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/image-fetch-no-sampler.asm.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/image-fetch-no-sampler.asm.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/image-fetch-no-sampler.no-samplerless.asm.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/image-fetch-no-sampler.no-samplerless.asm.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/image-query-no-sampler.no-samplerless.vk.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/image-query-no-sampler.no-samplerless.vk.asm.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/image-query-no-sampler.vk.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/image-query-no-sampler.vk.asm.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/implicit-read-dep-phi.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/inf-nan-constant-double.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/inf-nan-constant.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/invalidation.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/line-directive.line.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/locations-components.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/loop-body-dominator-continue-access.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/loop-header-to-continue.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/lut-promotion-initializer.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/multi-for-loop-init.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/op-constant-null.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/op-phi-swap-continue-block.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/out-of-bounds-access-opspecconstant.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/out-of-bounds-access.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/pack-and-unpack-uint2.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/pass-by-value.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/phi-loop-variable.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/sample-and-compare.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/sampler-buffer-array-without-sampler.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/sampler-buffer-without-sampler.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/single-function-private-lut.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/srem.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/storage-class-output-initializer.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/struct-composite-extract-swizzle.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/switch-label-shared-block.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/switch-preserve-sign-extension.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/temporary-name-alias.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/temporary-phi-hoisting.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/texel-fetch-no-lod.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/texture-sampling-fp16.asm.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/texture-sampling-fp16.asm.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/undef-variable-store.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/unknown-depth-state.asm.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/unknown-depth-state.asm.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/unreachable.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/frag/vector-shuffle-oom.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/geom/block-name-namespace.asm.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/geom/inout-split-access-chain-handle.asm.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/geom/split-access-chain-input.asm.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/geom/unroll-glposition-load.asm.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/tese/unroll-input-array-load.asm.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/vert/empty-io.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/vert/extract-transposed-matrix-from-struct.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/vert/global-builtin.sso.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/vert/invariant-block.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/vert/invariant-block.sso.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/vert/invariant.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/vert/invariant.sso.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/vert/spec-constant-op-composite.asm.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/vert/spec-constant-op-composite.asm.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/asm/vert/uint-vertex-id-instance-id.asm.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/atomic.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/bake_gradient.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/barriers.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/basic.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/casts.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/cfg-preserve-parameter.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/cfg.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/coherent-block.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/coherent-image.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/composite-array-initialization.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/composite-construct.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/culling.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/defer-parens.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/dowhile.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/generate_height.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/image.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/insert.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/mat3.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/mod.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/modf.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/outer-product.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/read-write-only.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/rmw-matrix.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/rmw-opt.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/scalar-std450-distance-length-normalize.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/shared.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/ssbo-array-length.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/ssbo-array.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/struct-layout.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/struct-packing.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/torture-loop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/type-alias.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/comp/udiv.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/comp/enhanced-layouts.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/comp/extended-arithmetic.desktop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/comp/fp64.desktop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/comp/image-formats.desktop.noeliminate.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/comp/int64.desktop.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/clip-cull-distance.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/control-dependent-in-branch.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/depth-greater-than.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/depth-less-than.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/dual-source-blending.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/hlsl-uav-block-alias.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/image-ms.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/image-query.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/image-size.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/image-size.no-qualifier-deduction.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/in-block-qualifiers.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/layout-component.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/query-levels.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/query-lod.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/sampler-ms-query.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/stencil-export.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/frag/texture-proj-shadow.desktop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/geom/basic.desktop.sso.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/geom/viewport-index.desktop.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/tesc/basic.desktop.sso.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/tese/triangle.desktop.sso.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/vert/basic.desktop.sso.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/vert/clip-cull-distance.desktop.sso.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/vert/clip-cull-distance.desktop.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/vert/out-block-qualifiers.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/vert/shader-draw-parameters-450.desktop.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/vert/shader-draw-parameters-450.desktop.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/vert/shader-draw-parameters.desktop.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/desktop-only/vert/shader-draw-parameters.desktop.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/flatten/array.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/flatten/basic.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/flatten/copy.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/flatten/dynamic.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/flatten/matrix-conversion.flatten.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/flatten/matrixindex.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/flatten/multiindex.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/flatten/push-constant.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/flatten/rowmajor.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/flatten/struct.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/flatten/struct.rowmajor.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/flatten/swizzle.flatten.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/flatten/types.flatten.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/array-lut-no-loop-variable.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/avoid-expression-lowering-to-loop.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/barycentric-khr.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/barycentric-nv.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/basic.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/complex-expression-in-access-chain.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/composite-extract-forced-temporary.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/constant-array.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/constant-composites.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/false-loop-init.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/flush_params.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/for-loop-continue-control-flow.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/for-loop-init.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/frexp-modf.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/front-facing.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/gather-dref.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/ground.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/helper-invocation.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/hoisted-temporary-use-continue-block-as-value.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/image-load-store-uint-coord.asm.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/inside-loop-dominated-variable-preservation.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/loop-dominator-and-switch-default.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/lut-promotion.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/mix.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/modf-pointer-function-analysis.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/partial-write-preserve.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/pixel-interlock-ordered.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/pixel-interlock-unordered.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/pls.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/post-depth-coverage-es.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/post-depth-coverage.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/round-even.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/round.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/sample-interlock-ordered.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/sample-interlock-unordered.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/sample-parameter.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/sampler-ms.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/sampler-proj.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/sampler.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/scalar-refract-reflect.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/selection-block-dominator.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/struct-type-unrelated-alias.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/switch-unreachable-break.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/switch-unsigned-case.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/swizzle.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/texel-fetch-offset.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/ubo-load-row-major-workaround.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/ubo_layout.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/frag/unary-enclose.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/geom/basic.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/geom/geometry-passthrough.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/geom/lines-adjacency.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/geom/lines.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/geom/multi-stream.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/geom/points.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/geom/single-invocation.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/geom/transform-feedback-streams.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/geom/triangles-adjacency.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/geom/triangles.geom +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/fragment/explicit-lod.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/fragment/explicit-lod.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/fragment/fma.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/fragment/io-blocks.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/fragment/multiple-struct-flattening.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/fragment/round.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/fragment/struct-varying.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/fragment/switch.legacy.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/vert/implicit-lod.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/vert/io-block.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/vert/struct-flatten-inner-array.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/vert/struct-flatten-stores-multi-dimension.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/vert/struct-varying.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/vert/switch-nested.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/legacy/vert/transpose.legacy.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/mesh/mesh-shader-basic-lines.spv14.vk.nocompat.mesh.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/mesh/mesh-shader-basic-points.spv14.vk.nocompat.mesh.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/mesh/mesh-shader-basic-triangle.spv14.vk.nocompat.mesh.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/task/task-shader-basic-2.vk.spv14.nocompat.task.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/task/task-shader-basic.vk.spv14.nocompat.task.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/tesc/basic.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/tesc/water_tess.tesc +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/tese/ccw.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/tese/cw.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/tese/equal.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/tese/fractional_even.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/tese/fractional_odd.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/tese/input-array.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/tese/line.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/tese/load-array-of-array.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/tese/patch-input-array.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/tese/triangle.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/tese/water_tess.tese +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vert/basic.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vert/ground.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vert/invariant.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vert/no-contraction.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vert/ocean.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vert/read-from-row-major-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vert/return-array.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vert/texture_buffer.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vert/transform-feedback-decorations.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vert/ubo.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/array-of-buffer-reference.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/buffer-reference-atomic.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/buffer-reference-base-alignment-promote.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/buffer-reference-bitcast-uvec2-2.nocompat.invalid.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/buffer-reference-bitcast-uvec2.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/buffer-reference-bitcast.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/buffer-reference-decorations.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/buffer-reference.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/fp-atomic.nocompat.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/ray-query.nocompat.spv14.invalid.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/spec-constant-op-member-array.vk.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/spec-constant-op-member-array.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/spec-constant-work-group-size.vk.comp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/comp/spec-constant-work-group-size.vk.comp.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/combined-texture-sampler-shadow.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/combined-texture-sampler-shadow.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/combined-texture-sampler.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/combined-texture-sampler.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/demote-to-helper-forwarding.asm.vk.nocompat.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/demote-to-helper.vk.nocompat.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/desktop-mediump.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/desktop-mediump.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/input-attachment-ms.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/input-attachment-ms.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/input-attachment.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/input-attachment.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/nonuniform-qualifier.vk.nocompat.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/push-constant-as-ubo.push-ubo.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/push-constant-as-ubo.push-ubo.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/push-constant.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/push-constant.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/separate-combined-fake-overload.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/separate-combined-fake-overload.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/separate-sampler-texture-array.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/separate-sampler-texture-array.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/separate-sampler-texture.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/separate-sampler-texture.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/shader-arithmetic-8bit.nocompat.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/spec-constant-block-size.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/spec-constant-block-size.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/spec-constant-ternary.vk.frag +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/frag/spec-constant-ternary.vk.frag.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rahit/terminators.khr.spv14.nocompat.vk.rahit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rahit/terminators.nocompat.vk.rahit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rcall/incoming-callable.khr.spv14.nocompat.vk.rcall.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/hit_attribute_block.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/hit_attribute_block.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/hit_attribute_block_in_function.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/hit_attribute_block_in_function.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/hit_attribute_plain.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/hit_attribute_plain.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/hit_attribute_struct.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/hit_attribute_struct.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/hit_kind.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/hit_kind.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/hit_t.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/hit_t.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/incoming_ray_flags.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/incoming_ray_flags.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/instance_custom_id.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/instance_custom_id.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/instance_id.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/instance_id.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/object_ray_direction.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/object_ray_direction.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/object_ray_origin.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/object_ray_origin.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/object_to_world.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/object_to_world.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/payloads.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/payloads.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/primitive_id.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/primitive_id.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/ray_tmax.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/ray_tmax.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/ray_tmin.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/ray_tmin.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/ray_tracing.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/ray_tracing.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/world_ray_direction.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/world_ray_direction.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/world_ray_origin.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/world_ray_origin.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/world_to_object.khr.spv14.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rchit/world_to_object.nocompat.vk.rchit.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/convert-u-to-as.spv14.vk.nocompat.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/execute_callable.nocompat.khr.spv14.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/execute_callable.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/launch_id.khr.spv14.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/launch_id.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/launch_size.khr.spv14.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/launch_size.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/payloads.khr.spv14.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/payloads.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/pure_call.khr.spv14.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/pure_call.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/ray_tracing.khr.spv14.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/ray_tracing.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/shader_record_buffer.khr.spv14.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rgen/shader_record_buffer.nocompat.vk.rgen.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rint/report-intersection.khr.spv14.nocompat.vk.rint.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rint/report-intersection.nocompat.vk.rint.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rmiss/ray_tracing.khr.spv14.nocompat.vk.rmiss.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rmiss/ray_tracing.nocompat.vk.rmiss.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/rmiss/ray_tracing_trace_incoming.khr.spv14.nocompat.vk.rmiss.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/vert/device-group.nocompat.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/vert/multiview.nocompat.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/vert/small-storage.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/vert/small-storage.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/vert/vulkan-vertex.vk.vert +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/reference/shaders/vulkan/vert/vulkan-vertex.vk.vert.vk +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cfg.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cfg.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_common.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cpp.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cpp.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_c.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_c.h +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_containers.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_error_handling.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_parsed_ir.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_parsed_ir.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_util.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_cross_util.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_glsl.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_glsl.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_hlsl.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_hlsl.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_msl.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_msl.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_parser.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_parser.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_reflect.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv_reflect.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/c_api_test.c +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/c_api_test.spv +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/hlsl_resource_binding.spv +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/hlsl_resource_bindings.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/hlsl_wave_mask.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/msl_constexpr_test.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/msl_constexpr_test.spv +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/msl_resource_binding.spv +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/msl_resource_bindings.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/msl_ycbcr_conversion_test.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/msl_ycbcr_conversion_test.spv +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/msl_ycbcr_conversion_test_2.spv +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/small_vector.cpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/tests-other/typed_id_test.cpp FILE: ../../../third_party/vulkan-deps/vulkan-headers/src/include/vk_video/vulkan_video_codec_h264std.h FILE: ../../../third_party/vulkan-deps/vulkan-headers/src/include/vk_video/vulkan_video_codec_h264std_decode.h FILE: ../../../third_party/vulkan-deps/vulkan-headers/src/include/vk_video/vulkan_video_codec_h264std_encode.h @@ -2224,12 +5070,149 @@ FILE: ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_ FILE: ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_xcb.h FILE: ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_xlib.h FILE: ../../../third_party/vulkan-deps/vulkan-headers/src/include/vulkan/vulkan_xlib_xrandr.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/GOVERNANCE.md +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/build-android/AndroidManifest.xml +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/build-android/res/values/strings.xml +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/VkLayer_khronos_validation.def +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/android_ndk_types.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/base_node.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/base_node.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/best_practices_error_enums.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/best_practices_utils.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/best_practices_validation.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/buffer_state.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/buffer_state.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/buffer_validation.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/buffer_validation.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/cast_utils.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/cmd_buffer_state.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/cmd_buffer_state.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/convert_to_renderpass2.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/convert_to_renderpass2.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/core_error_location.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/core_error_location.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/core_validation.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/core_validation.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/core_validation_error_enums.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/debug_printf.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/debug_printf.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/descriptor_sets.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/descriptor_sets.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/descriptor_validation.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/device_memory_state.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/device_memory_state.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/device_state.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/drawdispatch.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/best_practices.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/best_practices.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/chassis.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/chassis.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/chassis_dispatch_helper.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/command_validation.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/command_validation.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/corechecks_optick_instrumentation.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/corechecks_optick_instrumentation.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/gpu_as_inspection_comp.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/gpu_pre_dispatch_comp.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/gpu_pre_draw_vert.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/layer_chassis_dispatch.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/layer_chassis_dispatch.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/lvt_function_pointers.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/lvt_function_pointers.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/object_tracker.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/object_tracker.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/parameter_validation.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/parameter_validation.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/spirv_grammar_helper.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/spirv_grammar_helper.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/spirv_tools_commit_id.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/spirv_validation_helper.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/synchronization_validation_types.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/synchronization_validation_types.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/thread_safety.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/thread_safety.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_dispatch_table_helper.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_enum_string_helper.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_extension_helper.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_format_utils.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_format_utils.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_layer_dispatch_table.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_object_types.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_safe_struct.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_safe_struct.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_typemap_helper.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/generated/vk_validation_error_messages.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_shaders/gpu_as_inspection.comp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_shaders/gpu_pre_dispatch.comp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_shaders/gpu_pre_draw.vert +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_shaders/gpu_shaders_constants.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_utils.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_utils.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_validation.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_validation.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/gpu_vuids.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/hash_util.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/hash_vk_types.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/image_layout_map.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/image_layout_map.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/image_state.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/image_state.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/json/VkLayer_khronos_validation.json.in +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/layer_options.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/layer_options.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/libVkLayer_khronos_validation.map +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/object_lifetime_validation.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/object_tracker_utils.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/parameter_name.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/parameter_validation_utils.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/pipeline_layout_state.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/pipeline_layout_state.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/pipeline_state.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/pipeline_state.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/pipeline_sub_state.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/pipeline_sub_state.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/qfo_transfer.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/query_state.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/queue_state.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/queue_state.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/range_vector.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/ray_tracing_state.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/render_pass_state.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/render_pass_state.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/sampler_state.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/shader_module.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/shader_module.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/shader_validation.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/shader_validation.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/sparse_containers.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/state_tracker.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/state_tracker.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/stateless_validation.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/subresource_adapter.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/subresource_adapter.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/sync_utils.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/sync_utils.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/sync_vuid_maps.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/sync_vuid_maps.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/synchronization_validation.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/synchronization_validation.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_config.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_config.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_data.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_extension_utils.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_extension_utils.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_logging.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_settings.txt +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_settings_ext.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_utils.cpp +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_layer_utils.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_loader_platform.h FILE: ../../../third_party/wuffs/release/c/wuffs-v0.2.c FILE: ../../../third_party/wuffs/release/c/wuffs-v0.3.c ---------------------------------------------------------------------------------------------------- Apache License Version 2.0, January 2004 -http://www.apache.org/licenses +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -2433,38 +5416,863 @@ limitations under the License. ==================================================================================================== LIBRARY: libcxx LIBRARY: libcxxabi -ORIGIN: ../../../third_party/libcxx/benchmarks/algorithms/common.h -TYPE: LicenseType.apache -FILE: ../../../third_party/libcxx/benchmarks/CartesianBenchmarks.h -FILE: ../../../third_party/libcxx/benchmarks/ContainerBenchmarks.h -FILE: ../../../third_party/libcxx/benchmarks/Utilities.h -FILE: ../../../third_party/libcxx/benchmarks/VariantBenchmarks.h -FILE: ../../../third_party/libcxx/benchmarks/algorithms/common.h -FILE: ../../../third_party/libcxx/benchmarks/algorithms/lower_bound.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/algorithms/make_heap.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/algorithms/make_heap_then_sort_heap.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/algorithms/min_max_element.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/algorithms/pop_heap.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/algorithms/push_heap.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/algorithms/ranges_sort.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/algorithms/ranges_stable_sort.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/algorithms/sort.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/algorithms/sort_heap.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/algorithms/stable_sort.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/allocation.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/deque.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/format.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/format_to.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/format_to_n.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/formatted_size.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/formatter_float.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/function.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/map.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/ordered_set.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/random.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/std_format_spec_string_unicode.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/to_chars.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/util_smartptr.bench.cpp +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/charconv.cpp +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/include/ryu/common.h +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/include/ryu/d2fixed.h +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/include/ryu/d2fixed_full_table.h +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/include/ryu/d2s.h +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/include/ryu/d2s_full_table.h +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/include/ryu/d2s_intrinsics.h +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/include/ryu/digit_table.h +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/include/ryu/f2s.h +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/include/ryu/ryu.h +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/include/to_chars_floating_point.h +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/ryu/d2fixed.cpp +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/ryu/d2s.cpp +ORIGIN: Apache-2.0 WITH LLVM-exception referenced by ../../../third_party/libcxx/src/ryu/f2s.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/adjacent_find.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/all_of.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/any_of.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/binary_search.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/clamp.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/comp.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/comp_ref_type.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/copy.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/copy_backward.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/copy_if.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/copy_n.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/count.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/count_if.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/equal.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/equal_range.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/fill.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/fill_n.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/find.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/find_end.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/find_first_of.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/find_if.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/find_if_not.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/for_each.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/for_each_n.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/generate.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/generate_n.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/half_positive.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/in_found_result.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/in_fun_result.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/in_in_out_result.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/in_in_result.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/in_out_out_result.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/in_out_result.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/includes.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/inplace_merge.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/is_heap.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/is_heap_until.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/is_partitioned.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/is_permutation.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/is_sorted.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/is_sorted_until.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/iter_swap.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/iterator_operations.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/lexicographical_compare.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/lower_bound.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/make_heap.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/make_projected.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/max.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/max_element.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/merge.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/min.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/min_element.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/min_max_result.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/minmax.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/minmax_element.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/mismatch.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/move.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/move_backward.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/next_permutation.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/none_of.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/nth_element.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/partial_sort.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/partial_sort_copy.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/partition.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/partition_copy.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/partition_point.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/pop_heap.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/prev_permutation.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/push_heap.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_adjacent_find.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_all_of.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_any_of.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_binary_search.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_copy.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_copy_backward.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_copy_if.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_copy_n.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_count.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_count_if.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_equal.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_fill.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_fill_n.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_find.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_find_first_of.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_find_if.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_find_if_not.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_for_each.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_for_each_n.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_is_partitioned.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_is_sorted.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_is_sorted_until.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_lexicographical_compare.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_lower_bound.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_max.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_max_element.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_merge.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_min.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_min_element.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_minmax.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_minmax_element.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_mismatch.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_move.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_move_backward.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_none_of.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_nth_element.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_remove.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_remove_if.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_replace.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_replace_if.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_reverse.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_set_difference.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_sort.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_stable_sort.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_swap_ranges.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_transform.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/ranges_upper_bound.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/remove.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/remove_copy.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/remove_copy_if.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/remove_if.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/replace.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/replace_copy.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/replace_copy_if.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/replace_if.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/reverse.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/reverse_copy.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/rotate.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/rotate_copy.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/sample.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/search.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/search_n.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/set_difference.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/set_intersection.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/set_symmetric_difference.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/set_union.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/shift_left.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/shift_right.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/shuffle.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/sift_down.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/sort.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/sort_heap.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/stable_partition.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/stable_sort.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/swap_ranges.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/transform.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/unique.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/unique_copy.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/unwrap_iter.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__algorithm/upper_bound.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__assert +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__availability +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__bit/bit_cast.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__bit/byteswap.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__bit_reference +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__bits +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__bsd_locale_defaults.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__bsd_locale_fallbacks.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__charconv/chars_format.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__charconv/from_chars_result.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__charconv/tables.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__charconv/to_chars_base_10.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__charconv/to_chars_result.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/calendar.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/convert_to_timespec.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/day.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/duration.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/file_clock.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/hh_mm_ss.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/high_resolution_clock.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/literals.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/month.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/month_weekday.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/monthday.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/steady_clock.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/system_clock.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/time_point.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/weekday.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/year.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/year_month.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/year_month_day.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__chrono/year_month_weekday.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__compare/common_comparison_category.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__compare/compare_partial_order_fallback.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__compare/compare_strong_order_fallback.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__compare/compare_three_way.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__compare/compare_three_way_result.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__compare/compare_weak_order_fallback.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__compare/is_eq.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__compare/ordering.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__compare/partial_order.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__compare/strong_order.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__compare/synth_three_way.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__compare/three_way_comparable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__compare/weak_order.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/arithmetic.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/assignable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/boolean_testable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/class_or_enum.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/common_reference_with.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/common_with.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/constructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/convertible_to.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/copyable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/derived_from.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/destructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/different_from.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/equality_comparable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/invocable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/movable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/predicate.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/regular.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/relation.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/same_as.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/semiregular.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/swappable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__concepts/totally_ordered.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__config +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__config_site.in +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__coroutine/coroutine_handle.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__coroutine/coroutine_traits.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__coroutine/noop_coroutine_handle.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__coroutine/trivial_awaitables.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__debug +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__debug_utils/randomize_range.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__errc +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/copy_options.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/directory_entry.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/directory_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/directory_options.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/file_status.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/file_time_type.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/file_type.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/filesystem_error.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/operations.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/path.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/path_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/perm_options.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/perms.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/recursive_directory_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/space_info.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__filesystem/u8path.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/buffer.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/concepts.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/enable_insertable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/format_arg.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/format_arg_store.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/format_args.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/format_context.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/format_error.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/format_fwd.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/format_parse_context.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/format_string.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/format_to_n_result.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/formatter.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/formatter_bool.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/formatter_char.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/formatter_floating_point.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/formatter_integer.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/formatter_integral.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/formatter_output.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/formatter_pointer.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/formatter_string.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__format/parser_std_format_spec.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/binary_function.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/binary_negate.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/bind.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/bind_back.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/bind_front.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/binder1st.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/binder2nd.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/boyer_moore_searcher.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/compose.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/default_searcher.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/function.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/hash.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/identity.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/invoke.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/is_transparent.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/mem_fn.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/mem_fun_ref.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/not_fn.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/operations.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/perfect_forward.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/pointer_to_binary_function.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/pointer_to_unary_function.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/ranges_operations.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/reference_wrapper.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/unary_function.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/unary_negate.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/unwrap_ref.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__functional/weak_result_type.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__fwd/span.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__fwd/string_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__hash_table +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ios/fpos.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/access.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/advance.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/back_insert_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/bounded_iter.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/common_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/concepts.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/counted_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/data.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/default_sentinel.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/distance.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/empty.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/erase_if_container.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/front_insert_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/incrementable_traits.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/indirectly_comparable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/insert_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/istream_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/istreambuf_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/iter_move.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/iter_swap.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/iterator_traits.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/mergeable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/move_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/move_sentinel.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/next.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/ostream_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/ostreambuf_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/permutable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/prev.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/projected.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/readable_traits.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/reverse_access.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/reverse_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/size.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/sortable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/unreachable_sentinel.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__iterator/wrap_iter.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__locale +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__mbstate_t.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/addressof.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/allocate_at_least.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/allocation_guard.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/allocator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/allocator_arg_t.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/allocator_traits.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/assume_aligned.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/auto_ptr.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/compressed_pair.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/concepts.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/construct_at.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/pointer_traits.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/ranges_construct_at.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/ranges_uninitialized_algorithms.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/raw_storage_iterator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/shared_ptr.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/temporary_buffer.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/uninitialized_algorithms.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/unique_ptr.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/uses_allocator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__memory/voidify.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__mutex_base +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__node_handle +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__numeric/accumulate.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__numeric/adjacent_difference.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__numeric/exclusive_scan.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__numeric/gcd_lcm.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__numeric/inclusive_scan.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__numeric/inner_product.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__numeric/iota.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__numeric/midpoint.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__numeric/partial_sum.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__numeric/reduce.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__numeric/transform_exclusive_scan.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__numeric/transform_inclusive_scan.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__numeric/transform_reduce.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/bernoulli_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/binomial_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/cauchy_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/chi_squared_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/clamp_to_integral.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/default_random_engine.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/discard_block_engine.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/discrete_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/exponential_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/extreme_value_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/fisher_f_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/gamma_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/generate_canonical.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/geometric_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/independent_bits_engine.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/is_seed_sequence.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/is_valid.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/knuth_b.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/linear_congruential_engine.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/log2.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/lognormal_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/mersenne_twister_engine.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/negative_binomial_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/normal_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/piecewise_constant_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/piecewise_linear_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/poisson_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/random_device.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/ranlux.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/seed_seq.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/shuffle_order_engine.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/student_t_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/subtract_with_carry_engine.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/uniform_int_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/uniform_random_bit_generator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/uniform_real_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__random/weibull_distribution.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/access.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/all.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/common_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/concepts.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/copyable_box.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/counted.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/dangling.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/data.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/drop_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/empty.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/empty_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/enable_borrowed_range.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/enable_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/filter_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/iota_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/join_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/lazy_split_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/non_propagating_cache.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/owning_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/range_adaptor.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/rbegin.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/ref_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/rend.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/reverse_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/single_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/size.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/subrange.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/take_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/transform_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/view_interface.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/views.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__ranges/zip_view.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__split_buffer +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__std_stream +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__string/char_traits.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__string/extern_template_lists.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/android/locale_bionic.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/fuchsia/xlocale.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/ibm/gettod_zos.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/ibm/limits.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/ibm/locale_mgmt_zos.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/ibm/nanosleep.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/ibm/support.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/ibm/xlocale.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/musl/xlocale.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/newlib/xlocale.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/openbsd/xlocale.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/solaris/floatingpoint.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/solaris/wchar.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/solaris/xlocale.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/win32/limits_msvc_win32.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/win32/locale_win32.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/xlocale/__nop_locale_mgmt.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/xlocale/__posix_l_fallback.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__support/xlocale/__strtonum_fallback.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__thread/poll_with_backoff.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__thread/timed_backoff_policy.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__threading_support +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__tree +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__tuple +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/add_const.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/add_cv.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/add_lvalue_reference.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/add_pointer.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/add_rvalue_reference.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/add_volatile.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/alignment_of.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/apply_cv.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/conditional.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/conjunction.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/decay.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/disjunction.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/enable_if.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/extent.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/has_unique_object_representation.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/has_virtual_destructor.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/integral_constant.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_abstract.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_aggregate.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_arithmetic.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_array.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_assignable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_base_of.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_bounded_array.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_callable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_class.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_compound.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_const.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_constant_evaluated.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_constructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_convertible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_copy_assignable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_copy_constructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_core_convertible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_default_constructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_destructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_empty.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_enum.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_final.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_floating_point.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_function.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_fundamental.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_integral.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_literal_type.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_member_function_pointer.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_member_object_pointer.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_member_pointer.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_move_assignable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_move_constructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_nothrow_assignable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_nothrow_constructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_nothrow_copy_assignable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_nothrow_copy_constructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_nothrow_default_constructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_nothrow_destructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_nothrow_move_assignable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_nothrow_move_constructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_null_pointer.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_object.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_pod.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_pointer.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_polymorphic.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_reference.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_reference_wrapper.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_referenceable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_same.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_scalar.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_scoped_enum.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_signed.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_standard_layout.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_trivial.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_trivially_assignable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_trivially_constructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_trivially_copy_assignable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_trivially_copy_constructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_trivially_copyable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_trivially_default_constructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_trivially_destructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_trivially_move_assignable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_trivially_move_constructible.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_unbounded_array.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_union.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_unsigned.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_void.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/is_volatile.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/negation.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/rank.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/remove_all_extents.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/remove_const.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/remove_cv.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/remove_extent.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/remove_pointer.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/remove_reference.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/remove_volatile.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/type_identity.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/underlying_type.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__type_traits/void_t.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__undef_macros +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/as_const.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/auto_cast.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/cmp.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/declval.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/exchange.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/forward.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/in_place.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/integer_sequence.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/move.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/pair.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/piecewise_construct.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/priority_tag.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/rel_ops.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/swap.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/to_underlying.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/transaction.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__utility/unreachable.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/__variant/monostate.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/algorithm +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/any +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/array +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/atomic +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/barrier +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/bit +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/bitset +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cassert +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/ccomplex +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cctype +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cerrno +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cfenv +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cfloat +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/charconv +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/chrono +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cinttypes +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/ciso646 +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/climits +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/clocale +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cmath +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/codecvt +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/compare +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/complex +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/complex.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/concepts +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/condition_variable +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/coroutine +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/csetjmp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/csignal +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cstdarg +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cstdbool +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cstddef +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cstdint +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cstdio +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cstdlib +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cstring +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/ctgmath +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/ctime +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/ctype.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cuchar +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cwchar +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/cwctype +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/deque +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/errno.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/exception +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/execution +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/__config +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/__memory +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/algorithm +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/coroutine +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/deque +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/forward_list +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/functional +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/iterator +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/list +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/map +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/memory_resource +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/propagate_const +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/regex +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/set +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/simd +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/string +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/type_traits +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/unordered_map +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/unordered_set +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/utility +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/experimental/vector +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/ext/__hash +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/ext/hash_map +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/ext/hash_set +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/fenv.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/filesystem +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/float.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/format +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/forward_list +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/fstream +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/functional +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/future +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/initializer_list +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/inttypes.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/iomanip +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/ios +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/iosfwd +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/iostream +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/istream +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/iterator +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/latch +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/limits +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/limits.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/list +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/locale +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/locale.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/map +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/math.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/memory +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/mutex +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/new +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/numbers +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/numeric +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/optional +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/ostream +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/queue +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/random +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/ranges +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/ratio +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/regex +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/scoped_allocator +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/semaphore +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/set +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/setjmp.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/shared_mutex +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/span +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/sstream +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/stack +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/stdatomic.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/stdbool.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/stddef.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/stdexcept +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/stdint.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/stdio.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/stdlib.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/streambuf +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/string +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/string.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/string_view +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/strstream +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/system_error +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/tgmath.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/thread +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/tuple +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/type_traits +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/typeindex +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/typeinfo +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/uchar.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/unordered_map +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/unordered_set +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/utility +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/valarray +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/variant +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/vector +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/wchar.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/include/wctype.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/algorithm.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/any.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/assert.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/atomic.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/barrier.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/bind.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/charconv.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/chrono.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/condition_variable.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/condition_variable_destructor.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/debug.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/exception.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/experimental/memory_resource.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/filesystem/directory_iterator.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/filesystem/filesystem_common.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/filesystem/int128_builtins.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/filesystem/operations.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/filesystem/posix_compat.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/format.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/functional.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/future.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/hash.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/apple_availability.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/atomic_support.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/config_elast.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/refstring.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/ryu/common.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/ryu/d2fixed.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/ryu/d2fixed_full_table.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/ryu/d2s.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/ryu/d2s_full_table.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/ryu/d2s_intrinsics.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/ryu/digit_table.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/ryu/f2s.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/ryu/ryu.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/sso_allocator.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/include/to_chars_floating_point.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/ios.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/ios.instantiations.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/iostream.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/legacy_debug_handler.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/legacy_pointer_safety.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/locale.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/memory.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/mutex.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/mutex_destructor.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/new.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/optional.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/random.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/random_shuffle.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/regex.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/ryu/d2fixed.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/ryu/d2s.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/ryu/f2s.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/shared_mutex.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/stdexcept.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/string.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/strstream.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/ibm/mbsnrtowcs.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/ibm/wcsnrtombs.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/ibm/xlocale_zos.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/runtime/exception_fallback.ipp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/runtime/exception_glibcxx.ipp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/runtime/exception_libcxxabi.ipp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/runtime/exception_libcxxrt.ipp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/runtime/exception_msvc.ipp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/runtime/exception_pointer_cxxabi.ipp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/runtime/exception_pointer_glibcxx.ipp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/runtime/exception_pointer_msvc.ipp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/runtime/exception_pointer_unimplemented.ipp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/runtime/new_handler_fallback.ipp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/runtime/stdexcept_default.ipp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/runtime/stdexcept_vcruntime.ipp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/win32/locale_win32.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/win32/support.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/support/win32/thread_win32.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/system_error.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/thread.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/typeinfo.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/utility.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/valarray.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/variant.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxx/src/vector.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/include/__cxxabi_config.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/include/cxxabi.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/abort_message.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/abort_message.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/aix_state_tab_eh.inc +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_aux_runtime.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_default_handlers.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_demangle.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_exception.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_exception.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_exception_storage.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_guard.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_guard_impl.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_handlers.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_handlers.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_noexception.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_personality.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_thread_atexit.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_vector.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/cxa_virtual.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/demangle/DemangleConfig.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/demangle/ItaniumDemangle.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/demangle/ItaniumNodes.def +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/demangle/StringView.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/demangle/Utility.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/fallback_malloc.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/fallback_malloc.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/private_typeinfo.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/private_typeinfo.h +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/stdlib_exception.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/stdlib_new_delete.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/stdlib_stdexcept.cpp +ORIGIN: https://llvm.org/LICENSE.txt referenced by ../../../third_party/libcxxabi/src/stdlib_typeinfo.cpp +TYPE: LicenseType.llvm FILE: ../../../third_party/libcxx/include/__algorithm/adjacent_find.h FILE: ../../../third_party/libcxx/include/__algorithm/all_of.h FILE: ../../../third_party/libcxx/include/__algorithm/any_of.h @@ -3189,7 +6997,6 @@ FILE: ../../../third_party/libcxx/include/utility FILE: ../../../third_party/libcxx/include/valarray FILE: ../../../third_party/libcxx/include/variant FILE: ../../../third_party/libcxx/include/vector -FILE: ../../../third_party/libcxx/include/version FILE: ../../../third_party/libcxx/include/wchar.h FILE: ../../../third_party/libcxx/include/wctype.h FILE: ../../../third_party/libcxx/src/algorithm.cpp @@ -3311,7 +7118,7 @@ FILE: ../../../third_party/libcxxabi/src/stdlib_typeinfo.cpp ---------------------------------------------------------------------------------------------------- Apache License Version 2.0, January 2004 -http://www.apache.org/licenses +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -3511,6 +7318,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + --- LLVM Exceptions to the Apache 2.0 License ---- As an exception, if, as a result of your compiling your source code, portions @@ -3532,11 +7340,6 @@ Software. LIBRARY: abseil-cpp ORIGIN: ../../../third_party/abseil-cpp/LICENSE TYPE: LicenseType.apache -FILE: ../../../third_party/abseil-cpp/CMake/Googletest/CMakeLists.txt.in -FILE: ../../../third_party/abseil-cpp/CMake/abslConfig.cmake.in -FILE: ../../../third_party/abseil-cpp/DIR_METADATA -FILE: ../../../third_party/abseil-cpp/absl/copts/GENERATED_copts.bzl -FILE: ../../../third_party/abseil-cpp/absl/copts/configure_copts.bzl FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc FILE: ../../../third_party/abseil-cpp/absl/debugging/internal/stacktrace_unimplemented-inl.inc FILE: ../../../third_party/abseil-cpp/absl/flags/flag_benchmark.lds @@ -3557,7 +7360,7 @@ FILE: ../../../third_party/abseil-cpp/symbols_x86_rel.def ---------------------------------------------------------------------------------------------------- Apache License Version 2.0, January 2004 -https://www.apache.org/licenses +https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -3759,304 +7562,235 @@ limitations under the License. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/internal.h -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/internal.h -FILE: ../../../third_party/boringssl/src/crypto/obj/obj_dat.h -FILE: ../../../third_party/boringssl/src/include/openssl/bn.h -FILE: ../../../third_party/boringssl/src/include/openssl/nid.h -FILE: ../../../third_party/boringssl/src/include/openssl/pem.h +LIBRARY: libpng +ORIGIN: ../../../third_party/libpng/LICENSE +ORIGIN: ../../../third_party/libpng/png.h +TYPE: LicenseType.libpng +FILE: ../../../third_party/libpng/arm/arm_init.c +FILE: ../../../third_party/libpng/arm/filter_neon.S +FILE: ../../../third_party/libpng/arm/filter_neon_intrinsics.c +FILE: ../../../third_party/libpng/arm/palette_neon_intrinsics.c +FILE: ../../../third_party/libpng/config.h.in +FILE: ../../../third_party/libpng/example.c +FILE: ../../../third_party/libpng/intel/filter_sse2_intrinsics.c +FILE: ../../../third_party/libpng/intel/intel_init.c +FILE: ../../../third_party/libpng/libpng.3 +FILE: ../../../third_party/libpng/libpng.pc.in +FILE: ../../../third_party/libpng/libpngpf.3 +FILE: ../../../third_party/libpng/png.c +FILE: ../../../third_party/libpng/png.h +FILE: ../../../third_party/libpng/pngbar.jpg +FILE: ../../../third_party/libpng/pngbar.png +FILE: ../../../third_party/libpng/pngconf.h +FILE: ../../../third_party/libpng/pngdebug.h +FILE: ../../../third_party/libpng/pngerror.c +FILE: ../../../third_party/libpng/pngget.c +FILE: ../../../third_party/libpng/pnginfo.h +FILE: ../../../third_party/libpng/pnglibconf.h +FILE: ../../../third_party/libpng/pngmem.c +FILE: ../../../third_party/libpng/pngnow.png +FILE: ../../../third_party/libpng/pngpread.c +FILE: ../../../third_party/libpng/pngprefix.h +FILE: ../../../third_party/libpng/pngpriv.h +FILE: ../../../third_party/libpng/pngread.c +FILE: ../../../third_party/libpng/pngrio.c +FILE: ../../../third_party/libpng/pngrtran.c +FILE: ../../../third_party/libpng/pngrutil.c +FILE: ../../../third_party/libpng/pngset.c +FILE: ../../../third_party/libpng/pngstruct.h +FILE: ../../../third_party/libpng/pngtest.c +FILE: ../../../third_party/libpng/pngtest.png +FILE: ../../../third_party/libpng/pngtrans.c +FILE: ../../../third_party/libpng/pngusr.dfa +FILE: ../../../third_party/libpng/pngwio.c +FILE: ../../../third_party/libpng/pngwrite.c +FILE: ../../../third_party/libpng/pngwtran.c +FILE: ../../../third_party/libpng/pngwutil.c ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) -All rights reserved. +COPYRIGHT NOTICE, DISCLAIMER, and LICENSE +========================================= + +PNG Reference Library License version 2 +--------------------------------------- + +* Copyright (c) 1995-2019 The PNG Reference Library Authors. +* Copyright (c) 2018-2019 Cosmin Truta. +* Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. +* Copyright (c) 1996-1997 Andreas Dilger. +* Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +The software is supplied "as is", without warranty of any kind, +express or implied, including, without limitation, the warranties +of merchantability, fitness for a particular purpose, title, and +non-infringement. In no event shall the Copyright owners, or +anyone distributing the software, be liable for any damages or +other liability, whether in contract, tort or otherwise, arising +from, out of, or in connection with the software, or the use or +other dealings in the software, even if advised of the possibility +of such damage. + +Permission is hereby granted to use, copy, modify, and distribute +this software, or portions hereof, for any purpose, without fee, +subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you + use this software in a product, an acknowledgment in the product + documentation would be appreciated, but is not required. + +2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + +3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + + +PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35) +----------------------------------------------------------------------- + +libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are +Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are +derived from libpng-1.0.6, and are distributed according to the same +disclaimer and license as libpng-1.0.6 with the following individuals +added to the list of Contributing Authors: + + Simon-Pierre Cadieux + Eric S. Raymond + Mans Rullgard + Cosmin Truta + Gilles Vollant + James Yu + Mandar Sahastrabuddhe + Google Inc. + Vadim Barkov + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of + the library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is + with the user. + +Some files in the "contrib" directory and some configure-generated +files that are distributed with libpng have other copyright owners, and +are released under other open source licenses. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from +libpng-0.96, and are distributed according to the same disclaimer and +license as libpng-0.96, with the following individuals added to the +list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, +and are distributed according to the same disclaimer and license as +libpng-0.88, with the following individuals added to the list of +Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +Some files in the "scripts" directory have other copyright owners, +but are released under this license. + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing +Authors and Group 42, Inc. disclaim all warranties, expressed or +implied, including, without limitation, the warranties of +merchantability and of fitness for any purpose. The Contributing +Authors and Group 42, Inc. assume no liability for direct, indirect, +incidental, special, exemplary, or consequential damages, which may +result from the use of the PNG Reference Library, even if advised of +the possibility of such damage. -This package is an SSL implementation written -by Eric Young (eay@cryptsoft.com). -The implementation was written so as to conform with Netscapes SSL. +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: -This library is free for commercial and non-commercial use as long as -the following conditions are aheared to. The following conditions -apply to all code found in this distribution, be it the RC4, RSA, -lhash, DES, etc., code; not just the SSL code. The SSL documentation -included with this distribution is covered by the same copyright terms -except that the holder is Tim Hudson (tjh@cryptsoft.com). +1. The origin of this source code must not be misrepresented. -Copyright remains Eric Young's, and as such any Copyright notices in -the code are not to be removed. -If this package is used in a product, Eric Young should be given attribution -as the author of the parts of the library used. -This can be in the form of a textual message at program startup or -in documentation (online or textual) provided with the package. +2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - "This product includes cryptographic software written by - Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from - the apps directory (application code) you must include an acknowledgement: - "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" +3. This Copyright notice may not be removed or altered from any + source or altered source distribution. -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. +The Contributing Authors and Group 42, Inc. specifically permit, +without fee, and encourage the use of this source code as a component +to supporting the PNG file format in commercial products. If you use +this source code in a product, acknowledgment is not required but would +be appreciated. +==================================================================================================== -The licence and distribution terms for any publically available version or -derivative of this code cannot be changed. i.e. this code cannot simply be -copied and put under another distribution licence -[including the GNU Public Licence.] +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/rdcolmap.c +ORIGIN: ../../../third_party/libjpeg-turbo/rdppm.c +TYPE: LicenseType.unknown +FILE: ../../../third_party/libjpeg-turbo/rdcolmap.c +FILE: ../../../third_party/libjpeg-turbo/rdppm.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 1988 by Jef Poskanzer. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided +that the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. This software is provided "as is" without express or +implied warranty. +==================================================================================================== + +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/wrgif.c +TYPE: LicenseType.unknown +FILE: ../../../third_party/libjpeg-turbo/wrgif.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 1989 by Jef Poskanzer. +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided +that the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. This software is provided "as is" without express or +implied warranty. ==================================================================================================== ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_bitstr.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/obj/obj_dat.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/bn.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/nid.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/pem.h TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_bitstr.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_bool.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_d2i_fp.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_dup.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_enum.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_gentm.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_i2d_fp.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_int.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_mbstr.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_object.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_octet.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_print.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_strex.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_strnid.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_time.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_type.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_utctm.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_utf8.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/asn1_lib.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/asn1_par.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/asn_pack.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/f_enum.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/f_int.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/f_string.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_dec.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_enc.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_fre.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_new.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_typ.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_utl.c -FILE: ../../../third_party/boringssl/src/crypto/base64/base64.c -FILE: ../../../third_party/boringssl/src/crypto/bio/bio.c -FILE: ../../../third_party/boringssl/src/crypto/bio/bio_mem.c -FILE: ../../../third_party/boringssl/src/crypto/bio/connect.c -FILE: ../../../third_party/boringssl/src/crypto/bio/fd.c -FILE: ../../../third_party/boringssl/src/crypto/bio/file.c -FILE: ../../../third_party/boringssl/src/crypto/bio/hexdump.c -FILE: ../../../third_party/boringssl/src/crypto/bio/internal.h -FILE: ../../../third_party/boringssl/src/crypto/bio/printf.c -FILE: ../../../third_party/boringssl/src/crypto/bio/socket.c -FILE: ../../../third_party/boringssl/src/crypto/bn_extra/convert.c -FILE: ../../../third_party/boringssl/src/crypto/buf/buf.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/cipher_extra.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/derive_key.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_null.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_rc2.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_rc4.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/internal.h -FILE: ../../../third_party/boringssl/src/crypto/conf/conf.c -FILE: ../../../third_party/boringssl/src/crypto/conf/conf_def.h -FILE: ../../../third_party/boringssl/src/crypto/cpu-intel.c -FILE: ../../../third_party/boringssl/src/crypto/dh_extra/dh_test.cc -FILE: ../../../third_party/boringssl/src/crypto/digest_extra/digest_extra.c -FILE: ../../../third_party/boringssl/src/crypto/dsa/dsa.c -FILE: ../../../third_party/boringssl/src/crypto/dsa/dsa_test.cc -FILE: ../../../third_party/boringssl/src/crypto/err/err.c -FILE: ../../../third_party/boringssl/src/crypto/evp/evp.c -FILE: ../../../third_party/boringssl/src/crypto/evp/evp_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/evp/evp_ctx.c -FILE: ../../../third_party/boringssl/src/crypto/evp/internal.h -FILE: ../../../third_party/boringssl/src/crypto/evp/sign.c -FILE: ../../../third_party/boringssl/src/crypto/ex_data.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/add.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn_test.cc -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bytes.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/cmp.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/div.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/exponentiation.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/gcd.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/generic.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/montgomery.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/mul.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/prime.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/random.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/shift.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/cipher.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/e_des.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/des/des.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/des/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/dh/check.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/dh/dh.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/digest.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/digests.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/hmac/hmac.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/md4/md4.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/md5/md5.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/blinding.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/rsa.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/rsa_impl.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha1-altivec.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha1.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha256.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha512.c -FILE: ../../../third_party/boringssl/src/crypto/hmac_extra/hmac_test.cc -FILE: ../../../third_party/boringssl/src/crypto/internal.h -FILE: ../../../third_party/boringssl/src/crypto/lhash/internal.h -FILE: ../../../third_party/boringssl/src/crypto/lhash/lhash.c -FILE: ../../../third_party/boringssl/src/crypto/mem.c -FILE: ../../../third_party/boringssl/src/crypto/obj/obj.c -FILE: ../../../third_party/boringssl/src/crypto/obj/obj_xref.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_all.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_info.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_lib.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_oth.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_pk8.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_pkey.c -FILE: ../../../third_party/boringssl/src/crypto/rc4/rc4.c -FILE: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_test.cc -FILE: ../../../third_party/boringssl/src/crypto/stack/stack.c -FILE: ../../../third_party/boringssl/src/crypto/thread.c -FILE: ../../../third_party/boringssl/src/crypto/x509/a_digest.c -FILE: ../../../third_party/boringssl/src/crypto/x509/a_sign.c -FILE: ../../../third_party/boringssl/src/crypto/x509/a_verify.c -FILE: ../../../third_party/boringssl/src/crypto/x509/algorithm.c -FILE: ../../../third_party/boringssl/src/crypto/x509/asn1_gen.c -FILE: ../../../third_party/boringssl/src/crypto/x509/by_dir.c -FILE: ../../../third_party/boringssl/src/crypto/x509/by_file.c -FILE: ../../../third_party/boringssl/src/crypto/x509/i2d_pr.c -FILE: ../../../third_party/boringssl/src/crypto/x509/name_print.c -FILE: ../../../third_party/boringssl/src/crypto/x509/t_crl.c -FILE: ../../../third_party/boringssl/src/crypto/x509/t_req.c -FILE: ../../../third_party/boringssl/src/crypto/x509/t_x509.c -FILE: ../../../third_party/boringssl/src/crypto/x509/t_x509a.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_att.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_cmp.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_d2.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_def.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_ext.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_lu.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_obj.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_req.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_set.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_txt.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_v3.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_vfy.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509name.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509rset.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_all.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_attrib.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_crl.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_exten.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_info.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_name.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_pkey.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_pubkey.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_req.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_sig.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_spki.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_val.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_x509.c -FILE: ../../../third_party/boringssl/src/decrepit/bio/base64_bio.c -FILE: ../../../third_party/boringssl/src/decrepit/blowfish/blowfish.c -FILE: ../../../third_party/boringssl/src/decrepit/cast/cast.c -FILE: ../../../third_party/boringssl/src/decrepit/cast/cast_tables.c -FILE: ../../../third_party/boringssl/src/decrepit/cast/internal.h -FILE: ../../../third_party/boringssl/src/decrepit/des/cfb64ede.c -FILE: ../../../third_party/boringssl/src/decrepit/macros.h -FILE: ../../../third_party/boringssl/src/decrepit/rc4/rc4_decrepit.c -FILE: ../../../third_party/boringssl/src/decrepit/ripemd/ripemd.c -FILE: ../../../third_party/boringssl/src/decrepit/rsa/rsa_decrepit.c -FILE: ../../../third_party/boringssl/src/decrepit/ssl/ssl_decrepit.c -FILE: ../../../third_party/boringssl/src/include/openssl/asn1.h -FILE: ../../../third_party/boringssl/src/include/openssl/base64.h -FILE: ../../../third_party/boringssl/src/include/openssl/bio.h -FILE: ../../../third_party/boringssl/src/include/openssl/blowfish.h -FILE: ../../../third_party/boringssl/src/include/openssl/buf.h -FILE: ../../../third_party/boringssl/src/include/openssl/cast.h -FILE: ../../../third_party/boringssl/src/include/openssl/cipher.h -FILE: ../../../third_party/boringssl/src/include/openssl/conf.h -FILE: ../../../third_party/boringssl/src/include/openssl/cpu.h -FILE: ../../../third_party/boringssl/src/include/openssl/des.h -FILE: ../../../third_party/boringssl/src/include/openssl/dh.h -FILE: ../../../third_party/boringssl/src/include/openssl/digest.h -FILE: ../../../third_party/boringssl/src/include/openssl/dsa.h -FILE: ../../../third_party/boringssl/src/include/openssl/err.h -FILE: ../../../third_party/boringssl/src/include/openssl/evp.h -FILE: ../../../third_party/boringssl/src/include/openssl/evp_errors.h -FILE: ../../../third_party/boringssl/src/include/openssl/ex_data.h -FILE: ../../../third_party/boringssl/src/include/openssl/hmac.h -FILE: ../../../third_party/boringssl/src/include/openssl/lhash.h -FILE: ../../../third_party/boringssl/src/include/openssl/md4.h -FILE: ../../../third_party/boringssl/src/include/openssl/md5.h -FILE: ../../../third_party/boringssl/src/include/openssl/mem.h -FILE: ../../../third_party/boringssl/src/include/openssl/obj.h -FILE: ../../../third_party/boringssl/src/include/openssl/rc4.h -FILE: ../../../third_party/boringssl/src/include/openssl/ripemd.h -FILE: ../../../third_party/boringssl/src/include/openssl/rsa.h -FILE: ../../../third_party/boringssl/src/include/openssl/sha.h -FILE: ../../../third_party/boringssl/src/include/openssl/ssl.h -FILE: ../../../third_party/boringssl/src/include/openssl/ssl3.h -FILE: ../../../third_party/boringssl/src/include/openssl/stack.h -FILE: ../../../third_party/boringssl/src/include/openssl/thread.h -FILE: ../../../third_party/boringssl/src/include/openssl/tls1.h -FILE: ../../../third_party/boringssl/src/include/openssl/type_check.h -FILE: ../../../third_party/boringssl/src/include/openssl/x509.h -FILE: ../../../third_party/boringssl/src/include/openssl/x509_vfy.h -FILE: ../../../third_party/boringssl/src/ssl/d1_both.cc -FILE: ../../../third_party/boringssl/src/ssl/d1_pkt.cc -FILE: ../../../third_party/boringssl/src/ssl/d1_srtp.cc -FILE: ../../../third_party/boringssl/src/ssl/dtls_record.cc -FILE: ../../../third_party/boringssl/src/ssl/extensions.cc -FILE: ../../../third_party/boringssl/src/ssl/handshake.cc -FILE: ../../../third_party/boringssl/src/ssl/handshake_client.cc -FILE: ../../../third_party/boringssl/src/ssl/handshake_server.cc -FILE: ../../../third_party/boringssl/src/ssl/internal.h -FILE: ../../../third_party/boringssl/src/ssl/s3_both.cc -FILE: ../../../third_party/boringssl/src/ssl/s3_lib.cc -FILE: ../../../third_party/boringssl/src/ssl/s3_pkt.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_asn1.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_cert.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_cipher.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_file.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_lib.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_privkey.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_session.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_stat.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_transcript.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_x509.cc -FILE: ../../../third_party/boringssl/src/ssl/t1_enc.cc -FILE: ../../../third_party/boringssl/src/ssl/tls_method.cc -FILE: ../../../third_party/boringssl/src/ssl/tls_record.cc +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/internal.h +FILE: ../../../third_party/boringssl/src/crypto/obj/obj_dat.h +FILE: ../../../third_party/boringssl/src/include/openssl/bn.h +FILE: ../../../third_party/boringssl/src/include/openssl/nid.h +FILE: ../../../third_party/boringssl/src/include/openssl/pem.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) +Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) All rights reserved. This package is an SSL implementation written @@ -4113,66 +7847,17111 @@ copied and put under another distribution licence [including the GNU Public Licence.] ==================================================================================================== +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_bitstr.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_bool.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_d2i_fp.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_dup.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_enum.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_gentm.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_i2d_fp.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_int.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_mbstr.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_object.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_octet.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_print.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_strex.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_strnid.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_time.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_type.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_utctm.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_utf8.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/asn1_lib.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/asn1_par.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/asn_pack.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/f_enum.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/f_int.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/f_string.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/tasn_dec.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/tasn_enc.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/tasn_fre.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/tasn_new.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/tasn_typ.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/tasn_utl.c +ORIGIN: ../../../third_party/boringssl/src/crypto/base64/base64.c +ORIGIN: ../../../third_party/boringssl/src/crypto/bio/bio.c +ORIGIN: ../../../third_party/boringssl/src/crypto/bio/bio_mem.c +ORIGIN: ../../../third_party/boringssl/src/crypto/bio/connect.c +ORIGIN: ../../../third_party/boringssl/src/crypto/bio/fd.c +ORIGIN: ../../../third_party/boringssl/src/crypto/bio/file.c +ORIGIN: ../../../third_party/boringssl/src/crypto/bio/hexdump.c +ORIGIN: ../../../third_party/boringssl/src/crypto/bio/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/bio/printf.c +ORIGIN: ../../../third_party/boringssl/src/crypto/bio/socket.c +ORIGIN: ../../../third_party/boringssl/src/crypto/bn_extra/convert.c +ORIGIN: ../../../third_party/boringssl/src/crypto/buf/buf.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/cipher_extra.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/derive_key.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/e_null.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/e_rc2.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/e_rc4.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/conf/conf.c +ORIGIN: ../../../third_party/boringssl/src/crypto/conf/conf_def.h +ORIGIN: ../../../third_party/boringssl/src/crypto/cpu-intel.c +ORIGIN: ../../../third_party/boringssl/src/crypto/digest_extra/digest_extra.c +ORIGIN: ../../../third_party/boringssl/src/crypto/dsa/dsa.c +ORIGIN: ../../../third_party/boringssl/src/crypto/err/err.c +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/evp.c +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/evp_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/evp_ctx.c +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/sign.c +ORIGIN: ../../../third_party/boringssl/src/crypto/ex_data.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/add.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bytes.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/cmp.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/div.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/exponentiation.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/gcd.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/generic.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/montgomery.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/mul.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/prime.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/random.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/shift.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/cipher.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/e_des.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/des/des.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/des/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/dh/check.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/dh/dh.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/digest.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/digests.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/hmac/hmac.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/md4/md4.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/md5/md5.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/blinding.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/rsa.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/rsa_impl.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha1-altivec.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha256.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha512.c +ORIGIN: ../../../third_party/boringssl/src/crypto/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/lhash/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/lhash/lhash.c +ORIGIN: ../../../third_party/boringssl/src/crypto/mem.c +ORIGIN: ../../../third_party/boringssl/src/crypto/obj/obj.c +ORIGIN: ../../../third_party/boringssl/src/crypto/obj/obj_xref.c +ORIGIN: ../../../third_party/boringssl/src/crypto/pem/pem_all.c +ORIGIN: ../../../third_party/boringssl/src/crypto/pem/pem_info.c +ORIGIN: ../../../third_party/boringssl/src/crypto/pem/pem_lib.c +ORIGIN: ../../../third_party/boringssl/src/crypto/pem/pem_oth.c +ORIGIN: ../../../third_party/boringssl/src/crypto/pem/pem_pk8.c +ORIGIN: ../../../third_party/boringssl/src/crypto/pem/pem_pkey.c +ORIGIN: ../../../third_party/boringssl/src/crypto/rc4/rc4.c +ORIGIN: ../../../third_party/boringssl/src/crypto/stack/stack.c +ORIGIN: ../../../third_party/boringssl/src/crypto/thread.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/a_digest.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/a_sign.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/a_verify.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/algorithm.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/asn1_gen.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/by_dir.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/by_file.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/i2d_pr.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/name_print.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/t_crl.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/t_req.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/t_x509.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/t_x509a.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_att.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_cmp.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_d2.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_def.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_ext.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_lu.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_obj.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_req.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_set.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_txt.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_v3.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_vfy.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509name.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509rset.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_all.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_attrib.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_crl.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_exten.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_info.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_name.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_pkey.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_pubkey.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_req.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_sig.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_spki.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_val.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_x509.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/bio/base64_bio.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/blowfish/blowfish.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/cast/cast.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/cast/cast_tables.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/cast/internal.h +ORIGIN: ../../../third_party/boringssl/src/decrepit/des/cfb64ede.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/macros.h +ORIGIN: ../../../third_party/boringssl/src/decrepit/rc4/rc4_decrepit.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/ripemd/ripemd.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/rsa/rsa_decrepit.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/ssl/ssl_decrepit.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/asn1.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/base64.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/bio.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/blowfish.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/buf.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/cast.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/cipher.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/conf.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/cpu.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/des.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/dh.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/digest.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/dsa.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/err.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/evp.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/evp_errors.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ex_data.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/hmac.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/lhash.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/md4.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/md5.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/mem.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/obj.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/rc4.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ripemd.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/rsa.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/sha.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ssl.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ssl3.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/stack.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/thread.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/tls1.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/type_check.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/x509.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/x509_vfy.h +ORIGIN: ../../../third_party/boringssl/src/ssl/d1_both.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/d1_pkt.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/d1_srtp.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/dtls_record.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/extensions.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/handshake.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/handshake_client.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/handshake_server.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/internal.h +ORIGIN: ../../../third_party/boringssl/src/ssl/s3_both.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/s3_lib.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/s3_pkt.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_asn1.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_cert.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_cipher.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_file.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_lib.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_privkey.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_session.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_stat.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_transcript.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_x509.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/t1_enc.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/tls_method.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/tls_record.cc +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_bitstr.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_bool.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_d2i_fp.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_dup.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_enum.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_gentm.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_i2d_fp.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_int.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_mbstr.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_object.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_octet.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_print.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_strex.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_strnid.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_time.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_type.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_utctm.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_utf8.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/asn1_lib.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/asn1_par.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/asn_pack.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/f_enum.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/f_int.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/f_string.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_dec.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_enc.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_fre.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_new.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_typ.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_utl.c +FILE: ../../../third_party/boringssl/src/crypto/base64/base64.c +FILE: ../../../third_party/boringssl/src/crypto/bio/bio.c +FILE: ../../../third_party/boringssl/src/crypto/bio/bio_mem.c +FILE: ../../../third_party/boringssl/src/crypto/bio/connect.c +FILE: ../../../third_party/boringssl/src/crypto/bio/fd.c +FILE: ../../../third_party/boringssl/src/crypto/bio/file.c +FILE: ../../../third_party/boringssl/src/crypto/bio/hexdump.c +FILE: ../../../third_party/boringssl/src/crypto/bio/internal.h +FILE: ../../../third_party/boringssl/src/crypto/bio/printf.c +FILE: ../../../third_party/boringssl/src/crypto/bio/socket.c +FILE: ../../../third_party/boringssl/src/crypto/bn_extra/convert.c +FILE: ../../../third_party/boringssl/src/crypto/buf/buf.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/cipher_extra.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/derive_key.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_null.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_rc2.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_rc4.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/internal.h +FILE: ../../../third_party/boringssl/src/crypto/conf/conf.c +FILE: ../../../third_party/boringssl/src/crypto/conf/conf_def.h +FILE: ../../../third_party/boringssl/src/crypto/cpu-intel.c +FILE: ../../../third_party/boringssl/src/crypto/digest_extra/digest_extra.c +FILE: ../../../third_party/boringssl/src/crypto/dsa/dsa.c +FILE: ../../../third_party/boringssl/src/crypto/err/err.c +FILE: ../../../third_party/boringssl/src/crypto/evp/evp.c +FILE: ../../../third_party/boringssl/src/crypto/evp/evp_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/evp/evp_ctx.c +FILE: ../../../third_party/boringssl/src/crypto/evp/internal.h +FILE: ../../../third_party/boringssl/src/crypto/evp/sign.c +FILE: ../../../third_party/boringssl/src/crypto/ex_data.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/add.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bytes.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/cmp.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/div.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/exponentiation.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/gcd.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/generic.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/montgomery.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/mul.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/prime.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/random.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/shift.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/cipher.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/e_des.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/internal.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/des/des.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/des/internal.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/dh/check.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/dh/dh.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/digest.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/digests.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/internal.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/hmac/hmac.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/md4/md4.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/md5/md5.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/blinding.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/internal.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/rsa.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/rsa_impl.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha1-altivec.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha1.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha256.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha512.c +FILE: ../../../third_party/boringssl/src/crypto/internal.h +FILE: ../../../third_party/boringssl/src/crypto/lhash/internal.h +FILE: ../../../third_party/boringssl/src/crypto/lhash/lhash.c +FILE: ../../../third_party/boringssl/src/crypto/mem.c +FILE: ../../../third_party/boringssl/src/crypto/obj/obj.c +FILE: ../../../third_party/boringssl/src/crypto/obj/obj_xref.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_all.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_info.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_lib.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_oth.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_pk8.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_pkey.c +FILE: ../../../third_party/boringssl/src/crypto/rc4/rc4.c +FILE: ../../../third_party/boringssl/src/crypto/stack/stack.c +FILE: ../../../third_party/boringssl/src/crypto/thread.c +FILE: ../../../third_party/boringssl/src/crypto/x509/a_digest.c +FILE: ../../../third_party/boringssl/src/crypto/x509/a_sign.c +FILE: ../../../third_party/boringssl/src/crypto/x509/a_verify.c +FILE: ../../../third_party/boringssl/src/crypto/x509/algorithm.c +FILE: ../../../third_party/boringssl/src/crypto/x509/asn1_gen.c +FILE: ../../../third_party/boringssl/src/crypto/x509/by_dir.c +FILE: ../../../third_party/boringssl/src/crypto/x509/by_file.c +FILE: ../../../third_party/boringssl/src/crypto/x509/i2d_pr.c +FILE: ../../../third_party/boringssl/src/crypto/x509/name_print.c +FILE: ../../../third_party/boringssl/src/crypto/x509/t_crl.c +FILE: ../../../third_party/boringssl/src/crypto/x509/t_req.c +FILE: ../../../third_party/boringssl/src/crypto/x509/t_x509.c +FILE: ../../../third_party/boringssl/src/crypto/x509/t_x509a.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_att.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_cmp.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_d2.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_def.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_ext.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_lu.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_obj.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_req.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_set.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_txt.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_v3.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_vfy.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509name.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509rset.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_all.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_attrib.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_crl.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_exten.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_info.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_name.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_pkey.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_pubkey.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_req.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_sig.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_spki.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_val.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_x509.c +FILE: ../../../third_party/boringssl/src/decrepit/bio/base64_bio.c +FILE: ../../../third_party/boringssl/src/decrepit/blowfish/blowfish.c +FILE: ../../../third_party/boringssl/src/decrepit/cast/cast.c +FILE: ../../../third_party/boringssl/src/decrepit/cast/cast_tables.c +FILE: ../../../third_party/boringssl/src/decrepit/cast/internal.h +FILE: ../../../third_party/boringssl/src/decrepit/des/cfb64ede.c +FILE: ../../../third_party/boringssl/src/decrepit/macros.h +FILE: ../../../third_party/boringssl/src/decrepit/rc4/rc4_decrepit.c +FILE: ../../../third_party/boringssl/src/decrepit/ripemd/ripemd.c +FILE: ../../../third_party/boringssl/src/decrepit/rsa/rsa_decrepit.c +FILE: ../../../third_party/boringssl/src/decrepit/ssl/ssl_decrepit.c +FILE: ../../../third_party/boringssl/src/include/openssl/asn1.h +FILE: ../../../third_party/boringssl/src/include/openssl/base64.h +FILE: ../../../third_party/boringssl/src/include/openssl/bio.h +FILE: ../../../third_party/boringssl/src/include/openssl/blowfish.h +FILE: ../../../third_party/boringssl/src/include/openssl/buf.h +FILE: ../../../third_party/boringssl/src/include/openssl/cast.h +FILE: ../../../third_party/boringssl/src/include/openssl/cipher.h +FILE: ../../../third_party/boringssl/src/include/openssl/conf.h +FILE: ../../../third_party/boringssl/src/include/openssl/cpu.h +FILE: ../../../third_party/boringssl/src/include/openssl/des.h +FILE: ../../../third_party/boringssl/src/include/openssl/dh.h +FILE: ../../../third_party/boringssl/src/include/openssl/digest.h +FILE: ../../../third_party/boringssl/src/include/openssl/dsa.h +FILE: ../../../third_party/boringssl/src/include/openssl/err.h +FILE: ../../../third_party/boringssl/src/include/openssl/evp.h +FILE: ../../../third_party/boringssl/src/include/openssl/evp_errors.h +FILE: ../../../third_party/boringssl/src/include/openssl/ex_data.h +FILE: ../../../third_party/boringssl/src/include/openssl/hmac.h +FILE: ../../../third_party/boringssl/src/include/openssl/lhash.h +FILE: ../../../third_party/boringssl/src/include/openssl/md4.h +FILE: ../../../third_party/boringssl/src/include/openssl/md5.h +FILE: ../../../third_party/boringssl/src/include/openssl/mem.h +FILE: ../../../third_party/boringssl/src/include/openssl/obj.h +FILE: ../../../third_party/boringssl/src/include/openssl/rc4.h +FILE: ../../../third_party/boringssl/src/include/openssl/ripemd.h +FILE: ../../../third_party/boringssl/src/include/openssl/rsa.h +FILE: ../../../third_party/boringssl/src/include/openssl/sha.h +FILE: ../../../third_party/boringssl/src/include/openssl/ssl.h +FILE: ../../../third_party/boringssl/src/include/openssl/ssl3.h +FILE: ../../../third_party/boringssl/src/include/openssl/stack.h +FILE: ../../../third_party/boringssl/src/include/openssl/thread.h +FILE: ../../../third_party/boringssl/src/include/openssl/tls1.h +FILE: ../../../third_party/boringssl/src/include/openssl/type_check.h +FILE: ../../../third_party/boringssl/src/include/openssl/x509.h +FILE: ../../../third_party/boringssl/src/include/openssl/x509_vfy.h +FILE: ../../../third_party/boringssl/src/ssl/d1_both.cc +FILE: ../../../third_party/boringssl/src/ssl/d1_pkt.cc +FILE: ../../../third_party/boringssl/src/ssl/d1_srtp.cc +FILE: ../../../third_party/boringssl/src/ssl/dtls_record.cc +FILE: ../../../third_party/boringssl/src/ssl/extensions.cc +FILE: ../../../third_party/boringssl/src/ssl/handshake.cc +FILE: ../../../third_party/boringssl/src/ssl/handshake_client.cc +FILE: ../../../third_party/boringssl/src/ssl/handshake_server.cc +FILE: ../../../third_party/boringssl/src/ssl/internal.h +FILE: ../../../third_party/boringssl/src/ssl/s3_both.cc +FILE: ../../../third_party/boringssl/src/ssl/s3_lib.cc +FILE: ../../../third_party/boringssl/src/ssl/s3_pkt.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_asn1.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_cert.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_cipher.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_file.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_lib.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_privkey.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_session.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_stat.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_transcript.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_x509.cc +FILE: ../../../third_party/boringssl/src/ssl/t1_enc.cc +FILE: ../../../third_party/boringssl/src/ssl/tls_method.cc +FILE: ../../../third_party/boringssl/src/ssl/tls_record.cc +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) +All rights reserved. + +This package is an SSL implementation written +by Eric Young (eay@cryptsoft.com). +The implementation was written so as to conform with Netscapes SSL. + +This library is free for commercial and non-commercial use as long as +the following conditions are aheared to. The following conditions +apply to all code found in this distribution, be it the RC4, RSA, +lhash, DES, etc., code; not just the SSL code. The SSL documentation +included with this distribution is covered by the same copyright terms +except that the holder is Tim Hudson (tjh@cryptsoft.com). + +Copyright remains Eric Young's, and as such any Copyright notices in +the code are not to be removed. +If this package is used in a product, Eric Young should be given attribution +as the author of the parts of the library used. +This can be in the form of a textual message at program startup or +in documentation (online or textual) provided with the package. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + "This product includes cryptographic software written by + Eric Young (eay@cryptsoft.com)" + The word 'cryptographic' can be left out if the rouines from the library + being used are not cryptographic related :-). +4. If you include any Windows specific code (or a derivative thereof) from + the apps directory (application code) you must include an acknowledgement: + "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + +THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +The licence and distribution terms for any publically available version or +derivative of this code cannot be changed. i.e. this code cannot simply be +copied and put under another distribution licence +[including the GNU Public Licence.] +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1388_P103-2001.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/ibm-1388_P103-2001.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2001, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1006_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1025_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1047_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1051_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1089_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1097_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1098_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1112_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1122_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1123_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1124_P100-1996.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1125_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1129_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1130_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1131_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1132_P100-1998.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1133_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1140_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1141_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1142_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1143_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1144_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1145_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1146_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1147_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1148_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1149_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1153_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1154_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1156_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1157_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1158_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1160_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1162_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1164_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1250_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1251_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1252_P100-2000.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1253_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1254_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1255_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1256_P110-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1257_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1258_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-12712_P100-1998.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1276_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-16804_X110-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-273_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-277_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-278_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-280_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-284_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-285_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-290_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-297_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-37_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-424_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-437_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-4899_P100-1998.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-4909_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-4971_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-500_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-5123_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-5346_P100-1998.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-5347_P100-1998.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-5348_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-5349_P100-1998.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-5350_P100-1998.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-5351_P100-1998.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-5352_P100-1998.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-5353_P100-1998.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-5354_P100-1998.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/ibm-1006_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1025_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1047_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1051_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1089_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1097_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1098_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1112_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1122_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1123_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1124_P100-1996.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1125_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1129_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1130_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1131_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1132_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1133_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1140_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1141_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1142_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1143_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1144_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1145_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1146_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1147_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1148_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1149_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1153_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1154_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1156_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1157_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1158_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1160_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1162_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1164_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1250_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1251_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1252_P100-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1253_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1254_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1255_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1256_P110-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1257_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1258_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-12712_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1276_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-16804_X110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-273_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-277_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-278_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-280_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-284_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-285_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-290_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-297_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-37_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-424_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-437_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-4899_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-4909_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-4971_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-500_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5123_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5346_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5347_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5348_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5349_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5350_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5351_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5352_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5353_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5354_P100-1998.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2002, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1363_P110-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1363_P11B-1998.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1373_P100-2002.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1390_P110-2003.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1399_P110-2003.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-16684_P110-2003.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-5478_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-803_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-813_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-838_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-8482_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-850_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-851_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-852_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-855_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-856_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-857_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-858_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-860_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-861_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-862_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-863_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-865_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-866_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-867_P100-1998.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-868_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-869_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-870_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-871_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-874_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-875_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-878_P100-1996.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-901_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-902_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-912_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-914_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-915_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-916_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-918_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-920_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-921_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-922_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-923_P100-1998.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-9447_P100-2002.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-9449_P100-2002.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/ibm-1363_P110-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1363_P11B-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1373_P100-2002.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1390_P110-2003.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1399_P110-2003.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-16684_P110-2003.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5478_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-803_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-813_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-838_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-8482_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-850_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-851_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-852_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-855_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-856_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-857_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-858_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-860_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-861_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-862_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-863_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-865_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-866_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-867_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-868_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-869_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-870_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-871_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-874_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-875_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-878_P100-1996.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-901_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-902_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-912_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-914_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-915_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-916_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-918_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-920_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-921_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-922_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-923_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-9447_P100-2002.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-9449_P100-2002.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-4517_P100-2005.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-737_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-775_P100-1996.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-9448_X100-2005.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/icu-internal-25546.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/ibm-4517_P100-2005.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-737_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-775_P100-1996.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-9448_X100-2005.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-25546.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-9067_X100-2005.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/ibm-9067_X100-2005.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1137_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1168_P100-2002.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1364_P110-2007.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1371_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1383_P110-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1386_P100-2001.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-33722_P120-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-33722_P12A_P12A-2004_U2.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-420_X120-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-5012_P100-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-5471_P100-2006.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-720_P100-1997.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-864_X110-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-9005_X110-2007.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-913_P100-2000.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-930_P120-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-933_P110-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-935_P110-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-937_P110-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-939_P120-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-942_P12A-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-943_P130-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-943_P15A-2003.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-949_P110-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-949_P11A-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-950_P110-1999.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-954_P101-2007.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-970_P110_P110-2006_U2.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-971_P100-1995.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/ibm-1137_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1168_P100-2002.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1364_P110-2007.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1371_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1383_P110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1386_P100-2001.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-33722_P120-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-33722_P12A_P12A-2004_U2.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-420_X120-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5012_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5471_P100-2006.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-720_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-864_X110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-9005_X110-2007.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-913_P100-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-930_P120-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-933_P110-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-935_P110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-937_P110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-939_P120-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-942_P12A-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-943_P130-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-943_P15A-2003.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-949_P110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-949_P11A-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-950_P110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-954_P101-2007.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-970_P110_P110-2006_U2.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-971_P100-1995.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-964_P110-1999.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/ibm-964_P110-1999.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2009, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/lmb-excp.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/lmb-excp.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/euc-jp-2007.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1026_P100-1995.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1155_P100-1999.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/euc-jp-2007.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1026_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1155_P100-1999.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/big5-html.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/convrtrs.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/convrtrs.txt +FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/gzip/zlib.h +TYPE: LicenseType.zlib +FILE: ../../../third_party/freetype2/src/gzip/adler32.c +FILE: ../../../third_party/freetype2/src/gzip/crc32.c +FILE: ../../../third_party/freetype2/src/gzip/crc32.h +FILE: ../../../third_party/freetype2/src/gzip/ftzconf.h +FILE: ../../../third_party/freetype2/src/gzip/gzguts.h +FILE: ../../../third_party/freetype2/src/gzip/infback.c +FILE: ../../../third_party/freetype2/src/gzip/inffast.c +FILE: ../../../third_party/freetype2/src/gzip/inffast.h +FILE: ../../../third_party/freetype2/src/gzip/inffixed.h +FILE: ../../../third_party/freetype2/src/gzip/inflate.c +FILE: ../../../third_party/freetype2/src/gzip/inflate.h +FILE: ../../../third_party/freetype2/src/gzip/inftrees.c +FILE: ../../../third_party/freetype2/src/gzip/inftrees.h +FILE: ../../../third_party/freetype2/src/gzip/patches/freetype-zlib.diff +FILE: ../../../third_party/freetype2/src/gzip/zlib.h +FILE: ../../../third_party/freetype2/src/gzip/zutil.c +FILE: ../../../third_party/freetype2/src/gzip/zutil.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: zlib +ORIGIN: ../../../third_party/zlib/zlib.h +TYPE: LicenseType.zlib +FILE: ../../../third_party/zlib/adler32.c +FILE: ../../../third_party/zlib/compress.c +FILE: ../../../third_party/zlib/contrib/optimizations/inffast_chunk.c +FILE: ../../../third_party/zlib/contrib/optimizations/inffast_chunk.h +FILE: ../../../third_party/zlib/contrib/optimizations/inflate.c +FILE: ../../../third_party/zlib/crc32.c +FILE: ../../../third_party/zlib/crc_folding.c +FILE: ../../../third_party/zlib/deflate.c +FILE: ../../../third_party/zlib/deflate.h +FILE: ../../../third_party/zlib/gzclose.c +FILE: ../../../third_party/zlib/gzguts.h +FILE: ../../../third_party/zlib/gzlib.c +FILE: ../../../third_party/zlib/gzread.c +FILE: ../../../third_party/zlib/gzwrite.c +FILE: ../../../third_party/zlib/infback.c +FILE: ../../../third_party/zlib/inffast.c +FILE: ../../../third_party/zlib/inffast.h +FILE: ../../../third_party/zlib/inflate.c +FILE: ../../../third_party/zlib/inflate.h +FILE: ../../../third_party/zlib/inftrees.c +FILE: ../../../third_party/zlib/inftrees.h +FILE: ../../../third_party/zlib/trees.c +FILE: ../../../third_party/zlib/uncompr.c +FILE: ../../../third_party/zlib/zconf.h +FILE: ../../../third_party/zlib/zlib.h +FILE: ../../../third_party/zlib/zutil.c +FILE: ../../../third_party/zlib/zutil.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/astro.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/astro.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2008, International Business Machines Corporation * +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/astro.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/astro.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2012, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/sortkey.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/sortkey.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/locmap.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/unicode/ctest.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/locmap.h +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/ctest.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/resbund.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/resbund.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/collationcompare.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/ctest.c + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/collationcompare.h +FILE: ../../../third_party/icu/source/tools/ctestfw/ctest.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/caniter.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/coleitr.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/coll.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/caniter.h +FILE: ../../../third_party/icu/source/i18n/coleitr.cpp +FILE: ../../../third_party/icu/source/i18n/coll.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/sortkey.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/sortkey.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2014, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ubrk.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/locid.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationcompare.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/rulebasedcollator.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/ucol.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/udat.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unum.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ubrk.cpp +FILE: ../../../third_party/icu/source/common/unicode/locid.h +FILE: ../../../third_party/icu/source/i18n/collationcompare.cpp +FILE: ../../../third_party/icu/source/i18n/rulebasedcollator.cpp +FILE: ../../../third_party/icu/source/i18n/ucol.cpp +FILE: ../../../third_party/icu/source/i18n/udat.cpp +FILE: ../../../third_party/icu/source/i18n/unum.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/caniter.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/ucal.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/caniter.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/ucal.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/ubrk.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/ubrk.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/locmap.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uchar.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/utypes.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/ucal.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/ucol_res.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/coll.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/locmap.cpp +FILE: ../../../third_party/icu/source/common/uchar.cpp +FILE: ../../../third_party/icu/source/common/unicode/utypes.h +FILE: ../../../third_party/icu/source/i18n/ucal.cpp +FILE: ../../../third_party/icu/source/i18n/ucol_res.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/coll.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/udat.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/udat.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/tblcoll.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/tblcoll.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1996-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/ebcdic-xml-us.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/ebcdic-xml-us.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2000, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/jisx-212.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/jisx-212.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/filestrm.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/filestrm.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/parsepos.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/parsepos.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2005, International Business Machines Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/resbund_cnv.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/umath.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ures_cnv.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/fieldpos.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/resbund_cnv.cpp +FILE: ../../../third_party/icu/source/common/umath.cpp +FILE: ../../../third_party/icu/source/common/ures_cnv.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/fieldpos.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/utrans.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/utrans.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2009,2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/urep.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/cns-11643-1992.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/urep.h +FILE: ../../../third_party/icu/source/data/mappings/cns-11643-1992.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/fmtable_cnv.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/fmtable_cnv.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2010, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/cpputils.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/cstring.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uelement.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uhash_us.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/chariter.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/filestrm.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/cpputils.h +FILE: ../../../third_party/icu/source/common/cstring.cpp +FILE: ../../../third_party/icu/source/common/uelement.h +FILE: ../../../third_party/icu/source/common/uhash_us.cpp +FILE: ../../../third_party/icu/source/common/unicode/chariter.h +FILE: ../../../third_party/icu/source/tools/toolutil/filestrm.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/format.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/format.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2011, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/utrans.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/utrans.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2011,2014-2015 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/cstring.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/locresdata.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/ptypes.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/nfrlist.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/cstring.h +FILE: ../../../third_party/icu/source/common/locresdata.cpp +FILE: ../../../third_party/icu/source/common/unicode/ptypes.h +FILE: ../../../third_party/icu/source/i18n/nfrlist.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/format.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/format.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2012, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: glfw +ORIGIN: ../../../third_party/glfw/src/mappings.h +ORIGIN: ../../../third_party/glfw/src/mappings.h.in +TYPE: LicenseType.unknown +FILE: ../../../third_party/glfw/src/mappings.h +FILE: ../../../third_party/glfw/src/mappings.h.in +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2013 Sam Lantinga + +This software is provided 'as-is', without any express or implied warranty. +In no event will the authors be held liable for any damages arising from the +use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/locavailable.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/mutex.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/resbund.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/choicfmt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/locavailable.cpp +FILE: ../../../third_party/icu/source/common/mutex.h +FILE: ../../../third_party/icu/source/common/resbund.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/choicfmt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/simpletz.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/simpletz.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2013, International Business Machines * +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/simpletz.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/simpletz.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/choicfmt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/choicfmt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/gregocal.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/gregocal.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2013, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/hash.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/putil.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uscript.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/calendar.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/coleitr.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/fmtable.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/hash.h +FILE: ../../../third_party/icu/source/common/unicode/putil.h +FILE: ../../../third_party/icu/source/common/uscript.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/calendar.h +FILE: ../../../third_party/icu/source/i18n/unicode/coleitr.h +FILE: ../../../third_party/icu/source/i18n/unicode/fmtable.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/uhash.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/umutex.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/filteredbrk.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/utypes.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/nfrs.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/nfrs.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/nfrule.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/nfsubs.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/nfsubs.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/uhash.h +FILE: ../../../third_party/icu/source/common/umutex.h +FILE: ../../../third_party/icu/source/common/unicode/filteredbrk.h +FILE: ../../../third_party/icu/source/common/utypes.cpp +FILE: ../../../third_party/icu/source/i18n/nfrs.cpp +FILE: ../../../third_party/icu/source/i18n/nfrs.h +FILE: ../../../third_party/icu/source/i18n/nfrule.cpp +FILE: ../../../third_party/icu/source/i18n/nfsubs.cpp +FILE: ../../../third_party/icu/source/i18n/nfsubs.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/nfrule.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/nfrule.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/rbnf.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/rbnf.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2015, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/brkiter.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/numfmt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/brkiter.cpp +FILE: ../../../third_party/icu/source/i18n/numfmt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/datefmt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/datefmt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2015, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/rbnf.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/unum.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/rbnf.h +FILE: ../../../third_party/icu/source/i18n/unicode/unum.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/cmemory.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/locdispnames.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/locid.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/loclikely.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/putil.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/putilimp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uhash.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uloc.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/umutex.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/brkiter.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/platform.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/uchar.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/uloc.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/ures.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/uscript.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/datefmt.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/dcfmtsym.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/decimfmt.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/dtfmtsym.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/cmemory.h +FILE: ../../../third_party/icu/source/common/locdispnames.cpp +FILE: ../../../third_party/icu/source/common/locid.cpp +FILE: ../../../third_party/icu/source/common/loclikely.cpp +FILE: ../../../third_party/icu/source/common/putil.cpp +FILE: ../../../third_party/icu/source/common/putilimp.h +FILE: ../../../third_party/icu/source/common/uhash.cpp +FILE: ../../../third_party/icu/source/common/uloc.cpp +FILE: ../../../third_party/icu/source/common/umutex.cpp +FILE: ../../../third_party/icu/source/common/unicode/brkiter.h +FILE: ../../../third_party/icu/source/common/unicode/platform.h +FILE: ../../../third_party/icu/source/common/unicode/uchar.h +FILE: ../../../third_party/icu/source/common/unicode/uloc.h +FILE: ../../../third_party/icu/source/common/unicode/ures.h +FILE: ../../../third_party/icu/source/common/unicode/uscript.h +FILE: ../../../third_party/icu/source/i18n/unicode/datefmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/dcfmtsym.h +FILE: ../../../third_party/icu/source/i18n/unicode/decimfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/dtfmtsym.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/uresbund.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/dcfmtsym.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/fmtable.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/gregocal.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/timezone.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/smpdtfmt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/uresbund.cpp +FILE: ../../../third_party/icu/source/i18n/dcfmtsym.cpp +FILE: ../../../third_party/icu/source/i18n/fmtable.cpp +FILE: ../../../third_party/icu/source/i18n/gregocal.cpp +FILE: ../../../third_party/icu/source/i18n/timezone.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/smpdtfmt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/calendar.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/dtfmtsym.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/smpdtfmt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/calendar.cpp +FILE: ../../../third_party/icu/source/i18n/dtfmtsym.cpp +FILE: ../../../third_party/icu/source/i18n/smpdtfmt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2016, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/numfmt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/numfmt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1997-2016, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucnvdisp.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucnvdisp.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1998-2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: zlib +ORIGIN: ../../../third_party/zlib/contrib/minizip/crypt.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/zlib/contrib/minizip/crypt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1998-2005 Gilles Vollant +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/schriter.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/uchriter.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/schriter.h +FILE: ../../../third_party/icu/source/common/unicode/uchriter.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1998-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/io/uprintf.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/makeconv/ucnvstat.c + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/io/uprintf.h +FILE: ../../../third_party/icu/source/tools/makeconv/ucnvstat.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 1998-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/genrb/rbutil.c + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/genrb/rbutil.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 1998-2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/io/locbund.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/ufmt_cmn.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/errmsg.c + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/read.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/io/locbund.h +FILE: ../../../third_party/icu/source/io/ufmt_cmn.h +FILE: ../../../third_party/icu/source/tools/genrb/errmsg.c +FILE: ../../../third_party/icu/source/tools/genrb/read.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1998-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/genrb/read.c + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/ustr.c + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/ustr.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/genrb/read.c +FILE: ../../../third_party/icu/source/tools/genrb/ustr.c +FILE: ../../../third_party/icu/source/tools/genrb/ustr.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1998-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/schriter.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uchriter.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/schriter.cpp +FILE: ../../../third_party/icu/source/common/uchriter.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1998-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/ustring.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ustr_cnv.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/ucol_imp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/locbund.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/ufile.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/ufmt_cmn.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/uprintf.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/uscanf.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/uscanf.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/parse.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/ustring.h +FILE: ../../../third_party/icu/source/common/ustr_cnv.cpp +FILE: ../../../third_party/icu/source/i18n/ucol_imp.h +FILE: ../../../third_party/icu/source/io/locbund.cpp +FILE: ../../../third_party/icu/source/io/ufile.h +FILE: ../../../third_party/icu/source/io/ufmt_cmn.cpp +FILE: ../../../third_party/icu/source/io/uprintf.cpp +FILE: ../../../third_party/icu/source/io/uscanf.cpp +FILE: ../../../third_party/icu/source/io/uscanf.h +FILE: ../../../third_party/icu/source/tools/genrb/parse.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1998-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/io/ufile.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/unicode/ustdio.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/parse.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/makeconv/makeconv.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/io/ufile.cpp +FILE: ../../../third_party/icu/source/io/unicode/ustdio.h +FILE: ../../../third_party/icu/source/tools/genrb/parse.cpp +FILE: ../../../third_party/icu/source/tools/makeconv/makeconv.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1998-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucnv.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnv_err.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/unistr.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ustring.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/uprntf_p.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/uscanf_p.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/ustdio.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/errmsg.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/genrb.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/prscmnts.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/rbutil.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/ucbuf.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/ucbuf.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucnv.cpp +FILE: ../../../third_party/icu/source/common/ucnv_err.cpp +FILE: ../../../third_party/icu/source/common/unicode/unistr.h +FILE: ../../../third_party/icu/source/common/ustring.cpp +FILE: ../../../third_party/icu/source/io/uprntf_p.cpp +FILE: ../../../third_party/icu/source/io/uscanf_p.cpp +FILE: ../../../third_party/icu/source/io/ustdio.cpp +FILE: ../../../third_party/icu/source/tools/genrb/errmsg.h +FILE: ../../../third_party/icu/source/tools/genrb/genrb.cpp +FILE: ../../../third_party/icu/source/tools/genrb/prscmnts.h +FILE: ../../../third_party/icu/source/tools/genrb/rbutil.h +FILE: ../../../third_party/icu/source/tools/toolutil/ucbuf.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/ucbuf.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1998-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/extra/uconv/uwmsg.c + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/extra/uconv/uwmsg.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 1998-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/utf32.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/utf32.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2001, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/extra/scrptrun/scrptrun.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/extra/scrptrun/scrptrun.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucnv_cnv.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucnv_cnv.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/parseerr.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/parseerr.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucnv_io.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/umisc.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/gensprep/gensprep.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucnv_io.h +FILE: ../../../third_party/icu/source/common/unicode/umisc.h +FILE: ../../../third_party/icu/source/tools/gensprep/gensprep.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/dbbi.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/dbbi.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2006,2013 IBM Corp. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/rbt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/rbt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/rbt_data.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/rbt_set.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/rbt_data.h +FILE: ../../../third_party/icu/source/i18n/rbt_set.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2007, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/extra/uconv/makedata.mak + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/extra/uconv/makedata.mak +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2008, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/ucnv_err.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/ucnv_err.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2009, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/udatamem.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uinvchar.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ustr_cnv.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/unewdata.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/unewdata.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/udatamem.h +FILE: ../../../third_party/icu/source/common/uinvchar.cpp +FILE: ../../../third_party/icu/source/common/ustr_cnv.h +FILE: ../../../third_party/icu/source/tools/toolutil/unewdata.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/unewdata.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/unifilt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/unifilt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2010, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/chariter.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucmndata.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucmndata.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnv_cnv.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnv_imp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/udatamem.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/umapfile.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/utf.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unistr_props.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/usc_impl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uvectr32.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/cpdtrans.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/cpdtrans.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/rbt_rule.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/rbt_set.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/chariter.cpp +FILE: ../../../third_party/icu/source/common/ucmndata.cpp +FILE: ../../../third_party/icu/source/common/ucmndata.h +FILE: ../../../third_party/icu/source/common/ucnv_cnv.h +FILE: ../../../third_party/icu/source/common/ucnv_imp.h +FILE: ../../../third_party/icu/source/common/udatamem.cpp +FILE: ../../../third_party/icu/source/common/umapfile.h +FILE: ../../../third_party/icu/source/common/unicode/utf.h +FILE: ../../../third_party/icu/source/common/unistr_props.cpp +FILE: ../../../third_party/icu/source/common/usc_impl.h +FILE: ../../../third_party/icu/source/common/uvectr32.h +FILE: ../../../third_party/icu/source/i18n/cpdtrans.cpp +FILE: ../../../third_party/icu/source/i18n/cpdtrans.h +FILE: ../../../third_party/icu/source/i18n/rbt_rule.cpp +FILE: ../../../third_party/icu/source/i18n/rbt_set.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/rbt_pars.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/rbt_pars.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2011, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/utf16.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/utf_impl.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/umsg.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/utf16.h +FILE: ../../../third_party/icu/source/common/utf_impl.cpp +FILE: ../../../third_party/icu/source/i18n/umsg.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/rep.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/rep.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/umapfile.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/ubidi.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/toolutil.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/umapfile.cpp +FILE: ../../../third_party/icu/source/common/unicode/ubidi.h +FILE: ../../../third_party/icu/source/tools/toolutil/toolutil.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/uvector.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/uvector.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/rbbidata.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/rbbidata.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/rbbidata.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/rbbidata.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2014 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unames.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/ucnv.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/udata.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uniset_props.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unistr_case.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unistr_cnv.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uvectr64.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationweights.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/rbt_data.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/gensprep/store.c + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/toolutil.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unames.cpp +FILE: ../../../third_party/icu/source/common/unicode/ucnv.h +FILE: ../../../third_party/icu/source/common/unicode/udata.h +FILE: ../../../third_party/icu/source/common/uniset_props.cpp +FILE: ../../../third_party/icu/source/common/unistr_case.cpp +FILE: ../../../third_party/icu/source/common/unistr_cnv.cpp +FILE: ../../../third_party/icu/source/common/uvectr64.h +FILE: ../../../third_party/icu/source/i18n/collationweights.h +FILE: ../../../third_party/icu/source/i18n/rbt_data.cpp +FILE: ../../../third_party/icu/source/tools/gensprep/store.c +FILE: ../../../third_party/icu/source/tools/toolutil/toolutil.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/translit.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/translit.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucnv_bld.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucnv_bld.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2015 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ubidi.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ubidiln.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnv_io.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uinvchar.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/umachine.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/utf8.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uniset.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ustr_imp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationweights.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/rbt.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/package.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ubidi.cpp +FILE: ../../../third_party/icu/source/common/ubidiln.cpp +FILE: ../../../third_party/icu/source/common/ucnv_io.cpp +FILE: ../../../third_party/icu/source/common/uinvchar.h +FILE: ../../../third_party/icu/source/common/unicode/umachine.h +FILE: ../../../third_party/icu/source/common/unicode/utf8.h +FILE: ../../../third_party/icu/source/common/uniset.cpp +FILE: ../../../third_party/icu/source/common/ustr_imp.h +FILE: ../../../third_party/icu/source/i18n/collationweights.cpp +FILE: ../../../third_party/icu/source/i18n/rbt.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/package.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/uvectr32.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uvectr64.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/uvectr32.cpp +FILE: ../../../third_party/icu/source/common/uvectr64.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/gencnval/gencnval.c + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/gencnval/gencnval.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2016 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/rbbi.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/rbbi.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2016 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/rbbi.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/rbbi.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2016 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/uresdata.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/uresdata.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/norm2_nfc_data.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/propname_data.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ubidi_props_data.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ubidiimp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucase_props_data.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uchar_props_data.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/udata.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/usc_impl.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uvector.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/unidata/norm2/nfc.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/unidata/norm2/nfkc.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/unidata/norm2/nfkc_cf.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/extra/scrptrun/scrptrun.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/extra/uconv/uconv.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationfcd.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/rbt_pars.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/translit.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genccode/genccode.c + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/gencmn/gencmn.c + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/derb.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/gentest/gentest.c + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/icuinfo/icuinfo.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/norm2_nfc_data.h +FILE: ../../../third_party/icu/source/common/propname_data.h +FILE: ../../../third_party/icu/source/common/ubidi_props_data.h +FILE: ../../../third_party/icu/source/common/ubidiimp.h +FILE: ../../../third_party/icu/source/common/ucase_props_data.h +FILE: ../../../third_party/icu/source/common/uchar_props_data.h +FILE: ../../../third_party/icu/source/common/udata.cpp +FILE: ../../../third_party/icu/source/common/usc_impl.cpp +FILE: ../../../third_party/icu/source/common/uvector.h +FILE: ../../../third_party/icu/source/data/unidata/norm2/nfc.txt +FILE: ../../../third_party/icu/source/data/unidata/norm2/nfkc.txt +FILE: ../../../third_party/icu/source/data/unidata/norm2/nfkc_cf.txt +FILE: ../../../third_party/icu/source/extra/scrptrun/scrptrun.cpp +FILE: ../../../third_party/icu/source/extra/uconv/uconv.cpp +FILE: ../../../third_party/icu/source/i18n/collationfcd.cpp +FILE: ../../../third_party/icu/source/i18n/rbt_pars.cpp +FILE: ../../../third_party/icu/source/i18n/translit.cpp +FILE: ../../../third_party/icu/source/tools/genccode/genccode.c +FILE: ../../../third_party/icu/source/tools/gencmn/gencmn.c +FILE: ../../../third_party/icu/source/tools/genrb/derb.cpp +FILE: ../../../third_party/icu/source/tools/gentest/gentest.c +FILE: ../../../third_party/icu/source/tools/icuinfo/icuinfo.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/uresdata.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/uresdata.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2016, International Business Machines Corporation + and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/makedata.mak + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/makedata.mak +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/uniset.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/uniset.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unistr.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unistr.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 1999-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/pcf/pcf.h +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/pcf/pcf.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/genrb/rle.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/genrb/rle.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/genrb/rle.c + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/genrb/rle.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/pcf/pcfdrivr.c +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/pcf/pcfdrivr.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/ucnv_cb.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/ucnv_cb.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/extra/uconv/unicode/uwmsg.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/extra/uconv/unicode/uwmsg.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2004, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucnv_cb.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucnv_cb.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/extra/uconv/pkgdata.inc.in + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/extra/uconv/pkgdata.inc.in +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/icupkg.inc.in + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/makeconv/genmbcs.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/icupkg.inc.in +FILE: ../../../third_party/icu/source/tools/makeconv/genmbcs.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/makeconv/makeconv.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/uparse.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/makeconv/makeconv.h +FILE: ../../../third_party/icu/source/tools/toolutil/uparse.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucol_data.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/uversion.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/uoptions.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucol_data.h +FILE: ../../../third_party/icu/source/common/unicode/uversion.h +FILE: ../../../third_party/icu/source/tools/toolutil/uoptions.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/ushape.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/pkgdata/pkgtypes.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/uparse.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/ushape.h +FILE: ../../../third_party/icu/source/tools/pkgdata/pkgtypes.h +FILE: ../../../third_party/icu/source/tools/toolutil/uparse.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/gb18030.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2012, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucnvmbcs.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucnvmbcs.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/io/sscanf.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/io/sscanf.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ubidiwrt.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnvhz.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnvlat1.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/reslist.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/reslist.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/wrtjava.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/uoptions.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ubidiwrt.cpp +FILE: ../../../third_party/icu/source/common/ucnvhz.cpp +FILE: ../../../third_party/icu/source/common/ucnvlat1.cpp +FILE: ../../../third_party/icu/source/tools/genrb/reslist.cpp +FILE: ../../../third_party/icu/source/tools/genrb/reslist.h +FILE: ../../../third_party/icu/source/tools/genrb/wrtjava.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/uoptions.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucnv2022.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnv_lmb.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnvisci.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnvmbcs.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnvscsu.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uresimp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ushape.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/makeconv/genmbcs.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/pkgdata/pkgdata.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/pkgdata/pkgtypes.c + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucnv2022.cpp +FILE: ../../../third_party/icu/source/common/ucnv_lmb.cpp +FILE: ../../../third_party/icu/source/common/ucnvisci.cpp +FILE: ../../../third_party/icu/source/common/ucnvmbcs.cpp +FILE: ../../../third_party/icu/source/common/ucnvscsu.cpp +FILE: ../../../third_party/icu/source/common/uresimp.h +FILE: ../../../third_party/icu/source/common/ushape.cpp +FILE: ../../../third_party/icu/source/tools/makeconv/genmbcs.cpp +FILE: ../../../third_party/icu/source/tools/pkgdata/pkgdata.cpp +FILE: ../../../third_party/icu/source/tools/pkgdata/pkgtypes.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/icudefs.mk.in + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/icudefs.mk.in +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2016, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + ==================================================================================================== LIBRARY: freetype2 -LIBRARY: zlib -ORIGIN: ../../../third_party/freetype2/src/gzip/inffast.h + ../../../third_party/freetype2/src/gzip/zlib.h +ORIGIN: ../../../third_party/freetype2/src/bdf/bdf.c +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/bdf/bdf.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001, 2002 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/bdf/bdfdrivr.h +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/bdf/bdfdrivr.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001, 2002, 2003, 2004 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/cwchar.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/cwchar.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/umsg_imp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/stubdata/stubdata.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/stubdata/stubdata.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/cwchar.cpp +FILE: ../../../third_party/icu/source/common/cwchar.h +FILE: ../../../third_party/icu/source/i18n/umsg_imp.h +FILE: ../../../third_party/icu/source/stubdata/stubdata.cpp +FILE: ../../../third_party/icu/source/stubdata/stubdata.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/macos-0_2-10.2.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/macos-29-10.2.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/macos-35-10.2.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/macos-7_3-10.2.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/windows-874-2000.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/windows-949-2000.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/windows-950-2000.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/macos-0_2-10.2.ucm +FILE: ../../../third_party/icu/source/data/mappings/macos-29-10.2.ucm +FILE: ../../../third_party/icu/source/data/mappings/macos-35-10.2.ucm +FILE: ../../../third_party/icu/source/data/mappings/macos-7_3-10.2.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-874-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-949-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-950-2000.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/macos-6_2-10.4.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/macos-6_2-10.4.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/unimatch.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/unimatch.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2005, International Business Machines Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ustrfmt.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ustrfmt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ustrfmt.cpp +FILE: ../../../third_party/icu/source/common/ustrfmt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/name2uni.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/titletrn.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/tolowtrn.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/tolowtrn.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/toupptrn.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/toupptrn.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/uni2name.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm +FILE: ../../../third_party/icu/source/i18n/name2uni.h +FILE: ../../../third_party/icu/source/i18n/titletrn.h +FILE: ../../../third_party/icu/source/i18n/tolowtrn.cpp +FILE: ../../../third_party/icu/source/i18n/tolowtrn.h +FILE: ../../../third_party/icu/source/i18n/toupptrn.cpp +FILE: ../../../third_party/icu/source/i18n/toupptrn.h +FILE: ../../../third_party/icu/source/i18n/uni2name.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/bdf/bdfdrivr.c +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/bdf/bdfdrivr.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2008, 2011, 2013, 2014 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/utrie2_impl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/casetrn.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/utrie2_impl.h +FILE: ../../../third_party/icu/source/i18n/casetrn.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/search.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/search.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2008,2010 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/nortrans.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/nortrans.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/search.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/search.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2011 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unormimp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/utrie.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/casetrn.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/name2uni.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/nortrans.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/titletrn.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/uni2name.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unormimp.h +FILE: ../../../third_party/icu/source/common/utrie.h +FILE: ../../../third_party/icu/source/i18n/casetrn.cpp +FILE: ../../../third_party/icu/source/i18n/name2uni.cpp +FILE: ../../../third_party/icu/source/i18n/nortrans.cpp +FILE: ../../../third_party/icu/source/i18n/titletrn.cpp +FILE: ../../../third_party/icu/source/i18n/uni2name.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/io/ucln_io.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/io/ucln_io.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2011, International Business Machines * + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/quant.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/strmatch.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/quant.h +FILE: ../../../third_party/icu/source/i18n/strmatch.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2011, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/servloc.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/servloc.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2011, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/serv.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/serv.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2011, International Business Machines Corporation. * +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/usearch.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/usearch.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2011,2014 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ustr_wcs.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/utrie.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/quant.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ustr_wcs.cpp +FILE: ../../../third_party/icu/source/common/utrie.cpp +FILE: ../../../third_party/icu/source/i18n/quant.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/servnotf.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/servnotf.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2012, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucln.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucln.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2013, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/stsearch.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/stsearch.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/stsearch.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/stsearch.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2014 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/io/unicode/ustream.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/io/unicode/ustream.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucln_cmn.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/uclean.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucln_cmn.cpp +FILE: ../../../third_party/icu/source/common/unicode/uclean.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unormcmp.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/utrie2.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/utrie2.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/utrie2_builder.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/bocsu.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/bocsu.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/ucoleitr.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/sprintf.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unormcmp.cpp +FILE: ../../../third_party/icu/source/common/utrie2.cpp +FILE: ../../../third_party/icu/source/common/utrie2.h +FILE: ../../../third_party/icu/source/common/utrie2_builder.cpp +FILE: ../../../third_party/icu/source/i18n/bocsu.cpp +FILE: ../../../third_party/icu/source/i18n/bocsu.h +FILE: ../../../third_party/icu/source/i18n/unicode/ucoleitr.h +FILE: ../../../third_party/icu/source/io/sprintf.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/ucln_in.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/ucln_io.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/ucln_in.cpp +FILE: ../../../third_party/icu/source/io/ucln_io.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2014, International Business Machines * + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/servlk.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/servlkf.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/servls.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/servnotf.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/servrbf.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/servslkf.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/servlk.cpp +FILE: ../../../third_party/icu/source/common/servlkf.cpp +FILE: ../../../third_party/icu/source/common/servls.cpp +FILE: ../../../third_party/icu/source/common/servnotf.h +FILE: ../../../third_party/icu/source/common/servrbf.cpp +FILE: ../../../third_party/icu/source/common/servslkf.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2014, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/serv.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/serv.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2014, International Business Machines Corporation. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/usearch.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/usrchimp.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/usearch.cpp +FILE: ../../../third_party/icu/source/i18n/usrchimp.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2015 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/uinit.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/uinit.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2015, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ustrcase.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ustrcase.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucln_cmn.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/ucln_in.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucln_cmn.h +FILE: ../../../third_party/icu/source/i18n/ucln_in.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ustrtrns.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/ucoleitr.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/ustream.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ustrtrns.cpp +FILE: ../../../third_party/icu/source/i18n/ucoleitr.cpp +FILE: ../../../third_party/icu/source/io/ustream.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/punycode.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/punycode.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/OGLCompilersDLL/InitializeDll.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/OGLCompilersDLL/InitializeDll.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/GenericCodeGen/CodeGen.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/GenericCodeGen/Link.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/InfoSink.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/InitializeGlobals.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/ShHandle.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/InfoSink.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/PoolAlloc.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/RemoveTree.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/parseConst.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpTokens.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/OSDependent/Unix/ossource.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/OSDependent/Windows/main.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/OSDependent/Windows/ossource.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/OSDependent/osinclude.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/OGLCompilersDLL/InitializeDll.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/OGLCompilersDLL/InitializeDll.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/GenericCodeGen/CodeGen.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/GenericCodeGen/Link.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/InfoSink.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/InitializeGlobals.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/ShHandle.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/InfoSink.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/PoolAlloc.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/RemoveTree.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/parseConst.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpTokens.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/OSDependent/Unix/ossource.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/OSDependent/Windows/main.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/OSDependent/Windows/ossource.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/OSDependent/osinclude.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/Common.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/PoolAlloc.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/arrays.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/Common.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/PoolAlloc.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/arrays.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ParseHelper.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ParseHelper.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/SymbolTable.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Versions.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/SymbolTable.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Versions.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/glslang.y +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/glslang.y +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2019 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Versions.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Versions.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2020 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Constant.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Constant.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2018-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/BaseTypes.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/BaseTypes.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ParseHelper.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ParseHelper.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2015 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +Copyright (C) 2017, 2019 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Intermediate.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Intermediate.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2015 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/Types.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/Types.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2015-2016 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Initialize.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Initialize.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020-2021 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/intermediate.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/intermOut.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/intermediate.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/intermOut.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/ResourceLimits.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/RemoveTree.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Scan.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/ResourceLimits.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/RemoveTree.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Scan.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpAtom.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpAtom.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/SymbolTable.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpTokens.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/SymbolTable.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpTokens.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/Pp.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpContext.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/Pp.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpContext.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/ConstantUnion.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/ConstantUnion.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpScanner.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpScanner.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Scan.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Scan.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2020 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/IntermTraverse.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/IntermTraverse.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (c) 2002-2010 The ANGLE Project Authors. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Initialize.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/Initialize.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Public/ShaderLang.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Public/ShaderLang.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ShaderLang.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ShaderLang.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/StandAlone/StandAlone.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/ExtensionHeaders/GL_EXT_shader_realtime_clock.glsl +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/StandAlone/StandAlone.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/ExtensionHeaders/GL_EXT_shader_realtime_clock.glsl +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2016-2020 Google, Inc. +Modifications Copyright(C) 2021 Advanced Micro Devices, Inc.All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ParseContextBase.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ParseContextBase.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/localintermediate.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/localintermediate.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2016 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/StandAlone/DirStackFileIncluder.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/StandAlone/DirStackFileIncluder.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2017 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/locutil.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/locutil.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2005, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/uenumimp.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/uenumimp.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/rbbisetb.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/rbbisetb.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2008 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/rbbirb.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/rbbirb.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2008, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/propsvec.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/propsvec.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/uiter.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/uiter.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2011 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/propsvec.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/punycode.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uassert.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uset.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uset_props.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/propsvec.cpp +FILE: ../../../third_party/icu/source/common/punycode.cpp +FILE: ../../../third_party/icu/source/common/uassert.h +FILE: ../../../third_party/icu/source/common/uset.cpp +FILE: ../../../third_party/icu/source/common/uset_props.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/rbbirb.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/rbbirb.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2011, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/uenum.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uiter.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/strenum.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/uobject.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/utf_old.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uobject.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/uenum.cpp +FILE: ../../../third_party/icu/source/common/uiter.cpp +FILE: ../../../third_party/icu/source/common/unicode/strenum.h +FILE: ../../../third_party/icu/source/common/unicode/uobject.h +FILE: ../../../third_party/icu/source/common/unicode/utf_old.h +FILE: ../../../third_party/icu/source/common/uobject.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/uenum.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/uenum.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/word_ja.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/brkitr/rules/word_ja.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/rbbistbl.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/rbbistbl.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2014 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/uset.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/uset.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/locutil.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/locutil.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/regeximp.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/regeximp.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2015 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/cmemory.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnv_u16.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnv_u32.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/genrb.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/wrtxml.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/cmemory.cpp +FILE: ../../../third_party/icu/source/common/ucnv_u16.cpp +FILE: ../../../third_party/icu/source/common/ucnv_u32.cpp +FILE: ../../../third_party/icu/source/tools/genrb/genrb.h +FILE: ../../../third_party/icu/source/tools/genrb/wrtxml.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/sent.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/sent_el.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/brkitr/rules/sent.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/sent_el.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2015, International Business Machines Corporation and others. + All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/regexcst.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/regexcst.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/rbbirpt.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/regexcst.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/rematch.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/repattrn.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/rbbirpt.h +FILE: ../../../third_party/icu/source/i18n/regexcst.h +FILE: ../../../third_party/icu/source/i18n/rematch.cpp +FILE: ../../../third_party/icu/source/i18n/repattrn.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2016 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/rbbinode.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/rbbinode.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2016 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/regexcmp.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/regexcmp.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2016 International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucnv_u7.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnv_u8.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnvbocu.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/uconfig.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/urename.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uprops.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uprops.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/regex.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genbrk/genbrk.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/gendict/gendict.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucnv_u7.cpp +FILE: ../../../third_party/icu/source/common/ucnv_u8.cpp +FILE: ../../../third_party/icu/source/common/ucnvbocu.cpp +FILE: ../../../third_party/icu/source/common/unicode/uconfig.h +FILE: ../../../third_party/icu/source/common/unicode/urename.h +FILE: ../../../third_party/icu/source/common/uprops.cpp +FILE: ../../../third_party/icu/source/common/uprops.h +FILE: ../../../third_party/icu/source/i18n/unicode/regex.h +FILE: ../../../third_party/icu/source/tools/genbrk/genbrk.cpp +FILE: ../../../third_party/icu/source/tools/gendict/gendict.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/word.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/word_POSIX.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/word_fi_sv.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/brkitr/rules/word.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/word_POSIX.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/word_fi_sv.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/char.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/brkitr/rules/char.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2016, International Business Machines Corporation and others. + All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/rbbirpt.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/rbbiscan.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/rbbiscan.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/regexcmp.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/rbbirpt.txt +FILE: ../../../third_party/icu/source/common/rbbiscan.cpp +FILE: ../../../third_party/icu/source/common/rbbiscan.h +FILE: ../../../third_party/icu/source/i18n/regexcmp.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2002-2016, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/cecal.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/cecal.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003 - 2008, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/cecal.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/cecal.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003 - 2009, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/coptccal.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/ethpccal.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/coptccal.cpp +FILE: ../../../third_party/icu/source/i18n/ethpccal.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003 - 2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/coptccal.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/ethpccal.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/coptccal.h +FILE: ../../../third_party/icu/source/i18n/ethpccal.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003 - 2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/parsepos.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/parsepos.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/gentest/gentest.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/gentest/gentest.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/sprpimpl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/uregexc.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/gentest/genres32.c + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/sprpimpl.h +FILE: ../../../third_party/icu/source/i18n/uregexc.cpp +FILE: ../../../third_party/icu/source/tools/gentest/genres32.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucnv_set.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucnv_set.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/indiancal.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/japancal.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/indiancal.h +FILE: ../../../third_party/icu/source/i18n/japancal.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2008, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/utracimp.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/utracimp.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2009, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/japancal.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/japancal.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2009,2012,2016 International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/regexst.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/regexst.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2010, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ustack.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ustack.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/ucmstate.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/ucmstate.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/uarrsort.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uarrsort.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnv_ext.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/utrace.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/ucm.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/ucm.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/uarrsort.cpp +FILE: ../../../third_party/icu/source/common/uarrsort.h +FILE: ../../../third_party/icu/source/common/ucnv_ext.h +FILE: ../../../third_party/icu/source/common/unicode/utrace.h +FILE: ../../../third_party/icu/source/tools/toolutil/ucm.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/ucm.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/buddhcal.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/hebrwcal.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/islamcal.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/persncal.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/persncal.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/taiwncal.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/buddhcal.h +FILE: ../../../third_party/icu/source/i18n/hebrwcal.h +FILE: ../../../third_party/icu/source/i18n/islamcal.h +FILE: ../../../third_party/icu/source/i18n/persncal.cpp +FILE: ../../../third_party/icu/source/i18n/persncal.h +FILE: ../../../third_party/icu/source/i18n/taiwncal.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/taiwncal.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/taiwncal.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/buddhcal.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/buddhcal.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucol_swp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/udataswp.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/udataswp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uidna.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/uidna.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/usprep.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/utrace.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/genrb/prscmnts.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/icuswap/icuswap.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/makeconv/gencnvex.c + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucol_swp.h +FILE: ../../../third_party/icu/source/common/udataswp.cpp +FILE: ../../../third_party/icu/source/common/udataswp.h +FILE: ../../../third_party/icu/source/common/uidna.cpp +FILE: ../../../third_party/icu/source/common/unicode/uidna.h +FILE: ../../../third_party/icu/source/common/unicode/usprep.h +FILE: ../../../third_party/icu/source/common/utrace.cpp +FILE: ../../../third_party/icu/source/tools/genrb/prscmnts.cpp +FILE: ../../../third_party/icu/source/tools/icuswap/icuswap.cpp +FILE: ../../../third_party/icu/source/tools/makeconv/gencnvex.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/indiancal.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/indiancal.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2014, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucol_swp.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/pkgitems.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucol_swp.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/pkgitems.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/ulocdata.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/ulocdata.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2015, International Business Machines * + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/islamcal.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/islamcal.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2015, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucnv_ext.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/usprep.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/gensprep/gensprep.c + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucnv_ext.cpp +FILE: ../../../third_party/icu/source/common/usprep.cpp +FILE: ../../../third_party/icu/source/tools/gensprep/gensprep.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/ulocdata.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/ulocdata.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2016, International Business Machines * + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/hebrwcal.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/hebrwcal.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2003-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/utmscale.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/utmscale.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2004 - 2008, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/xmlparser.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/xmlparser.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2004-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/translit/el.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/translit/en.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/translit/el.txt +FILE: ../../../third_party/icu/source/data/translit/en.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2004-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/uset_imp.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/uset_imp.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2004-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/xmlparser.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/xmlparser.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2004-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/unicode/testtype.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/testtype.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2004-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucase.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/utext.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucase.h +FILE: ../../../third_party/icu/source/common/unicode/utext.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2004-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/utmscale.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/utmscale.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2004-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ubidi_props.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ubidi_props.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucase.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ubidi_props.cpp +FILE: ../../../third_party/icu/source/common/ubidi_props.h +FILE: ../../../third_party/icu/source/common/ucase.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2004-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/uregex.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/uregex.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2004-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/regexst.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/regexst.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2004-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ulocimp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/unidata/changes.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/ucol_sit.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/uregex.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ulocimp.h +FILE: ../../../third_party/icu/source/data/unidata/changes.txt +FILE: ../../../third_party/icu/source/i18n/ucol_sit.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/uregex.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2004-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/swapimpl.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/swapimpl.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/csrecog.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/csrecog.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2005-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/inputext.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/inputext.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2005-2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/wintz.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/wintz.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2005-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/ucasemap.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/csmatch.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/csmatch.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/csrecog.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/csrmbcs.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/csrucode.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/csrutf8.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/writesrc.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/writesrc.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/ucasemap.h +FILE: ../../../third_party/icu/source/i18n/csmatch.cpp +FILE: ../../../third_party/icu/source/i18n/csmatch.h +FILE: ../../../third_party/icu/source/i18n/csrecog.h +FILE: ../../../third_party/icu/source/i18n/csrmbcs.h +FILE: ../../../third_party/icu/source/i18n/csrucode.h +FILE: ../../../third_party/icu/source/i18n/csrutf8.h +FILE: ../../../third_party/icu/source/tools/toolutil/writesrc.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/writesrc.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2005-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/csrucode.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/ucsdet.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/csrucode.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/ucsdet.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2005-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/csrutf8.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/icupkg/icupkg.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/package.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/swapimpl.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/csrutf8.cpp +FILE: ../../../third_party/icu/source/tools/icupkg/icupkg.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/package.h +FILE: ../../../third_party/icu/source/tools/toolutil/swapimpl.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2005-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/wintz.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/csr2022.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/csrsbcs.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/windtfmt.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/winnmfmt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/wintz.cpp +FILE: ../../../third_party/icu/source/i18n/csr2022.h +FILE: ../../../third_party/icu/source/i18n/csrsbcs.h +FILE: ../../../third_party/icu/source/i18n/windtfmt.h +FILE: ../../../third_party/icu/source/i18n/winnmfmt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2005-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucasemap.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/utext.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/csdetect.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/csdetect.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/csr2022.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/csrmbcs.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/csrsbcs.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/inputext.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/ucsdet.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/windtfmt.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/winnmfmt.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/pkg_imp.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucasemap.cpp +FILE: ../../../third_party/icu/source/common/utext.cpp +FILE: ../../../third_party/icu/source/i18n/csdetect.cpp +FILE: ../../../third_party/icu/source/i18n/csdetect.h +FILE: ../../../third_party/icu/source/i18n/csr2022.cpp +FILE: ../../../third_party/icu/source/i18n/csrmbcs.cpp +FILE: ../../../third_party/icu/source/i18n/csrsbcs.cpp +FILE: ../../../third_party/icu/source/i18n/inputext.cpp +FILE: ../../../third_party/icu/source/i18n/ucsdet.cpp +FILE: ../../../third_party/icu/source/i18n/windtfmt.cpp +FILE: ../../../third_party/icu/source/i18n/winnmfmt.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_imp.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2005-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/localsvc.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/localsvc.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2006 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ubrkimpl.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ubrkimpl.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/brkeng.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/brkeng.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2006-2012, International Business Machines Corporation and others. * +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/dictbe.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/dictbe.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2006-2014, International Business Machines Corporation * +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/brkeng.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/dictbe.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/brkeng.cpp +FILE: ../../../third_party/icu/source/common/dictbe.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2006-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/bmpset.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unisetspan.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/bmpset.h +FILE: ../../../third_party/icu/source/common/unisetspan.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/msgfmt_impl.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/msgfmt_impl.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2008, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/dtrule.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/tztrans.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/dtrule.h +FILE: ../../../third_party/icu/source/i18n/unicode/tztrans.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2008, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/tzrule.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/tzrule.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2008, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/bmpset.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unisetspan.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/bmpset.cpp +FILE: ../../../third_party/icu/source/common/unisetspan.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/dtrule.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/tzrule.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/tztrans.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/dtrule.cpp +FILE: ../../../third_party/icu/source/i18n/tzrule.cpp +FILE: ../../../third_party/icu/source/i18n/tztrans.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/chnsecal.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/chnsecal.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/basictz.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/rbtz.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/basictz.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/msgfmt.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/vtzone.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/basictz.cpp +FILE: ../../../third_party/icu/source/i18n/rbtz.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/basictz.h +FILE: ../../../third_party/icu/source/i18n/unicode/msgfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/vtzone.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/rbtz.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/zonemeta.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/rbtz.h +FILE: ../../../third_party/icu/source/i18n/zonemeta.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/tzcode/icuzones + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/tzcode/icuzones +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/chnsecal.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/chnsecal.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2014, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/plurfmt.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/zonemeta.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/plurfmt.h +FILE: ../../../third_party/icu/source/i18n/zonemeta.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/udatpg.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/udatpg.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/tzcode/icuzdump.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/tzcode/icuzdump.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/dt_impl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/dtitv_impl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/dtptngen.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/dtptngen_impl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/plurrule.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/plurrule_impl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/reldtfmt.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/dtptngen.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/vtzone.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/dt_impl.h +FILE: ../../../third_party/icu/source/i18n/dtitv_impl.h +FILE: ../../../third_party/icu/source/i18n/dtptngen.cpp +FILE: ../../../third_party/icu/source/i18n/dtptngen_impl.h +FILE: ../../../third_party/icu/source/i18n/plurrule.cpp +FILE: ../../../third_party/icu/source/i18n/plurrule_impl.h +FILE: ../../../third_party/icu/source/i18n/reldtfmt.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/dtptngen.h +FILE: ../../../third_party/icu/source/i18n/vtzone.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/reldtfmt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/reldtfmt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2007-2016, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/tmutamt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/tmutamt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008, Google, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/pkg_gencmn.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_gencmn.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/dtintrv.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/dtintrv.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/dtintrv.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/dtintrv.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2009, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/wintzimpl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/pkg_genc.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/wintzimpl.h +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_genc.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucnvsel.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/ucnvsel.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucnvsel.cpp +FILE: ../../../third_party/icu/source/common/unicode/ucnvsel.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2011, International Business Machines +Corporation, Google and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/pkg_gencmn.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_gencmn.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/icu4j-readme.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/icu4j-readme.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2012, International Business Machines Corporation * +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/uspoof_impl.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/uspoof_impl.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/gender.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/gender.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/gender.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/gender.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/tmutfmt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/tmutfmt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2014, Google, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/tmunit.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/tmunit.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2014, Google, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/tmutfmt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/tmutfmt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2015, Google, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/brktrans.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/brktrans.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/uspoof_conf.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/pkg_icu.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/brktrans.cpp +FILE: ../../../third_party/icu/source/i18n/brktrans.h +FILE: ../../../third_party/icu/source/i18n/uspoof_conf.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_icu.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/uspoof.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/uspoof_build.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/uspoof.cpp +FILE: ../../../third_party/icu/source/i18n/uspoof_build.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2015, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/plurrule.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/plurrule.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/uspoof_conf.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/uspoof_impl.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/pkg_icu.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/uspoof_conf.h +FILE: ../../../third_party/icu/source/i18n/uspoof_impl.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_icu.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/uspoof.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/uspoof.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/dtitvfmt.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/dtitvinf.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/dtitvfmt.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/dtitvinf.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/dtitvfmt.cpp +FILE: ../../../third_party/icu/source/i18n/dtitvinf.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/dtitvfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/dtitvinf.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2008-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: systeminfo +ORIGIN: ../../../third_party/angle/src/third_party/systeminfo/SystemInfo.cpp +ORIGIN: ../../../third_party/angle/src/third_party/systeminfo/SystemInfo.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/angle/src/third_party/systeminfo/SystemInfo.cpp +FILE: ../../../third_party/angle/src/third_party/systeminfo/SystemInfo.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009 Apple Inc. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY +OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/misc/icustd.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/misc/icustd.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/filetools.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/filetools.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/icuinfo/icuplugins_windows_sample.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/icuinfo/icuplugins_windows_sample.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2010 IBM Corporation and Others. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/tmutamt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/tmutamt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2010, Google, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/ztrans.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/ztrans.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2010, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucln_imp.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucln_imp.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2011, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/errorcode.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/icudataver.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/errorcode.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/flagparser.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/errorcode.cpp +FILE: ../../../third_party/icu/source/common/icudataver.cpp +FILE: ../../../third_party/icu/source/common/unicode/errorcode.h +FILE: ../../../third_party/icu/source/tools/toolutil/flagparser.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/bytestream.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/bytestream.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/vzone.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/zrule.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/vzone.cpp +FILE: ../../../third_party/icu/source/i18n/zrule.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2011, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_arm64_neon.S +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm64_neon.S +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved. +Author: Ragesh Radhakrishnan +Copyright (C) 2014-2016, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. +Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_arm_neon.S +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm_neon.S +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved. +Copyright (C) 2014, Linaro Limited. All Rights Reserved. +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/filterednormalizer2.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-33722_P12A_P12A-2009_U2.ucm + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/filterednormalizer2.cpp +FILE: ../../../third_party/icu/source/data/mappings/ibm-33722_P12A_P12A-2009_U2.ucm +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/bytestream.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/bytestream.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/fpositer.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/fpositer.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/icudataver.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/normalizer2.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/wintzimpl.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/filetools.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/icudataver.h +FILE: ../../../third_party/icu/source/common/unicode/normalizer2.h +FILE: ../../../third_party/icu/source/i18n/wintzimpl.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/filetools.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/stringpiece.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/stringpiece.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/stringpiece.cpp +FILE: ../../../third_party/icu/source/common/unicode/stringpiece.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/smpdtfst.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/smpdtfst.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/smpdtfst.cpp +FILE: ../../../third_party/icu/source/i18n/smpdtfst.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ureslocs.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ureslocs.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/normalizer2impl.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/normalizer2impl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/std_string.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/gennorm2/gennorm2.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/gennorm2/n2builder.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/normalizer2impl.cpp +FILE: ../../../third_party/icu/source/common/normalizer2impl.h +FILE: ../../../third_party/icu/source/common/unicode/std_string.h +FILE: ../../../third_party/icu/source/tools/gennorm2/gennorm2.cpp +FILE: ../../../third_party/icu/source/tools/gennorm2/n2builder.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/alphaindex.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/currpinf.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/alphaindex.cpp +FILE: ../../../third_party/icu/source/i18n/currpinf.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/icuplug.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/icuplugimp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uloc_tag.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/icuplug.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/unorm2.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/udatpg.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/icuinfo/testplug.c + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/flagparser.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/icuplug.cpp +FILE: ../../../third_party/icu/source/common/icuplugimp.h +FILE: ../../../third_party/icu/source/common/uloc_tag.cpp +FILE: ../../../third_party/icu/source/common/unicode/icuplug.h +FILE: ../../../third_party/icu/source/common/unicode/unorm2.h +FILE: ../../../third_party/icu/source/i18n/udatpg.cpp +FILE: ../../../third_party/icu/source/tools/icuinfo/testplug.c +FILE: ../../../third_party/icu/source/tools/toolutil/flagparser.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/fphdlimp.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/plurfmt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/fphdlimp.cpp +FILE: ../../../third_party/icu/source/i18n/plurfmt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/fphdlimp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/currpinf.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/fphdlimp.h +FILE: ../../../third_party/icu/source/i18n/unicode/currpinf.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2015, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/normalizer2.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ulist.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ulist.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/localpointer.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/gencfu/gencfu.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/gennorm2/n2builder.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/pkg_genc.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/normalizer2.cpp +FILE: ../../../third_party/icu/source/common/ulist.cpp +FILE: ../../../third_party/icu/source/common/ulist.h +FILE: ../../../third_party/icu/source/common/unicode/localpointer.h +FILE: ../../../third_party/icu/source/tools/gencfu/gencfu.cpp +FILE: ../../../third_party/icu/source/tools/gennorm2/n2builder.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_genc.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/vzone.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/zrule.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/ztrans.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/vzone.h +FILE: ../../../third_party/icu/source/i18n/zrule.h +FILE: ../../../third_party/icu/source/i18n/ztrans.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/tmunit.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/tmunit.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2016, International Business Machines Corporation, * +Google, and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/nounit.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/nounit.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2017, International Business Machines Corporation, * +Google, and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/selfmt.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/selfmtimpl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/selfmt.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/umsg.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/selfmt.cpp +FILE: ../../../third_party/icu/source/i18n/selfmtimpl.h +FILE: ../../../third_party/icu/source/i18n/unicode/selfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/umsg.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010 , Yahoo! Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d1.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d2.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d3.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d4.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d5.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d6.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d7.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/icu-internal-compound-s1.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/icu-internal-compound-s2.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/icu-internal-compound-s3.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/icu-internal-compound-t.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/denseranges.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/denseranges.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d1.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d2.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d3.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d4.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d5.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d6.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d7.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-s1.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-s2.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-s3.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-t.ucm +FILE: ../../../third_party/icu/source/tools/toolutil/denseranges.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/denseranges.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/bytestrie.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucharstrie.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucharstrieiterator.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/bytestrie.cpp +FILE: ../../../third_party/icu/source/common/ucharstrie.cpp +FILE: ../../../third_party/icu/source/common/ucharstrieiterator.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/udateintervalformat.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/udateintervalformat.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/bytestriebuilder.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/bytestrieiterator.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/stringtriebuilder.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucharstriebuilder.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/bytestrie.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/idna.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/ucharstrie.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/ustringtrie.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/fpositer.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/bytestriebuilder.cpp +FILE: ../../../third_party/icu/source/common/bytestrieiterator.cpp +FILE: ../../../third_party/icu/source/common/stringtriebuilder.cpp +FILE: ../../../third_party/icu/source/common/ucharstriebuilder.cpp +FILE: ../../../third_party/icu/source/common/unicode/bytestrie.h +FILE: ../../../third_party/icu/source/common/unicode/idna.h +FILE: ../../../third_party/icu/source/common/unicode/ucharstrie.h +FILE: ../../../third_party/icu/source/common/unicode/ustringtrie.h +FILE: ../../../third_party/icu/source/i18n/unicode/fpositer.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/upluralrules.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/upluralrules.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/stringtriebuilder.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/stringtriebuilder.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2012,2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/udateintervalformat.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/udateintervalformat.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2012,2015 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/ugender.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/upluralrules.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/ugender.h +FILE: ../../../third_party/icu/source/i18n/unicode/upluralrules.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/collation.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationiterator.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationiterator.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/utf16collationiterator.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/utf16collationiterator.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/collation.cpp +FILE: ../../../third_party/icu/source/i18n/collationiterator.cpp +FILE: ../../../third_party/icu/source/i18n/collationiterator.h +FILE: ../../../third_party/icu/source/i18n/utf16collationiterator.cpp +FILE: ../../../third_party/icu/source/i18n/utf16collationiterator.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/numsys.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/numsys.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/fmtableimp.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/fmtableimp.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2014, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/cldr-icu-readme.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/cldr-icu-readme.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2014, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/charstr.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucnv_ct.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uts46.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collation.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationdata.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/charstr.cpp +FILE: ../../../third_party/icu/source/common/ucnv_ct.cpp +FILE: ../../../third_party/icu/source/common/uts46.cpp +FILE: ../../../third_party/icu/source/i18n/collation.h +FILE: ../../../third_party/icu/source/i18n/collationdata.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/numsys.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/numsys.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/misc/icuver.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/misc/icuver.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2016 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/bytestriebuilder.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/ucharstriebuilder.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/bytestriebuilder.h +FILE: ../../../third_party/icu/source/common/unicode/ucharstriebuilder.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/uldnames.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/uldnames.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/locdspnm.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/locdspnm.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/locdspnm.cpp +FILE: ../../../third_party/icu/source/common/unicode/locdspnm.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2010-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-gobject-enums.cc.tmpl +ORIGIN: ../../../third_party/harfbuzz/src/hb-gobject-structs.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-gobject.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-gobject-enums.cc.tmpl +FILE: ../../../third_party/harfbuzz/src/hb-gobject-structs.h +FILE: ../../../third_party/harfbuzz/src/hb-gobject.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: include +ORIGIN: ../../../third_party/inja/third_party/include/hayai/hayai_clock.hpp +TYPE: LicenseType.unknown +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_clock.hpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011 Nick Bruun +Copyright (C) 2013 Vlad Lazarenko +Copyright (C) 2014 Nicolas Pauss +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/messageimpl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/patternprops.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/patternprops.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucasemap_titlecase_brkiter.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uniset_closure.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unistr_case_locale.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unistr_titlecase_brkiter.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ustr_titlecase_brkiter.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ustrcase_locale.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/messageimpl.h +FILE: ../../../third_party/icu/source/common/patternprops.cpp +FILE: ../../../third_party/icu/source/common/patternprops.h +FILE: ../../../third_party/icu/source/common/ucasemap_titlecase_brkiter.cpp +FILE: ../../../third_party/icu/source/common/uniset_closure.cpp +FILE: ../../../third_party/icu/source/common/unistr_case_locale.cpp +FILE: ../../../third_party/icu/source/common/unistr_titlecase_brkiter.cpp +FILE: ../../../third_party/icu/source/common/ustr_titlecase_brkiter.cpp +FILE: ../../../third_party/icu/source/common/ustrcase_locale.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/appendable.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/messagepattern.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/appendable.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/appendable.cpp +FILE: ../../../third_party/icu/source/common/messagepattern.cpp +FILE: ../../../third_party/icu/source/common/unicode/appendable.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/tzgnames.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/tzgnames.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011-2012, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/translit/el_Upper.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/translit/nl_Title.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/translit/el_Upper.txt +FILE: ../../../third_party/icu/source/data/translit/nl_Title.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011-2013, Apple Inc. and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/translit/az_Upper.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/translit/lt_Upper.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/translit/tr_Upper.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/translit/az_Upper.txt +FILE: ../../../third_party/icu/source/data/translit/lt_Upper.txt +FILE: ../../../third_party/icu/source/data/translit/tr_Upper.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011-2013, Apple Inc.; Unicode, Inc.; and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/messagepattern.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/ppucd.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/messagepattern.h +FILE: ../../../third_party/icu/source/tools/toolutil/ppucd.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/alphaindex.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/alphaindex.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/ppucd.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/ppucd.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/uposixdefs.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/uposixdefs.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/tzfmt.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/tzfmt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/tzfmt.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/tzfmt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/tznames.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/tznames.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011-2015, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/tzgnames.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/tznames_impl.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/tznames_impl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/tznames.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/tzgnames.cpp +FILE: ../../../third_party/icu/source/i18n/tznames_impl.cpp +FILE: ../../../third_party/icu/source/i18n/tznames_impl.h +FILE: ../../../third_party/icu/source/i18n/unicode/tznames.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2011-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ucd.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ucd.cc +---------------------------------------------------------------------------------------------------- +Copyright (C) 2012 Grigori Goronzy + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/regeximp.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/regeximp.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2012 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/enumset.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/enumset.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2012,2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/collationdatabuilder.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationfcd.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationkeys.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationroot.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationroot.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/uitercollationiterator.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/utf8collationiterator.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/collationdatabuilder.h +FILE: ../../../third_party/icu/source/i18n/collationfcd.h +FILE: ../../../third_party/icu/source/i18n/collationkeys.h +FILE: ../../../third_party/icu/source/i18n/collationroot.cpp +FILE: ../../../third_party/icu/source/i18n/collationroot.h +FILE: ../../../third_party/icu/source/i18n/uitercollationiterator.cpp +FILE: ../../../third_party/icu/source/i18n/utf8collationiterator.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2012-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/collationdata.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationdatabuilder.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationkeys.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/collationdata.cpp +FILE: ../../../third_party/icu/source/i18n/collationdatabuilder.cpp +FILE: ../../../third_party/icu/source/i18n/collationkeys.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2012-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/utypeinfo.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/uitercollationiterator.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/compactdecimalformat.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/listformatter.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/utf8collationiterator.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/utypeinfo.h +FILE: ../../../third_party/icu/source/i18n/uitercollationiterator.h +FILE: ../../../third_party/icu/source/i18n/unicode/compactdecimalformat.h +FILE: ../../../third_party/icu/source/i18n/unicode/listformatter.h +FILE: ../../../third_party/icu/source/i18n/utf8collationiterator.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2012-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: vulkan-validation-layers +LIBRARY: xxhash +ORIGIN: ../../../third_party/angle/src/common/third_party/xxhash/xxhash.c +ORIGIN: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/xxhash.c +TYPE: LicenseType.bsd +FILE: ../../../third_party/angle/src/common/third_party/xxhash/xxhash.c +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/xxhash.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2012-2016, Yann Collet + +BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: vulkan-validation-layers +LIBRARY: xxhash +ORIGIN: ../../../third_party/angle/src/common/third_party/xxhash/xxhash.h +ORIGIN: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/xxhash.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/angle/src/common/third_party/xxhash/xxhash.h +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/xxhash.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2012-2016, Yann Collet. + +BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-gobject-enums.h.tmpl +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-gobject-enums.h.tmpl +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/StandAlone/Worklist.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ScanContext.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/limits.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/StandAlone/Worklist.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ScanContext.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/limits.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpContext.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpContext.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/linkValidate.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/linkValidate.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/misc/currencyNumericCodes.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/scriptset.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/misc/currencyNumericCodes.txt +FILE: ../../../third_party/icu/source/i18n/scriptset.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/dangical.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/dangical.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/dangical.cpp +FILE: ../../../third_party/icu/source/i18n/dangical.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/region_impl.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/region_impl.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unumsys.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unumsys.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2_asm.h +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2_asm.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/collationbuilder.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationbuilder.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationdatawriter.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationrootelements.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationrootelements.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationruleparser.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationsets.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationsets.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationtailoring.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/tzcode/icuregions + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/collationbuilder.cpp +FILE: ../../../third_party/icu/source/i18n/collationbuilder.h +FILE: ../../../third_party/icu/source/i18n/collationdatawriter.h +FILE: ../../../third_party/icu/source/i18n/collationrootelements.cpp +FILE: ../../../third_party/icu/source/i18n/collationrootelements.h +FILE: ../../../third_party/icu/source/i18n/collationruleparser.h +FILE: ../../../third_party/icu/source/i18n/collationsets.cpp +FILE: ../../../third_party/icu/source/i18n/collationsets.h +FILE: ../../../third_party/icu/source/i18n/collationtailoring.h +FILE: ../../../third_party/icu/source/tools/tzcode/icuregions +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/unumsys.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/unumsys.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/sharedbreakiterator.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/sharedbreakiterator.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013-2014, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/uformattable.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/uformattable.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013-2014, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2.S TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/inffast.h -FILE: ../../../third_party/zlib/inffast.h +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2.S +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013-2014, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/collationdatareader.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationdatareader.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationdatawriter.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationfastlatin.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationfastlatin.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationfastlatinbuilder.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationruleparser.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationsettings.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationsettings.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationtailoring.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/collationinfo.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/toolutil/collationinfo.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/collationdatareader.cpp +FILE: ../../../third_party/icu/source/i18n/collationdatareader.h +FILE: ../../../third_party/icu/source/i18n/collationdatawriter.cpp +FILE: ../../../third_party/icu/source/i18n/collationfastlatin.cpp +FILE: ../../../third_party/icu/source/i18n/collationfastlatin.h +FILE: ../../../third_party/icu/source/i18n/collationfastlatinbuilder.cpp +FILE: ../../../third_party/icu/source/i18n/collationruleparser.cpp +FILE: ../../../third_party/icu/source/i18n/collationsettings.cpp +FILE: ../../../third_party/icu/source/i18n/collationsettings.h +FILE: ../../../third_party/icu/source/i18n/collationtailoring.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/collationinfo.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/collationinfo.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/uregion.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/uregion.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/reflection.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/reflection.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/reflection.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/reflection.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013-2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/uscript_props.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/collationfastlatinbuilder.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/listformatter.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/uscript_props.cpp +FILE: ../../../third_party/icu/source/i18n/collationfastlatinbuilder.h +FILE: ../../../third_party/icu/source/i18n/listformatter.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/lang/an.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/lang/ku.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/lang/tg.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/lang/wa.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/locales/ku.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/locales/tg.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/lang/an.txt +FILE: ../../../third_party/icu/source/data/lang/ku.txt +FILE: ../../../third_party/icu/source/data/lang/tg.txt +FILE: ../../../third_party/icu/source/data/lang/wa.txt +FILE: ../../../third_party/icu/source/data/locales/ku.txt +FILE: ../../../third_party/icu/source/data/locales/tg.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/zone/tzdbNames.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/zone/tzdbNames.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GlslangToSpv.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/spvIR.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GlslangToSpv.h +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/spvIR.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolor-altivec.c +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jcgray-altivec.c +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jfdctfst-altivec.c +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jfdctint-altivec.c +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-altivec.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014, D. R. Commander. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/dictionarydata.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/loadednormalizer2impl.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/norm2allmodes.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/euc-tw-2014.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/mappings/ibm-1375_P100-2008.ucm + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/scriptset.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/sharedbreakiterator.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/sharedcalendar.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/shareddateformatsymbols.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/sharednumberformat.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/sharedpluralrules.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/dictionarydata.h +FILE: ../../../third_party/icu/source/common/loadednormalizer2impl.cpp +FILE: ../../../third_party/icu/source/common/norm2allmodes.h +FILE: ../../../third_party/icu/source/data/mappings/euc-tw-2014.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1375_P100-2008.ucm +FILE: ../../../third_party/icu/source/i18n/scriptset.cpp +FILE: ../../../third_party/icu/source/i18n/sharedbreakiterator.h +FILE: ../../../third_party/icu/source/i18n/sharedcalendar.h +FILE: ../../../third_party/icu/source/i18n/shareddateformatsymbols.h +FILE: ../../../third_party/icu/source/i18n/sharednumberformat.h +FILE: ../../../third_party/icu/source/i18n/sharedpluralrules.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/uregion.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/uregion.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/disassemble.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/disassemble.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/doc.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/disassemble.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/disassemble.h +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/doc.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014-2015 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SpvBuilder.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SpvBuilder.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SpvBuilder.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SpvBuilder.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2003, 2010 Mark Adler +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +All rights reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/contrib/optimizations/inffast_chunk.h + ../../../third_party/zlib/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/contrib/optimizations/inffast_chunk.h +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/doc.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/doc.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2003, 2010 Mark Adler -Copyright (C) 2017 ARM, Inc. +Copyright (C) 2014-2015 LunarG, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +All rights reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/uncompr.c + ../../../third_party/zlib/zlib.h +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jidctfst-altivec.c +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jidctint-altivec.c +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jquanti-altivec.c +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_altivec.h TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/uncompr.c +FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jquanti-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_altivec.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2003, 2010, 2014, 2016 Jean-loup Gailly, Mark Adler +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -4192,14 +24971,15 @@ freely, subject to the following restrictions: ==================================================================================================== ==================================================================================================== -LIBRARY: freetype2 -LIBRARY: zlib -ORIGIN: ../../../third_party/freetype2/src/gzip/inftrees.h + ../../../third_party/freetype2/src/gzip/zlib.h +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolext-altivec.c +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jcgryext-altivec.c TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/inftrees.h -FILE: ../../../third_party/zlib/inftrees.h +FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-altivec.c ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2005, 2010 Mark Adler +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2014, Jay Foad. All Rights Reserved. This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -4219,92 +24999,532 @@ freely, subject to the following restrictions: ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/compress.c + ../../../third_party/zlib/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/compress.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/filteredbrk.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/filteredbrk.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler +Copyright (C) 2014-2015, International Business Machines Corporation and +others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/gzip/crc32.c + ../../../third_party/freetype2/src/gzip/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/crc32.c +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GlslangToSpv.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GlslangToSpv.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2006, 2010, 2011, 2012, 2016 Mark Adler +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +All rights reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: freetype2 -LIBRARY: zlib -ORIGIN: ../../../third_party/freetype2/src/gzip/adler32.c + ../../../third_party/freetype2/src/gzip/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/adler32.c -FILE: ../../../third_party/zlib/adler32.c +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SpvTools.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SpvTools.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2011, 2016 Mark Adler +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2018 Google, Inc. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +All rights reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SpvTools.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SpvTools.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2018-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/dictionarydata.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/simpleformatter.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/uloc_keytype.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/simpleformatter.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/quantityformatter.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/quantityformatter.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/dictionarydata.cpp +FILE: ../../../third_party/icu/source/common/simpleformatter.cpp +FILE: ../../../third_party/icu/source/common/uloc_keytype.cpp +FILE: ../../../third_party/icu/source/common/unicode/simpleformatter.h +FILE: ../../../third_party/icu/source/i18n/quantityformatter.cpp +FILE: ../../../third_party/icu/source/i18n/quantityformatter.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/udisplaycontext.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/udisplaycontext.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/reldatefmt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/reldatefmt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014-2016, International Business Machines Corporation and +others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/region.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/reldatefmt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/region.cpp +FILE: ../../../third_party/icu/source/i18n/reldatefmt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/region.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/region.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014-2016, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SPVRemapper.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SPVRemapper.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/StandAlone/spirv-remap.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SPVRemapper.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SPVRemapper.h +FILE: ../../../third_party/vulkan-deps/glslang/src/StandAlone/spirv-remap.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2015 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: rapidjson +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/schema.h + http://opensource->org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/schema.h +TYPE: LicenseType.mit +FILE: ../../../third_party/rapidjson/include/rapidjson/schema.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip-> All rights reserved-> + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: rapidjson +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/allocators.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/allocators.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/cursorstreamwrapper.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/cursorstreamwrapper.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/document.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/document.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/encodedstream.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/encodedstream.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/encodings.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/encodings.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/error/en.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/error/en.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/error/error.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/error/error.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/filereadstream.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/filereadstream.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/filewritestream.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/filewritestream.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/fwd.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/fwd.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/internal/biginteger.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/internal/biginteger.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/internal/diyfp.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/internal/diyfp.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/internal/dtoa.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/internal/dtoa.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/internal/ieee754.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/internal/ieee754.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/internal/itoa.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/internal/itoa.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/internal/meta.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/internal/meta.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/internal/pow10.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/internal/pow10.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/internal/regex.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/internal/regex.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/internal/stack.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/internal/stack.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/internal/strfunc.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/internal/strfunc.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/internal/strtod.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/internal/strtod.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/internal/swap.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/internal/swap.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/istreamwrapper.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/istreamwrapper.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/memorybuffer.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/memorybuffer.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/memorystream.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/memorystream.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/ostreamwrapper.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/ostreamwrapper.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/pointer.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/pointer.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/prettywriter.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/prettywriter.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/rapidjson.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/rapidjson.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/reader.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/reader.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/stream.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/stream.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/stringbuffer.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/stringbuffer.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/writer.h + http://opensource.org/licenses/MIT referenced by ../../../third_party/rapidjson/include/rapidjson/writer.h +TYPE: LicenseType.mit +FILE: ../../../third_party/rapidjson/include/rapidjson/allocators.h +FILE: ../../../third_party/rapidjson/include/rapidjson/cursorstreamwrapper.h +FILE: ../../../third_party/rapidjson/include/rapidjson/document.h +FILE: ../../../third_party/rapidjson/include/rapidjson/encodedstream.h +FILE: ../../../third_party/rapidjson/include/rapidjson/encodings.h +FILE: ../../../third_party/rapidjson/include/rapidjson/error/en.h +FILE: ../../../third_party/rapidjson/include/rapidjson/error/error.h +FILE: ../../../third_party/rapidjson/include/rapidjson/filereadstream.h +FILE: ../../../third_party/rapidjson/include/rapidjson/filewritestream.h +FILE: ../../../third_party/rapidjson/include/rapidjson/fwd.h +FILE: ../../../third_party/rapidjson/include/rapidjson/internal/biginteger.h +FILE: ../../../third_party/rapidjson/include/rapidjson/internal/diyfp.h +FILE: ../../../third_party/rapidjson/include/rapidjson/internal/dtoa.h +FILE: ../../../third_party/rapidjson/include/rapidjson/internal/ieee754.h +FILE: ../../../third_party/rapidjson/include/rapidjson/internal/itoa.h +FILE: ../../../third_party/rapidjson/include/rapidjson/internal/meta.h +FILE: ../../../third_party/rapidjson/include/rapidjson/internal/pow10.h +FILE: ../../../third_party/rapidjson/include/rapidjson/internal/regex.h +FILE: ../../../third_party/rapidjson/include/rapidjson/internal/stack.h +FILE: ../../../third_party/rapidjson/include/rapidjson/internal/strfunc.h +FILE: ../../../third_party/rapidjson/include/rapidjson/internal/strtod.h +FILE: ../../../third_party/rapidjson/include/rapidjson/internal/swap.h +FILE: ../../../third_party/rapidjson/include/rapidjson/istreamwrapper.h +FILE: ../../../third_party/rapidjson/include/rapidjson/memorybuffer.h +FILE: ../../../third_party/rapidjson/include/rapidjson/memorystream.h +FILE: ../../../third_party/rapidjson/include/rapidjson/ostreamwrapper.h +FILE: ../../../third_party/rapidjson/include/rapidjson/pointer.h +FILE: ../../../third_party/rapidjson/include/rapidjson/prettywriter.h +FILE: ../../../third_party/rapidjson/include/rapidjson/rapidjson.h +FILE: ../../../third_party/rapidjson/include/rapidjson/reader.h +FILE: ../../../third_party/rapidjson/include/rapidjson/stream.h +FILE: ../../../third_party/rapidjson/include/rapidjson/stringbuffer.h +FILE: ../../../third_party/rapidjson/include/rapidjson/writer.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== ==================================================================================================== -LIBRARY: freetype2 -LIBRARY: zlib -ORIGIN: ../../../third_party/freetype2/src/gzip/ftzconf.h + ../../../third_party/freetype2/src/gzip/zlib.h +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jcsample-altivec.c +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jdcolext-altivec.c +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jdcolor-altivec.c +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jdmerge-altivec.c +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jdmrgext-altivec.c +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jdsample-altivec.c TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/ftzconf.h -FILE: ../../../third_party/freetype2/src/gzip/zutil.h -FILE: ../../../third_party/zlib/zconf.h +FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jdcolor-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jdmerge-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-altivec.c ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2016 Jean-loup Gailly, Mark Adler +Copyright (C) 2015, D. R. Commander. All Rights Reserved. This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -4324,897 +25544,1185 @@ freely, subject to the following restrictions: ==================================================================================================== ==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/gzip/infback.c + ../../../third_party/freetype2/src/gzip/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/infback.c -FILE: ../../../third_party/freetype2/src/gzip/inflate.c -FILE: ../../../third_party/freetype2/src/gzip/inflate.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/sharedobject.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/sharedobject.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2016 Mark Adler +Copyright (C) 2015, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: freetype2 -LIBRARY: zlib -ORIGIN: ../../../third_party/freetype2/src/gzip/zutil.c + ../../../third_party/freetype2/src/gzip/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/zutil.c -FILE: ../../../third_party/zlib/zutil.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/ufieldpositer.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/ulistformatter.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/ufieldpositer.cpp +FILE: ../../../third_party/icu/source/i18n/ulistformatter.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2017 Jean-loup Gailly +Copyright (C) 2015, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/gzip/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/crc32.h -FILE: ../../../third_party/freetype2/src/gzip/inffixed.h -FILE: ../../../third_party/freetype2/src/gzip/patches/freetype-zlib.diff -FILE: ../../../third_party/freetype2/src/gzip/zlib.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/standardplural.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/standardplural.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/standardplural.cpp +FILE: ../../../third_party/icu/source/i18n/standardplural.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler +Copyright (C) 2015, International Business Machines Corporation +and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: freetype2 -LIBRARY: zlib -ORIGIN: ../../../third_party/freetype2/src/gzip/inffast.c + ../../../third_party/freetype2/src/gzip/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/inffast.c -FILE: ../../../third_party/freetype2/src/gzip/inftrees.c -FILE: ../../../third_party/zlib/contrib/optimizations/inffast_chunk.c -FILE: ../../../third_party/zlib/inffast.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/pluralmap.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/pluralmap.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unifiedcache.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unifiedcache.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unistrappender.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/numsys_impl.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/pluralmap.cpp +FILE: ../../../third_party/icu/source/common/pluralmap.h +FILE: ../../../third_party/icu/source/common/unifiedcache.cpp +FILE: ../../../third_party/icu/source/common/unifiedcache.h +FILE: ../../../third_party/icu/source/common/unistrappender.h +FILE: ../../../third_party/icu/source/i18n/numsys_impl.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2017 Mark Adler +Copyright (C) 2015, International Business Machines Corporation and +others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/deflate.h + ../../../third_party/zlib/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/deflate.h +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/propagateNoContraction.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/propagateNoContraction.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/propagateNoContraction.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/propagateNoContraction.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2018 Jean-loup Gailly +Copyright (C) 2015-2016 Google, Inc. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +All rights reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/inflate.h + ../../../third_party/zlib/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/inflate.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/cstr.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/resource.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/resource.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/sharedobject.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/cstr.cpp +FILE: ../../../third_party/icu/source/common/resource.cpp +FILE: ../../../third_party/icu/source/common/resource.h +FILE: ../../../third_party/icu/source/common/sharedobject.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2019 Mark Adler +Copyright (C) 2015-2016, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/trees.c + ../../../third_party/zlib/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/trees.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/ufieldpositer.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/ulistformatter.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/ufieldpositer.h +FILE: ../../../third_party/icu/source/i18n/unicode/ulistformatter.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2021 Jean-loup Gailly -detect_data_type() function provided freely by Cosmin Truta, 2006 +Copyright (C) 2015-2016, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/deflate.c -FILE: ../../../third_party/zlib/zlib.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/collunsafe.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/collunsafe.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler +Copyright (C) 2015-2016, International Business Machines Corporation and others. +All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/zutil.h + ../../../third_party/zlib/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/zutil.h +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/parseVersions.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/parseVersions.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2022 Jean-loup Gailly, Mark Adler +Copyright (C) 2015-2018 Google, Inc. +Copyright (C) 2017 ARM Limited. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +All rights reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/contrib/optimizations/inflate.c + ../../../third_party/zlib/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/contrib/optimizations/inflate.c -FILE: ../../../third_party/zlib/crc32.c -FILE: ../../../third_party/zlib/infback.c -FILE: ../../../third_party/zlib/inflate.c -FILE: ../../../third_party/zlib/inftrees.c +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/InReadableOrder.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/InReadableOrder.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2022 Mark Adler +Copyright (C) 2016 Google, Inc. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +All rights reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/contrib/minizip/zip.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/contrib/minizip/zip.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/Logger.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/Logger.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/StandAlone/ResourceLimits.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/StandAlone/ResourceLimits.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/AST.FromFile.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/BuiltInResource.FromFile.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/Config.FromFile.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/Initializer.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/Link.FromFile.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/Pp.FromFile.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/Settings.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/Settings.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/TestFixture.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/TestFixture.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/main.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/Logger.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/Logger.h +FILE: ../../../third_party/vulkan-deps/glslang/src/StandAlone/ResourceLimits.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/StandAlone/ResourceLimits.h +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/AST.FromFile.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/BuiltInResource.FromFile.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/Config.FromFile.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/Initializer.h +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/Link.FromFile.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/Pp.FromFile.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/Settings.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/Settings.h +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/TestFixture.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/TestFixture.h +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/main.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2016 Google, Inc. -Modifications for Zip64 support -Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) +All rights reserved. -For more info read MiniZip_info.txt +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -Condition of use and distribution are the same than zlib : + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/contrib/minizip/unzip.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/contrib/minizip/unzip.h +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslOpMap.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslOpMap.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslScanContext.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslTokenStream.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslTokenStream.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslOpMap.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslOpMap.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslScanContext.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslTokenStream.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslTokenStream.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) +Copyright (C) 2016 Google, Inc. -Modifications of Unzip for Zip64 -Copyright (C) 2007-2008 Even Rouault - -Modifications for Zip64 support on both zip and unzip -Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) +All rights reserved. -For more info read MiniZip_info.txt +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -Condition of use and distribution are the same than zlib : + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2.asm +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/Hlsl.FromFile.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/Hlsl.FromFile.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright (C) 2016 Google, Inc. +Copyright (C) 2016 LunarG, Inc. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +All rights reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcf.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcf.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by -Francesco Zappa Nardelli + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcfdrivr.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcfdrivr.c +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslScanContext.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslTokens.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslScanContext.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslTokens.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by -Francesco Zappa Nardelli +Copyright (C) 2016 Google, Inc. +Copyright (C) 2016 LunarG, Inc. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +All rights reserved. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdf.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdf.c ----------------------------------------------------------------------------------------------------- -Copyright (C) 2001, 2002 by -Francesco Zappa Nardelli + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdfdrivr.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdfdrivr.h +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/Spv.FromFile.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/Spv.FromFile.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 2001, 2002, 2003, 2004 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Copyright (C) 2016 Google, Inc. +Copyright (C) 2019 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +All rights reserved. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdfdrivr.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdfdrivr.c ----------------------------------------------------------------------------------------------------- -Copyright (C) 2001-2008, 2011, 2013, 2014 by -Francesco Zappa Nardelli + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/gzip/gzguts.h + ../../../third_party/freetype2/src/gzip/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/gzguts.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/locales/an.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/locales/wa.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/locales/an.txt +FILE: ../../../third_party/icu/source/data/locales/wa.txt ---------------------------------------------------------------------------------------------------- -Copyright (C) 2004, 2005, 2010, 2011, 2012, 2013, 2016 Mark Adler +Copyright (C) 2016 International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/gzclose.c + ../../../third_party/zlib/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/gzclose.c +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslParseables.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslParseables.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/LiveTraverser.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/iomapper.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslParseables.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslParseables.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/LiveTraverser.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/iomapper.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 2004, 2010 Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright (C) 2016 LunarG, Inc. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +All rights reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/gzread.c + ../../../third_party/zlib/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/gzread.c ----------------------------------------------------------------------------------------------------- -Copyright (C) 2004-2017 Mark Adler + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/gzguts.h + ../../../third_party/zlib/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/gzguts.h -FILE: ../../../third_party/zlib/gzlib.c -FILE: ../../../third_party/zlib/gzwrite.c +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/Remap.FromFile.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/Remap.FromFile.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 2004-2019 Mark Adler +Copyright (C) 2016 LunarG, Inc. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +All rights reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: angle -ORIGIN: ../../../third_party/angle/src/third_party/systeminfo/SystemInfo.cpp +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslAttributes.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslAttributes.h TYPE: LicenseType.bsd -FILE: ../../../third_party/angle/src/third_party/systeminfo/SystemInfo.cpp -FILE: ../../../third_party/angle/src/third_party/systeminfo/SystemInfo.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslAttributes.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslAttributes.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 2009 Apple Inc. All Rights Reserved. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -1. Redistributions of source code must retain the above copyright + + Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2-64.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-sse2.asm +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/brkitr/dictionaries/thaidict.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/escapesrc/cptbl.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/brkitr/dictionaries/thaidict.txt +FILE: ../../../third_party/icu/source/tools/escapesrc/cptbl.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 2009, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright (C) 2016 and later: Unicode, Inc. and others. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jchuff-sse2-64.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jchuff-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jchuff-sse2.asm +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/cstr.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/dayperiodrules.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/dayperiodrules.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/cstr.h +FILE: ../../../third_party/icu/source/i18n/dayperiodrules.cpp +FILE: ../../../third_party/icu/source/i18n/dayperiodrules.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 2009-2011, 2014-2016, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. +Copyright (C) 2016, International Business Machines +Corporation and others. All Rights Reserved. -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/ureldatefmt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/ureldatefmt.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_arm64_neon.S -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm64_neon.S +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/Link.FromFile.Vk.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/Link.FromFile.Vk.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). -All Rights Reserved. -Author: Siarhei Siamashka -Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved. -Author: Ragesh Radhakrishnan -Copyright (C) 2014-2016, D. R. Commander. All Rights Reserved. -Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. -Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright (C) 2016-2017 Google, Inc. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +All rights reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_arm_neon.S -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm_neon.S ----------------------------------------------------------------------------------------------------- -Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). -All Rights Reserved. -Author: Siarhei Siamashka -Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved. -Copyright (C) 2014, Linaro Limited. All Rights Reserved. -Copyright (C) 2015, D. R. Commander. All Rights Reserved. -Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-gobject-enums.cc.tmpl -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-gobject-enums.cc.tmpl -FILE: ../../../third_party/harfbuzz/src/hb-gobject-structs.h -FILE: ../../../third_party/harfbuzz/src/hb-gobject.h +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/GlslMapIO.FromFile.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/VkRelaxed.FromFile.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/GlslMapIO.FromFile.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/VkRelaxed.FromFile.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 2011 Google, Inc. +Copyright (C) 2016-2017 Google, Inc. +Copyright (C) 2020 The Khronos Group Inc. - This is part of HarfBuzz, a text shaping library. +All rights reserved. -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jcgray-sse2-64.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-sse2.asm +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/iomapper.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/iomapper.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 2011, D. R. Commander. +Copyright (C) 2016-2017 LunarG, Inc. -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +All rights reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ucd.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ucd.cc +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslParseHelper.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslParseHelper.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 2012 Grigori Goronzy +Copyright (C) 2016-2018 Google, Inc. +Copyright (C) 2016 LunarG, Inc. -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. +All rights reserved. -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: xxhash -ORIGIN: ../../../third_party/angle/src/common/third_party/xxhash/xxhash.c +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslGrammar.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslGrammar.h TYPE: LicenseType.bsd -FILE: ../../../third_party/angle/src/common/third_party/xxhash/xxhash.c +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslGrammar.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslGrammar.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 2012-2016, Yann Collet +Copyright (C) 2016-2018 Google, Inc. +Copyright (C) 2016 LunarG, Inc. -BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) +All rights reserved. Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +modification, are permitted provided that the following conditions +are met: -* Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: xxhash -ORIGIN: ../../../third_party/angle/src/common/third_party/xxhash/xxhash.h +LIBRARY: zlib +ORIGIN: ../../../third_party/zlib/contrib/optimizations/chunkcopy.h + ../../../LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/angle/src/common/third_party/xxhash/xxhash.h +FILE: ../../../third_party/zlib/contrib/optimizations/chunkcopy.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 2012-2016, Yann Collet. - -BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) +Copyright (C) 2017 ARM, Inc. +Copyright 2017 The Chromium Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright + * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT @@ -5230,412 +26738,369 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-gobject-enums.h.tmpl -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-gobject-enums.h.tmpl +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/attribute.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/attribute.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 2013 Google, Inc. +Copyright (C) 2017 LunarG, Inc. +Copyright (C) 2018 Google, Inc. - This is part of HarfBuzz, a text shaping library. +All rights reserved. -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/crc_folding.c + ../../../third_party/zlib/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/crc_folding.c +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/attribute.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/attribute.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 2013 Intel Corporation. All rights reserved. -Authors: - Wajdi Feghali - Jim Guilford - Vinodh Gopal - Erdinc Ozturk - Jim Kukunas +Copyright (C) 2017 LunarG, Inc. +Copyright (C) 2018 Google, Inc. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +All rights reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2_asm.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2_asm.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 2013, MIPS Technologies, Inc., California. -All Rights Reserved. -Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) - Darko Laus (darko.laus@imgtec.com) -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2.S -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2.S +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslParseHelper.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/hlslParseHelper.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -All Rights Reserved. -Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) - Darko Laus (darko.laus@imgtec.com) -Copyright (C) 2015, D. R. Commander. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright (C) 2017-2018 Google, Inc. +Copyright (C) 2017 LunarG, Inc. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +All rights reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolor-altivec.c -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-altivec.c ----------------------------------------------------------------------------------------------------- -Copyright (C) 2014, D. R. Commander. All Rights Reserved. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jidctfst-altivec.c -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jquanti-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_altivec.h +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SpvPostProcess.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/SpvPostProcess.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright (C) 2018 Google, Inc. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +All rights reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolext-altivec.c -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-altivec.c ----------------------------------------------------------------------------------------------------- -Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. -Copyright (C) 2014, Jay Foad. All Rights Reserved. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jcsample-altivec.c -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jdcolor-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jdmerge-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-altivec.c +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/pch.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/pch.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/gtests/pch.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/HLSL/pch.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/pch.h +FILE: ../../../third_party/vulkan-deps/glslang/src/gtests/pch.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2018 The Khronos Group Inc. +All rights reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/hlsl/stub.cpp TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/DIR_METADATA -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/cast/brkitr.patch -FILE: ../../../third_party/icu/cast/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat.hash -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/flutter/brkitr.patch -FILE: ../../../third_party/icu/flutter/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_appendable_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_to_case_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/ardatepattern.patch -FILE: ../../../third_party/icu/patches/atomic_template_instantiation.patch -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/configure.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fix-bool-mix-use.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/iso2022jp.patch -FILE: ../../../third_party/icu/patches/isvalidenum.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/restrace.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/uemoji.icu -FILE: ../../../third_party/icu/source/data/in/ulayout.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/tzres/metaZones.res -FILE: ../../../third_party/icu/tzres/timezoneTypes.res -FILE: ../../../third_party/icu/tzres/zoneinfo64.res +FILE: ../../../third_party/vulkan-deps/glslang/src/hlsl/stub.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2015 International Business Machines Corporation -and others. All Rights Reserved. +Copyright (C) 2020 Google, Inc. -Project: https://github.com/rober42539/lao-dictionary -Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt -License: https://github.com/rober42539/lao-dictionary/LICENSE.txt - (copied below) +All rights reserved. - This file is derived from the above dictionary version of Nov 22, 2020 +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: - Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. - All rights reserved. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. - Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. Redistributions in binary - form must reproduce the above copyright notice, this list of conditions and - the following disclaimer in the documentation and/or other materials - provided with the distribution. + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: zlib -ORIGIN: ../../../third_party/zlib/contrib/optimizations/chunkcopy.h + ../../../LICENSE +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/build_info.h.tmpl +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/standalone.gclient TYPE: LicenseType.bsd -FILE: ../../../third_party/zlib/contrib/optimizations/chunkcopy.h +FILE: ../../../third_party/vulkan-deps/glslang/src/build_info.h.tmpl +FILE: ../../../third_party/vulkan-deps/glslang/src/standalone.gclient ---------------------------------------------------------------------------------------------------- -Copyright (C) 2017 ARM, Inc. -Copyright 2017 The Chromium Authors. All rights reserved. +Copyright (C) 2020 The Khronos Group Inc. + +All rights reserved. Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +modification, are permitted provided that the following conditions +are met: - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of The Khronos Group Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: http://www.ietf.org/rfc/rfc3454.txt referenced by ../../../third_party/icu/source/data/sprep/rfc3491.txt +ORIGIN: http://www.ietf.org/rfc/rfc3454.txt referenced by ../../../third_party/icu/source/data/sprep/rfc3530cs.txt +ORIGIN: http://www.ietf.org/rfc/rfc3454.txt referenced by ../../../third_party/icu/source/data/sprep/rfc3530csci.txt +ORIGIN: http://www.ietf.org/rfc/rfc3454.txt referenced by ../../../third_party/icu/source/data/sprep/rfc3530mixp.txt +ORIGIN: http://www.ietf.org/rfc/rfc3454.txt referenced by ../../../third_party/icu/source/data/sprep/rfc3722.txt +ORIGIN: http://www.ietf.org/rfc/rfc3454.txt referenced by ../../../third_party/icu/source/data/sprep/rfc3920node.txt +ORIGIN: http://www.ietf.org/rfc/rfc3454.txt referenced by ../../../third_party/icu/source/data/sprep/rfc3920res.txt +ORIGIN: http://www.ietf.org/rfc/rfc3454.txt referenced by ../../../third_party/icu/source/data/sprep/rfc4011.txt +ORIGIN: http://www.ietf.org/rfc/rfc3454.txt referenced by ../../../third_party/icu/source/data/sprep/rfc4013.txt +ORIGIN: http://www.ietf.org/rfc/rfc3454.txt referenced by ../../../third_party/icu/source/data/sprep/rfc4505.txt +ORIGIN: http://www.ietf.org/rfc/rfc3454.txt referenced by ../../../third_party/icu/source/data/sprep/rfc4518.txt +ORIGIN: http://www.ietf.org/rfc/rfc3454.txt referenced by ../../../third_party/icu/source/data/sprep/rfc4518ci.txt +TYPE: LicenseType.ietf +FILE: ../../../third_party/icu/source/data/sprep/rfc3491.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3530cs.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3530csci.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3530mixp.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3722.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3920node.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3920res.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4011.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4013.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4505.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4518.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4518ci.txt +---------------------------------------------------------------------------------------------------- +Copyright (C) The Internet Society (2002). All Rights Reserved. + +This document and translations of it may be copied and furnished to +others, and derivative works that comment on or otherwise explain it +or assist in its implementation may be prepared, copied, published +and distributed, in whole or in part, without restriction of any +kind, provided that the above copyright notice and this paragraph are +included on all such copies and derivative works. However, this +document itself may not be modified in any way, such as by removing +the copyright notice or references to the Internet Society or other +Internet organizations, except as needed for the purpose of +developing Internet standards in which case the procedures for +copyrights defined in the Internet Standards process must be +followed, or as required to translate it into languages other than +English. + +The limited permissions granted above are perpetual and will not be +revoked by the Internet Society or its successors or assigns. + +This document and the information contained herein is provided on an +"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING +TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING +BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION +HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF +MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. ==================================================================================================== ==================================================================================================== LIBRARY: libtess2 ORIGIN: ../../../third_party/libtess2/Include/tesselator.h +ORIGIN: ../../../third_party/libtess2/LICENSE.txt +ORIGIN: ../../../third_party/libtess2/Source/bucketalloc.c +ORIGIN: ../../../third_party/libtess2/Source/bucketalloc.h +ORIGIN: ../../../third_party/libtess2/Source/dict.c +ORIGIN: ../../../third_party/libtess2/Source/dict.h +ORIGIN: ../../../third_party/libtess2/Source/geom.c +ORIGIN: ../../../third_party/libtess2/Source/geom.h +ORIGIN: ../../../third_party/libtess2/Source/mesh.c +ORIGIN: ../../../third_party/libtess2/Source/mesh.h +ORIGIN: ../../../third_party/libtess2/Source/priorityq.c +ORIGIN: ../../../third_party/libtess2/Source/priorityq.h +ORIGIN: ../../../third_party/libtess2/Source/sweep.c +ORIGIN: ../../../third_party/libtess2/Source/sweep.h +ORIGIN: ../../../third_party/libtess2/Source/tess.c +ORIGIN: ../../../third_party/libtess2/Source/tess.h TYPE: LicenseType.mit +FILE: ../../../third_party/libtess2/Bin/bg.svg +FILE: ../../../third_party/libtess2/Bin/fg.svg FILE: ../../../third_party/libtess2/Include/tesselator.h FILE: ../../../third_party/libtess2/Source/bucketalloc.c FILE: ../../../third_party/libtess2/Source/bucketalloc.h @@ -5651,6 +27116,7 @@ FILE: ../../../third_party/libtess2/Source/sweep.c FILE: ../../../third_party/libtess2/Source/sweep.h FILE: ../../../third_party/libtess2/Source/tess.c FILE: ../../../third_party/libtess2/Source/tess.h +FILE: ../../../third_party/libtess2/premake4.lua ---------------------------------------------------------------------------------------------------- Copyright (C) [dates of first publication] Silicon Graphics, Inc. All Rights Reserved. @@ -5678,6 +27144,44 @@ be used in advertising or otherwise to promote the sale, use or other dealings i this Software without prior written authorization from Silicon Graphics, Inc. ==================================================================================================== +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/rbt_rule.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/rbt_rule.h +---------------------------------------------------------------------------------------------------- +Copyright (C) {1999-2001}, International Business Machines Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + ==================================================================================================== LIBRARY: libjpeg-turbo ORIGIN: ../../../third_party/libjpeg-turbo/tjunittest.c @@ -5746,20 +27250,10 @@ POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/tjbench.c ORIGIN: ../../../third_party/libjpeg-turbo/turbojpeg.c TYPE: LicenseType.bsd -FILE: ../../../third_party/libjpeg-turbo/jconfig.h -FILE: ../../../third_party/libjpeg-turbo/jconfig.h.in -FILE: ../../../third_party/libjpeg-turbo/jconfigint.h -FILE: ../../../third_party/libjpeg-turbo/jconfigint.h.in -FILE: ../../../third_party/libjpeg-turbo/jpeg_nbits_table.h -FILE: ../../../third_party/libjpeg-turbo/libjpeg.map.in -FILE: ../../../third_party/libjpeg-turbo/simd/jpeg_nbits_table.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc.h FILE: ../../../third_party/libjpeg-turbo/tjbench.c -FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile -FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile.jni FILE: ../../../third_party/libjpeg-turbo/turbojpeg.c ---------------------------------------------------------------------------------------------------- Copyright (C)2009-2016 D. R. Commander. All Rights Reserved. @@ -5792,6 +27286,9 @@ POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: libjpeg-turbo ORIGIN: ../../../third_party/libjpeg-turbo/bmp.h +ORIGIN: ../../../third_party/libjpeg-turbo/jcstest.c +ORIGIN: ../../../third_party/libjpeg-turbo/tjutil.c +ORIGIN: ../../../third_party/libjpeg-turbo/tjutil.h TYPE: LicenseType.bsd FILE: ../../../third_party/libjpeg-turbo/bmp.h FILE: ../../../third_party/libjpeg-turbo/jcstest.c @@ -5893,135 +27390,236 @@ POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.icu -FILE: ../../../third_party/icu/DIR_METADATA -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/cast/brkitr.patch -FILE: ../../../third_party/icu/cast/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat.hash -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/flutter/brkitr.patch -FILE: ../../../third_party/icu/flutter/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_appendable_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_to_case_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/ardatepattern.patch -FILE: ../../../third_party/icu/patches/atomic_template_instantiation.patch -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/configure.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fix-bool-mix-use.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/iso2022jp.patch -FILE: ../../../third_party/icu/patches/isvalidenum.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/restrace.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/uemoji.icu -FILE: ../../../third_party/icu/source/data/in/ulayout.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/tzres/metaZones.res -FILE: ../../../third_party/icu/tzres/timezoneTypes.res -FILE: ../../../third_party/icu/tzres/zoneinfo64.res +ORIGIN: ../../../third_party/icu/source/common/normlzr.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/normlzr.cpp ---------------------------------------------------------------------------------------------------- -Copyright (c) 1995-2016 International Business Machines Corporation and others -All rights reserved. +Copyright (c) 1996-2012, International Business Machines Corporation and +others. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, and/or sell copies of the Software, and to permit persons -to whom the Software is furnished to do so, provided that the above -copyright notice(s) and this permission notice appear in all copies of -the Software and that both the above copyright notice(s) and this -permission notice appear in supporting documentation. +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unorm.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unorm.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 1996-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/normlzr.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/normlzr.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 1996-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/ucol.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/ucol.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 1996-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/unorm.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/unorm.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 1996-2016, International Business Machines Corporation + and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucnv_bld.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucnv_bld.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 1996-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR -HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY -SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF -CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, use -or other dealings in this Software without prior written authorization -of the copyright holder. - -All trademarks and registered trademarks mentioned herein are the -property of their respective owners. +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== @@ -6039,6 +27637,7 @@ Copyright (c) 2016 Cristian Rodríguez Copyright (c) 2016-2019 Sebastian Pipping Copyright (c) 2017 Rhodri James Copyright (c) 2018 Yury Gribov + Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -6077,6 +27676,7 @@ Copyright (c) 2016 Cristian Rodríguez Copyright (c) 2016 Thomas Beutlich Copyright (c) 2017 Rhodri James Copyright (c) 2022 Thijs Schreijer + Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -6135,6 +27735,7 @@ Copyright (c) 2021 Dong-hee Na Copyright (c) 2022 Samanta Navarro Copyright (c) 2022 Jeffrey Walton Copyright (c) 2022 Jann Horn + Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -6169,6 +27770,7 @@ Copyright (c) 2001-2002 Fred L. Drake, Jr. Copyright (c) 2006 Karl Waclawek Copyright (c) 2016-2017 Sebastian Pipping Copyright (c) 2017 Rhodri James + Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -6195,24 +27797,502 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. LIBRARY: expat ORIGIN: ../../../third_party/expat/expat/lib/xmltok.c TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/lib/xmltok.c +FILE: ../../../third_party/expat/expat/lib/xmltok.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2016 Pascal Cuoq +Copyright (c) 2016 Don Lewis +Copyright (c) 2017 Rhodri James +Copyright (c) 2017 Alexander Bluhm +Copyright (c) 2017 Benbuck Nason +Copyright (c) 2017 José Gutiérrez de la Concha +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Dong-hee Na +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/xmlwf/xmlwf.c +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/xmlwf/xmlwf.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2009 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2020 Joe Orton +Copyright (c) 2020 Kleber Tarcísio +Copyright (c) 2021 Tim Bray +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/xmlwf/readfilemap.c +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/xmlwf/readfilemap.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2004 Fred L. Drake, Jr. +Copyright (c) 2002-2009 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2017 Franek Korta + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/lib/xmltok.h +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/lib/xmltok.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2005 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/lib/xmltok_impl.c +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/lib/xmltok_impl.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2018 Benjamin Peterson +Copyright (c) 2018 Anton Maklakov +Copyright (c) 2019 David Loffredo +Copyright (c) 2020 Boris Kolpackov +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/xmlwf/xmlfile.h +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/xmlwf/xmlfile.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2005 Karl Waclawek +Copyright (c) 2016-2019 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/xmlwf/codepage.c +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/xmlwf/codepage.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2005-2006 Karl Waclawek +Copyright (c) 2016-2019 Sebastian Pipping +Copyright (c) 2019 David Loffredo + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/gennmtab/gennmtab.c +ORIGIN: ../../../third_party/expat/expat/xmlwf/codepage.h +ORIGIN: ../../../third_party/expat/expat/xmlwf/filemap.h +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/gennmtab/gennmtab.c +FILE: ../../../third_party/expat/expat/xmlwf/codepage.h +FILE: ../../../third_party/expat/expat/xmlwf/filemap.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/xmlwf/win32filemap.c +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/xmlwf/win32filemap.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/lib/asciitab.h +ORIGIN: ../../../third_party/expat/expat/lib/iasciitab.h +ORIGIN: ../../../third_party/expat/expat/lib/latin1tab.h +ORIGIN: ../../../third_party/expat/expat/lib/utf8tab.h +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/lib/asciitab.h +FILE: ../../../third_party/expat/expat/lib/iasciitab.h +FILE: ../../../third_party/expat/expat/lib/latin1tab.h +FILE: ../../../third_party/expat/expat/lib/utf8tab.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/lib/xmltok_ns.c +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/lib/xmltok_ns.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2017-2021 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/lib/xmlrole.c +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/lib/xmlrole.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016-2021 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Dong-hee Na + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/lib/xmlrole.h +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/lib/xmlrole.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Karl Waclawek +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/xmlwf/xmlfile.c +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/xmlwf/xmlfile.c ---------------------------------------------------------------------------------------------------- Copyright (c) 1997-2000 Thai Open Source Software Center Ltd Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2002 Greg Stein -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2016 Pascal Cuoq -Copyright (c) 2016 Don Lewis +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2006 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2021 Sebastian Pipping Copyright (c) 2017 Rhodri James -Copyright (c) 2017 Alexander Bluhm -Copyright (c) 2017 Benbuck Nason -Copyright (c) 2017 José Gutiérrez de la Concha Copyright (c) 2019 David Loffredo Copyright (c) 2021 Dong-hee Na -Copyright (c) 2022 Martin Ettl + Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -6237,22 +28317,14 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/xmlwf/xmlwf.c +ORIGIN: ../../../third_party/expat/expat/lib/xmltok_impl.h TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/xmlwf/xmlwf.c +FILE: ../../../third_party/expat/expat/lib/xmltok_impl.h ---------------------------------------------------------------------------------------------------- Copyright (c) 1997-2000 Thai Open Source Software Center Ltd Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2009 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Copyright (c) 2020 Joe Orton -Copyright (c) 2020 Kleber Tarcísio -Copyright (c) 2021 Tim Bray -Copyright (c) 2022 Martin Ettl +Copyright (c) 2017-2019 Sebastian Pipping + Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -6277,17 +28349,16 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/xmlwf/readfilemap.c +ORIGIN: ../../../third_party/expat/expat/xmlwf/ct.c +ORIGIN: ../../../third_party/expat/expat/xmlwf/xmlmime.h TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/xmlwf/readfilemap.c +FILE: ../../../third_party/expat/expat/xmlwf/ct.c +FILE: ../../../third_party/expat/expat/xmlwf/xmlmime.h ---------------------------------------------------------------------------------------------------- Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2004 Fred L. Drake, Jr. -Copyright (c) 2002-2009 Karl Waclawek +Copyright (c) 2002 Fred L. Drake, Jr. Copyright (c) 2016-2017 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2017 Franek Korta + Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -6312,16 +28383,15 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/lib/xmltok.h +ORIGIN: ../../../third_party/expat/expat/xmlwf/xmlmime.c TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/lib/xmltok.h +FILE: ../../../third_party/expat/expat/xmlwf/xmlmime.c ---------------------------------------------------------------------------------------------------- Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2005 Karl Waclawek -Copyright (c) 2016-2017 Sebastian Pipping -Copyright (c) 2017 Rhodri James +Copyright (c) 2016-2018 Sebastian Pipping +Copyright (c) 2018 Marco Maggi + Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -6346,21 +28416,14 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/lib/xmltok_impl.c +ORIGIN: ../../../third_party/expat/expat/xmlwf/xmltchar.h TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/lib/xmltok_impl.c +FILE: ../../../third_party/expat/expat/xmlwf/xmltchar.h ---------------------------------------------------------------------------------------------------- Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2016-2021 Sebastian Pipping Copyright (c) 2017 Rhodri James -Copyright (c) 2018 Benjamin Peterson -Copyright (c) 2018 Anton Maklakov -Copyright (c) 2019 David Loffredo -Copyright (c) 2020 Boris Kolpackov -Copyright (c) 2022 Martin Ettl + Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -6384,424 +28447,970 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/xmlwf/xmlfile.h -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/xmlwf/xmlfile.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/selfmtimpl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/selfmt.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/umsg.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/selfmtimpl.h +FILE: ../../../third_party/icu/source/i18n/unicode/selfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/umsg.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2011, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/unicode/utimer.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/utimer.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/docmain.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/selfmt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/docmain.h +FILE: ../../../third_party/icu/source/i18n/selfmt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/msgfmt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/msgfmt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/timezone.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/timezone.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 1997-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/COPYING +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/expat.pc.in +FILE: ../../../third_party/expat/expat/lib/siphash.h +FILE: ../../../third_party/expat/expat/win32/version.rc +---------------------------------------------------------------------------------------------------- +Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper +Copyright (c) 2001-2022 Expat maintainers + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/jacobi.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/sqrt.c +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/jacobi.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/sqrt.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/ex_data.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/gcd.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/prime.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/random.c +ORIGIN: ../../../third_party/boringssl/src/crypto/internal.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/base.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ex_data.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/ex_data.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/gcd.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/prime.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/random.c +FILE: ../../../third_party/boringssl/src/crypto/internal.h +FILE: ../../../third_party/boringssl/src/include/openssl/base.h +FILE: ../../../third_party/boringssl/src/include/openssl/ex_data.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/pem/pem_all.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/dh/dh_decrepit.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/dsa/dsa_decrepit.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ssl3.h +ORIGIN: ../../../third_party/boringssl/src/ssl/handshake.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/s3_both.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/s3_pkt.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/tls_record.cc +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_all.c +FILE: ../../../third_party/boringssl/src/decrepit/dh/dh_decrepit.c +FILE: ../../../third_party/boringssl/src/decrepit/dsa/dsa_decrepit.c +FILE: ../../../third_party/boringssl/src/include/openssl/ssl3.h +FILE: ../../../third_party/boringssl/src/ssl/handshake.cc +FILE: ../../../third_party/boringssl/src/ssl/s3_both.cc +FILE: ../../../third_party/boringssl/src/ssl/s3_pkt.cc +FILE: ../../../third_party/boringssl/src/ssl/tls_record.cc +---------------------------------------------------------------------------------------------------- +Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/bio/pair.c +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/bio/pair.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/ctx.c +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/ctx.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2005 Karl Waclawek -Copyright (c) 2016-2019 Sebastian Pipping -Licensed under the MIT license: +Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/xmlwf/codepage.c -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/xmlwf/codepage.c ----------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2005-2006 Karl Waclawek -Copyright (c) 2016-2019 Sebastian Pipping -Copyright (c) 2019 David Loffredo -Licensed under the MIT license: +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/gennmtab/gennmtab.c -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/gennmtab/gennmtab.c -FILE: ../../../third_party/expat/expat/xmlwf/codepage.h -FILE: ../../../third_party/expat/expat/xmlwf/filemap.h +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/ecdsa_extra/ecdsa_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdsa/ecdsa.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ecdsa.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/ecdsa_extra/ecdsa_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdsa/ecdsa.c +FILE: ../../../third_party/boringssl/src/include/openssl/ecdsa.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2017 Sebastian Pipping -Licensed under the MIT license: +Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/xmlwf/win32filemap.c -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/xmlwf/win32filemap.c ----------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2022 Martin Ettl -Licensed under the MIT license: +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@OpenSSL.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/lib/asciitab.h -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/lib/asciitab.h -FILE: ../../../third_party/expat/expat/lib/iasciitab.h -FILE: ../../../third_party/expat/expat/lib/latin1tab.h -FILE: ../../../third_party/expat/expat/lib/utf8tab.h +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/exponentiation.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_key.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_montgomery.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/oct.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/simple.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/wnaf.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ec.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ec_key.h +ORIGIN: ../../../third_party/boringssl/src/ssl/d1_both.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/d1_pkt.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/dtls_record.cc +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/exponentiation.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_key.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_montgomery.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/internal.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/oct.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/simple.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/wnaf.c +FILE: ../../../third_party/boringssl/src/include/openssl/ec.h +FILE: ../../../third_party/boringssl/src/include/openssl/ec_key.h +FILE: ../../../third_party/boringssl/src/ssl/d1_both.cc +FILE: ../../../third_party/boringssl/src/ssl/d1_pkt.cc +FILE: ../../../third_party/boringssl/src/ssl/dtls_record.cc ---------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT license: +Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/lib/xmltok_ns.c -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/lib/xmltok_ns.c ----------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2017-2021 Sebastian Pipping -Licensed under the MIT license: +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/lib/xmlrole.c -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/lib/xmlrole.c +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/err/err.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/montgomery.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/blinding.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/bn.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/err.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/tls1.h +ORIGIN: ../../../third_party/boringssl/src/ssl/d1_srtp.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_session.cc +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/err/err.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/internal.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/montgomery.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/blinding.c +FILE: ../../../third_party/boringssl/src/include/openssl/bn.h +FILE: ../../../third_party/boringssl/src/include/openssl/err.h +FILE: ../../../third_party/boringssl/src/include/openssl/tls1.h +FILE: ../../../third_party/boringssl/src/ssl/d1_srtp.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_session.cc ---------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Copyright (c) 2021 Dong-hee Na -Licensed under the MIT license: +Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/lib/xmlrole.h -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/lib/xmlrole.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Karl Waclawek -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT license: +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/xmlwf/xmlfile.c -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/xmlwf/xmlfile.c +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/tls/kdf.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/ssl/ssl_decrepit.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ssl.h +ORIGIN: ../../../third_party/boringssl/src/ssl/extensions.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/handshake_client.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/handshake_server.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/internal.h +ORIGIN: ../../../third_party/boringssl/src/ssl/s3_lib.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_cert.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_cipher.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_file.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_lib.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_transcript.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_x509.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/t1_enc.cc +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/tls/kdf.c +FILE: ../../../third_party/boringssl/src/decrepit/ssl/ssl_decrepit.c +FILE: ../../../third_party/boringssl/src/include/openssl/ssl.h +FILE: ../../../third_party/boringssl/src/ssl/extensions.cc +FILE: ../../../third_party/boringssl/src/ssl/handshake_client.cc +FILE: ../../../third_party/boringssl/src/ssl/handshake_server.cc +FILE: ../../../third_party/boringssl/src/ssl/internal.h +FILE: ../../../third_party/boringssl/src/ssl/s3_lib.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_cert.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_cipher.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_file.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_lib.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_transcript.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_x509.cc +FILE: ../../../third_party/boringssl/src/ssl/t1_enc.cc ---------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2006 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Copyright (c) 2021 Dong-hee Na -Licensed under the MIT license: +Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/lib/xmltok_impl.h -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/lib/xmltok_impl.h +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/include/openssl/arm_arch.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/include/openssl/arm_arch.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2017-2019 Sebastian Pipping -Licensed under the MIT license: +Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/examples/elements.c -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/examples/elements.c ----------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2006 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 Zhongyuan Zhou -Licensed under the MIT license: +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/xmlwf/ct.c -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/xmlwf/ct.c -FILE: ../../../third_party/expat/expat/xmlwf/xmlmime.h +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/pbkdf.c +ORIGIN: ../../../third_party/boringssl/src/crypto/pkcs8/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/pkcs8/p5_pbev2.c +ORIGIN: ../../../third_party/boringssl/src/crypto/pkcs8/pkcs8.c +ORIGIN: ../../../third_party/boringssl/src/crypto/pkcs8/pkcs8_x509.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_trs.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509spki.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_x509a.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_akey.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_akeya.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_bcons.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_bitst.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_enum.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_extku.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_ia5.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_info.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_lib.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_prn.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_skey.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/pkcs8.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/evp/pbkdf.c +FILE: ../../../third_party/boringssl/src/crypto/pkcs8/internal.h +FILE: ../../../third_party/boringssl/src/crypto/pkcs8/p5_pbev2.c +FILE: ../../../third_party/boringssl/src/crypto/pkcs8/pkcs8.c +FILE: ../../../third_party/boringssl/src/crypto/pkcs8/pkcs8_x509.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_trs.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509spki.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_x509a.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_akey.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_akeya.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_bcons.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_bitst.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_enum.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_extku.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_ia5.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_info.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_lib.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_prn.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_skey.c +FILE: ../../../third_party/boringssl/src/include/openssl/pkcs8.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2017 Sebastian Pipping -Licensed under the MIT license: +Copyright (c) 1999 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/xmlwf/xmlmime.c +ORIGIN: ../../../third_party/expat/expat/lib/ascii.h TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/xmlwf/xmlmime.c +FILE: ../../../third_party/expat/expat/lib/ascii.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 1999-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2018 Sebastian Pipping -Copyright (c) 2018 Marco Maggi +Copyright (c) 2007 Karl Waclawek +Copyright (c) 2017 Sebastian Pipping + Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -6825,80 +29434,67 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/xmlwf/xmltchar.h -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/xmlwf/xmltchar.h +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_conf.c +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_conf.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT license: +Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/COPYING -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/Changes -FILE: ../../../third_party/expat/expat/cmake/autotools/expat-config-version.cmake.in -FILE: ../../../third_party/expat/expat/cmake/autotools/expat-noconfig__linux.cmake.in -FILE: ../../../third_party/expat/expat/cmake/autotools/expat-noconfig__macos.cmake.in -FILE: ../../../third_party/expat/expat/cmake/autotools/expat-noconfig__windows.cmake.in -FILE: ../../../third_party/expat/expat/expat.pc.in -FILE: ../../../third_party/expat/expat/lib/siphash.h -FILE: ../../../third_party/expat/expat/win32/version.rc ----------------------------------------------------------------------------------------------------- -Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper -Copyright (c) 2001-2022 Expat maintainers +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/jacobi.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_alt.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_utl.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/jacobi.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/sqrt.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_alt.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_utl.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. +Copyright (c) 1999-2003 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -6915,12 +29511,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -6929,7 +29525,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -6947,17 +29543,19 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/gcd.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/ext_dat.h +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_cpols.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_int.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_purp.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/x509v3.h TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/ex_data.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/gcd.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/prime.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/random.c -FILE: ../../../third_party/boringssl/src/crypto/internal.h -FILE: ../../../third_party/boringssl/src/include/openssl/base.h -FILE: ../../../third_party/boringssl/src/include/openssl/ex_data.h +FILE: ../../../third_party/boringssl/src/crypto/x509v3/ext_dat.h +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_cpols.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_int.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_purp.c +FILE: ../../../third_party/boringssl/src/include/openssl/x509v3.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. +Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -6974,12 +29572,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -6988,7 +29586,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -7006,18 +29604,13 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/pem/pem_all.c +ORIGIN: ../../../third_party/boringssl/src/ssl/d1_lib.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/dtls_method.cc TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_all.c -FILE: ../../../third_party/boringssl/src/decrepit/dh/dh_decrepit.c -FILE: ../../../third_party/boringssl/src/decrepit/dsa/dsa_decrepit.c -FILE: ../../../third_party/boringssl/src/include/openssl/ssl3.h -FILE: ../../../third_party/boringssl/src/ssl/handshake.cc -FILE: ../../../third_party/boringssl/src/ssl/s3_both.cc -FILE: ../../../third_party/boringssl/src/ssl/s3_pkt.cc -FILE: ../../../third_party/boringssl/src/ssl/tls_record.cc +FILE: ../../../third_party/boringssl/src/ssl/d1_lib.cc +FILE: ../../../third_party/boringssl/src/ssl/dtls_method.cc ---------------------------------------------------------------------------------------------------- -Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. +Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -7034,12 +29627,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + openssl-core@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -7048,7 +29641,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -7066,11 +29659,11 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/bio/pair.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/md32_common.h TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/bio/pair.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/md32_common.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. +Copyright (c) 1999-2007 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -7087,12 +29680,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -7101,7 +29694,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -7119,11 +29712,13 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/ctx.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_crld.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_genn.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/ctx.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_crld.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_genn.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved. +Copyright (c) 1999-2008 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -7140,12 +29735,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -7154,7 +29749,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -7170,16 +29765,155 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/gencolusb/verify_uset.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/gencolusb/verify_uset.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 1999-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/gencolusb/extract_unsafe_backwards.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/gencolusb/extract_unsafe_backwards.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 1999-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/lib/winconfig.h +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/lib/winconfig.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2005 Karl Waclawek +Copyright (c) 2017-2021 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: expat +ORIGIN: ../../../third_party/expat/expat/lib/nametab.h +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/expat/lib/nametab.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2000 Clark Cooper +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/ecdsa_extra/ecdsa_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_algor.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/ecdsa_extra/ecdsa_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdsa/ecdsa.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdsa/ecdsa_test.cc -FILE: ../../../third_party/boringssl/src/include/openssl/ecdsa.h +FILE: ../../../third_party/boringssl/src/crypto/x509/x_algor.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. +Copyright (c) 2000 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -7201,7 +29935,7 @@ are met: 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@OpenSSL.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -7228,23 +29962,15 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/exponentiation.c +ORIGIN: ../../../third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdh/ecdh.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ecdh.h TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/exponentiation.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_key.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_montgomery.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/oct.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/simple.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/wnaf.c -FILE: ../../../third_party/boringssl/src/include/openssl/ec.h -FILE: ../../../third_party/boringssl/src/include/openssl/ec_key.h -FILE: ../../../third_party/boringssl/src/ssl/d1_both.cc -FILE: ../../../third_party/boringssl/src/ssl/d1_pkt.cc -FILE: ../../../third_party/boringssl/src/ssl/dtls_record.cc +FILE: ../../../third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdh/ecdh.c +FILE: ../../../third_party/boringssl/src/include/openssl/ecdh.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. +Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -7261,12 +29987,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -7275,7 +30001,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -7293,19 +30019,11 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/err/err.c +ORIGIN: ../../../third_party/boringssl/src/crypto/ec_extra/ec_asn1.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/err/err.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/montgomery.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/blinding.c -FILE: ../../../third_party/boringssl/src/include/openssl/bn.h -FILE: ../../../third_party/boringssl/src/include/openssl/err.h -FILE: ../../../third_party/boringssl/src/include/openssl/tls1.h -FILE: ../../../third_party/boringssl/src/ssl/d1_srtp.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_session.cc +FILE: ../../../third_party/boringssl/src/crypto/ec_extra/ec_asn1.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. +Copyright (c) 2000-2003 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -7322,12 +30040,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -7336,7 +30054,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -7352,27 +30070,59 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/extra/uconv/resources/fr.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/extra/uconv/resources/root.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/extra/uconv/resources/fr.txt +FILE: ../../../third_party/icu/source/extra/uconv/resources/root.txt +---------------------------------------------------------------------------------------------------- +Copyright (c) 2000-2004 IBM, Inc. and Others. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/tls/kdf.c +ORIGIN: ../../../third_party/boringssl/src/crypto/dh_extra/dh_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/dsa/dsa_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_asn1.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/asn1t.h TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/tls/kdf.c -FILE: ../../../third_party/boringssl/src/decrepit/ssl/ssl_decrepit.c -FILE: ../../../third_party/boringssl/src/include/openssl/ssl.h -FILE: ../../../third_party/boringssl/src/ssl/extensions.cc -FILE: ../../../third_party/boringssl/src/ssl/handshake_client.cc -FILE: ../../../third_party/boringssl/src/ssl/handshake_server.cc -FILE: ../../../third_party/boringssl/src/ssl/internal.h -FILE: ../../../third_party/boringssl/src/ssl/s3_lib.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_cert.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_cipher.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_file.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_lib.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_transcript.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_x509.cc -FILE: ../../../third_party/boringssl/src/ssl/t1_enc.cc +FILE: ../../../third_party/boringssl/src/crypto/dh_extra/dh_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/dsa/dsa_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_asn1.c +FILE: ../../../third_party/boringssl/src/include/openssl/asn1t.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. +Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -7389,12 +30139,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -7403,7 +30153,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -7419,13 +30169,99 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/symtable.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/nultrans.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/symtable.h +FILE: ../../../third_party/icu/source/i18n/nultrans.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2000-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/nultrans.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/nultrans.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2000-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/include/openssl/arm_arch.h +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/time_support.c +ORIGIN: ../../../third_party/boringssl/src/crypto/pem/pem_x509.c +ORIGIN: ../../../third_party/boringssl/src/crypto/pem/pem_xaux.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509cset.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/include/openssl/arm_arch.h +FILE: ../../../third_party/boringssl/src/crypto/asn1/time_support.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_x509.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_xaux.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509cset.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. +Copyright (c) 2001 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -7442,12 +30278,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -7456,7 +30292,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -7474,298 +30310,140 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/rbbisetb.h + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/DIR_METADATA -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/cast/brkitr.patch -FILE: ../../../third_party/icu/cast/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat.hash -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/flutter/brkitr.patch -FILE: ../../../third_party/icu/flutter/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_appendable_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_to_case_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/ardatepattern.patch -FILE: ../../../third_party/icu/patches/atomic_template_instantiation.patch -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/configure.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fix-bool-mix-use.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/iso2022jp.patch -FILE: ../../../third_party/icu/patches/isvalidenum.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/restrace.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/uemoji.icu -FILE: ../../../third_party/icu/source/data/in/ulayout.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/tzres/metaZones.res -FILE: ../../../third_party/icu/tzres/timezoneTypes.res -FILE: ../../../third_party/icu/tzres/zoneinfo64.res +FILE: ../../../third_party/icu/source/common/rbbisetb.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 1999 Computer Systems and Communication Lab, - Institute of Information Science, Academia - * Sinica. All rights reserved. +Copyright (c) 2001-2005, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the Computer Systems and Communication Lab - nor the names of its contributors may be used to endorse or - promote products derived from this software without specific - prior written permission. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/esctrn.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/remtrans.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unesctrn.h + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/DIR_METADATA -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/cast/brkitr.patch -FILE: ../../../third_party/icu/cast/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat.hash -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/flutter/brkitr.patch -FILE: ../../../third_party/icu/flutter/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_appendable_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_to_case_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/ardatepattern.patch -FILE: ../../../third_party/icu/patches/atomic_template_instantiation.patch -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/configure.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fix-bool-mix-use.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/iso2022jp.patch -FILE: ../../../third_party/icu/patches/isvalidenum.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/restrace.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/uemoji.icu -FILE: ../../../third_party/icu/source/data/in/ulayout.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/tzres/metaZones.res -FILE: ../../../third_party/icu/tzres/timezoneTypes.res -FILE: ../../../third_party/icu/tzres/zoneinfo64.res +FILE: ../../../third_party/icu/source/i18n/esctrn.h +FILE: ../../../third_party/icu/source/i18n/remtrans.h +FILE: ../../../third_party/icu/source/i18n/unesctrn.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 1999 TaBE Project. -Copyright (c) 1999 Pai-Hsiang Hsiao. -All rights reserved. +Copyright (c) 2001-2007, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the TaBE Project nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/common.rc + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/misc/icudata.rc + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/i18n.rc + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/io/io.rc + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/common.rc +FILE: ../../../third_party/icu/source/data/misc/icudata.rc +FILE: ../../../third_party/icu/source/i18n/i18n.rc +FILE: ../../../third_party/icu/source/io/io.rc +---------------------------------------------------------------------------------------------------- +Copyright (c) 2001-2010 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/evp/pbkdf.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/key_wrap.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/e_aes.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/evp/pbkdf.c -FILE: ../../../third_party/boringssl/src/crypto/pkcs8/internal.h -FILE: ../../../third_party/boringssl/src/crypto/pkcs8/p5_pbev2.c -FILE: ../../../third_party/boringssl/src/crypto/pkcs8/pkcs8.c -FILE: ../../../third_party/boringssl/src/crypto/pkcs8/pkcs8_x509.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_trs.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509spki.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_x509a.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/tab_test.cc -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_akey.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_akeya.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_bcons.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_bitst.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_enum.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_extku.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_ia5.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_info.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_lib.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_prn.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_skey.c -FILE: ../../../third_party/boringssl/src/include/openssl/pkcs8.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/key_wrap.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/e_aes.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 1999 The OpenSSL Project. All rights reserved. +Copyright (c) 2001-2011 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -7782,12 +30460,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - licensing@OpenSSL.org. + openssl-core@openssl.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -7796,7 +30474,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + for use in the OpenSSL Toolkit (http://www.openssl.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -7812,17 +30490,363 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/util.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/util.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/esctrn.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/remtrans.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unesctrn.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/util.cpp +FILE: ../../../third_party/icu/source/common/util.h +FILE: ../../../third_party/icu/source/i18n/esctrn.cpp +FILE: ../../../third_party/icu/source/i18n/remtrans.cpp +FILE: ../../../third_party/icu/source/i18n/unesctrn.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2001-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unifilt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unifilt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2001-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/strmatch.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/strmatch.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2001-2012, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/transreg.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/transreg.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/transreg.cpp +FILE: ../../../third_party/icu/source/i18n/transreg.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2001-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/charstr.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/charstr.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2001-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/util_props.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/util_props.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2001-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/rbbinode.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/rbbinode.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2001-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/Pp.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpAtom.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpContext.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpContext.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpScanner.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpTokens.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpTokens.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/Pp.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpAtom.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpContext.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpContext.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpScanner.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpTokens.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/PpTokens.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2002, NVIDIA Corporation. + +NVIDIA Corporation("NVIDIA") supplies this software to you in +consideration of your agreement to the following terms, and your use, +installation, modification or redistribution of this NVIDIA software +constitutes acceptance of these terms. If you do not agree with these +terms, please do not use, install, modify or redistribute this NVIDIA +software. + +In consideration of your agreement to abide by the following terms, and +subject to these terms, NVIDIA grants you a personal, non-exclusive +license, under NVIDIA's copyrights in this original NVIDIA software (the +"NVIDIA Software"), to use, reproduce, modify and redistribute the +NVIDIA Software, with or without modifications, in source and/or binary +forms; provided that if you redistribute the NVIDIA Software, you must +retain the copyright notice of NVIDIA, this notice and the following +text and disclaimers in all such redistributions of the NVIDIA Software. +Neither the name, trademarks, service marks nor logos of NVIDIA +Corporation may be used to endorse or promote products derived from the +NVIDIA Software without specific prior written permission from NVIDIA. +Except as expressly stated in this notice, no other rights or licenses +express or implied, are granted by NVIDIA herein, including but not +limited to any patent rights that may be infringed by your derivative +works or by other works in which the NVIDIA Software may be +incorporated. No hardware is licensed hereunder. + +THE NVIDIA SOFTWARE IS BEING PROVIDED ON AN "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, +INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR +ITS USE AND OPERATION EITHER ALONE OR IN COMBINATION WITH OTHER +PRODUCTS. + +IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT, +INCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY +OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE +NVIDIA SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, +TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF +NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + ==================================================================================================== LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/lib/ascii.h +ORIGIN: ../../../third_party/expat/expat/lib/internal.h TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/lib/ascii.h +FILE: ../../../third_party/expat/expat/lib/internal.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 1999-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2007 Karl Waclawek -Copyright (c) 2017 Sebastian Pipping +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2003 Greg Stein +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2018 Yury Gribov +Copyright (c) 2019 David Loffredo + Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -7846,178 +30870,371 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_conf.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unifunct.cpp + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_conf.c +FILE: ../../../third_party/icu/source/common/unifunct.cpp ---------------------------------------------------------------------------------------------------- -Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved. +Copyright (c) 2002-2004, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/unifunct.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/unirepl.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/unifunct.h +FILE: ../../../third_party/icu/source/i18n/unicode/unirepl.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2002-2005, International Business Machines Corporation +and others. All Rights Reserved. -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/testdata.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/unicode/tstdtmod.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/ctestfw/testdata.cpp +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/tstdtmod.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2002-2005, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: glfw +ORIGIN: ../../../third_party/glfw/LICENSE.md +TYPE: LicenseType.unknown +FILE: ../../../third_party/glfw/src/glfw.rc.in +---------------------------------------------------------------------------------------------------- +Copyright (c) 2002-2006 Marcus Geelnard + +Copyright (c) 2006-2019 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: glfw +ORIGIN: ../../../third_party/glfw/src/context.c +TYPE: LicenseType.unknown +FILE: ../../../third_party/glfw/src/context.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2016 Camilla Löwy + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_alt.c -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_alt.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_utl.c +LIBRARY: glfw +ORIGIN: ../../../third_party/glfw/src/linux_joystick.c +ORIGIN: ../../../third_party/glfw/src/posix_thread.c +ORIGIN: ../../../third_party/glfw/src/posix_thread.h +ORIGIN: ../../../third_party/glfw/src/posix_time.c +ORIGIN: ../../../third_party/glfw/src/posix_time.h +ORIGIN: ../../../third_party/glfw/src/win32_thread.c +ORIGIN: ../../../third_party/glfw/src/win32_thread.h +ORIGIN: ../../../third_party/glfw/src/win32_time.c +ORIGIN: ../../../third_party/glfw/src/win32_time.h +ORIGIN: ../../../third_party/glfw/src/xkb_unicode.c +TYPE: LicenseType.unknown +FILE: ../../../third_party/glfw/src/linux_joystick.c +FILE: ../../../third_party/glfw/src/posix_thread.c +FILE: ../../../third_party/glfw/src/posix_thread.h +FILE: ../../../third_party/glfw/src/posix_time.c +FILE: ../../../third_party/glfw/src/posix_time.h +FILE: ../../../third_party/glfw/src/win32_thread.c +FILE: ../../../third_party/glfw/src/win32_thread.h +FILE: ../../../third_party/glfw/src/win32_time.c +FILE: ../../../third_party/glfw/src/win32_time.h +FILE: ../../../third_party/glfw/src/xkb_unicode.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 1999-2003 The OpenSSL Project. All rights reserved. +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2017 Camilla Löwy -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +==================================================================================================== +LIBRARY: glfw +ORIGIN: ../../../third_party/glfw/include/GLFW/glfw3native.h +ORIGIN: ../../../third_party/glfw/src/init.c +ORIGIN: ../../../third_party/glfw/src/platform.c +ORIGIN: ../../../third_party/glfw/src/platform.h +ORIGIN: ../../../third_party/glfw/src/vulkan.c +TYPE: LicenseType.unknown +FILE: ../../../third_party/glfw/include/GLFW/glfw3native.h +FILE: ../../../third_party/glfw/src/init.c +FILE: ../../../third_party/glfw/src/platform.c +FILE: ../../../third_party/glfw/src/platform.h +FILE: ../../../third_party/glfw/src/vulkan.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2018 Camilla Löwy -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/ext_dat.h -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/x509v3/ext_dat.h -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_cpols.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_int.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_purp.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3name_test.cc -FILE: ../../../third_party/boringssl/src/include/openssl/x509v3.h +LIBRARY: glfw +ORIGIN: ../../../third_party/glfw/include/GLFW/glfw3.h +ORIGIN: ../../../third_party/glfw/src/cocoa_monitor.m +ORIGIN: ../../../third_party/glfw/src/egl_context.c +ORIGIN: ../../../third_party/glfw/src/glx_context.c +ORIGIN: ../../../third_party/glfw/src/input.c +ORIGIN: ../../../third_party/glfw/src/internal.h +ORIGIN: ../../../third_party/glfw/src/monitor.c +ORIGIN: ../../../third_party/glfw/src/wgl_context.c +ORIGIN: ../../../third_party/glfw/src/win32_init.c +ORIGIN: ../../../third_party/glfw/src/win32_joystick.c +ORIGIN: ../../../third_party/glfw/src/win32_monitor.c +ORIGIN: ../../../third_party/glfw/src/win32_platform.h +ORIGIN: ../../../third_party/glfw/src/win32_window.c +ORIGIN: ../../../third_party/glfw/src/x11_init.c +ORIGIN: ../../../third_party/glfw/src/x11_monitor.c +ORIGIN: ../../../third_party/glfw/src/x11_platform.h +ORIGIN: ../../../third_party/glfw/src/x11_window.c +TYPE: LicenseType.unknown +FILE: ../../../third_party/glfw/include/GLFW/glfw3.h +FILE: ../../../third_party/glfw/src/cocoa_monitor.m +FILE: ../../../third_party/glfw/src/egl_context.c +FILE: ../../../third_party/glfw/src/glx_context.c +FILE: ../../../third_party/glfw/src/input.c +FILE: ../../../third_party/glfw/src/internal.h +FILE: ../../../third_party/glfw/src/monitor.c +FILE: ../../../third_party/glfw/src/wgl_context.c +FILE: ../../../third_party/glfw/src/win32_init.c +FILE: ../../../third_party/glfw/src/win32_joystick.c +FILE: ../../../third_party/glfw/src/win32_monitor.c +FILE: ../../../third_party/glfw/src/win32_platform.h +FILE: ../../../third_party/glfw/src/win32_window.c +FILE: ../../../third_party/glfw/src/x11_init.c +FILE: ../../../third_party/glfw/src/x11_monitor.c +FILE: ../../../third_party/glfw/src/x11_platform.h +FILE: ../../../third_party/glfw/src/x11_window.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2019 Camilla Löwy -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +==================================================================================================== +LIBRARY: glfw +ORIGIN: ../../../third_party/glfw/src/window.c +TYPE: LicenseType.unknown +FILE: ../../../third_party/glfw/src/window.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2019 Camilla Löwy +Copyright (c) 2012 Torsten Walluhn -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. ==================================================================================================== ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/ssl/d1_lib.cc +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/aes.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/mode_wrappers.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/aes.h TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/ssl/d1_lib.cc -FILE: ../../../third_party/boringssl/src/ssl/dtls_method.cc +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/aes.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/mode_wrappers.c +FILE: ../../../third_party/boringssl/src/include/openssl/aes.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. +Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -8034,12 +31251,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@OpenSSL.org. + openssl-core@openssl.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -8048,7 +31265,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + for use in the OpenSSL Toolkit (http://www.openssl.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -8065,522 +31282,598 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/md32_common.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/usetiter.cpp + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/md32_common.h +FILE: ../../../third_party/icu/source/common/usetiter.cpp ---------------------------------------------------------------------------------------------------- -Copyright (c) 1999-2007 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Copyright (c) 2002-2006, International Business Machines +Corporation and others. All Rights Reserved. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_crld.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/datamap.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/unicode/datamap.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/unicode/testdata.h + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_crld.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_genn.c +FILE: ../../../third_party/icu/source/tools/ctestfw/datamap.cpp +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/datamap.h +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/testdata.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 1999-2008 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Copyright (c) 2002-2006, International Business Machines Corporation and +others. All Rights Reserved. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/anytrans.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/anytrans.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2002-2007, International Business Machines Corporation +and others. All Rights Reserved. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/examples/outline.c -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/examples/outline.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/tridpars.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/tridpars.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2005-2006 Karl Waclawek -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT license: +Copyright (c) 2002-2010, International Business Machines Corporation * +and others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/lib/winconfig.h -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/lib/winconfig.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/propname.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/propname.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2005 Karl Waclawek -Copyright (c) 2017-2021 Sebastian Pipping -Licensed under the MIT license: +Copyright (c) 2002-2011, International Business Machines +Corporation and others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/lib/nametab.h -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/lib/nametab.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/funcrepl.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/strrepl.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/funcrepl.h +FILE: ../../../third_party/icu/source/i18n/strrepl.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2000 Clark Cooper -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT license: +Copyright (c) 2002-2011, International Business Machines Corporation +and others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x_algor.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/funcrepl.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/strrepl.cpp + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/x509/x_algor.c +FILE: ../../../third_party/icu/source/i18n/funcrepl.cpp +FILE: ../../../third_party/icu/source/i18n/strrepl.cpp ---------------------------------------------------------------------------------------------------- -Copyright (c) 2000 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Copyright (c) 2002-2012, International Business Machines Corporation +and others. All Rights Reserved. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/uperf.cpp + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdh/ecdh.c -FILE: ../../../third_party/boringssl/src/include/openssl/ecdh.h +FILE: ../../../third_party/icu/source/tools/ctestfw/uperf.cpp ---------------------------------------------------------------------------------------------------- -Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +Copyright (c) 2002-2012, International Business Machines Corporation and +others. All Rights Reserved. -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/ec_extra/ec_asn1.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/propname.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/usetiter.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ustrenum.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ustrenum.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/unicode/uperf.h + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/ec_extra/ec_asn1.c +FILE: ../../../third_party/icu/source/common/propname.cpp +FILE: ../../../third_party/icu/source/common/unicode/usetiter.h +FILE: ../../../third_party/icu/source/common/ustrenum.cpp +FILE: ../../../third_party/icu/source/common/ustrenum.h +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/uperf.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2000-2003 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +Copyright (c) 2002-2014, International Business Machines +Corporation and others. All Rights Reserved. -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/dh_extra/dh_asn1.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/anytrans.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/tridpars.cpp + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/dh_extra/dh_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/dsa/dsa_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_asn1.c -FILE: ../../../third_party/boringssl/src/include/openssl/asn1t.h +FILE: ../../../third_party/icu/source/i18n/anytrans.cpp +FILE: ../../../third_party/icu/source/i18n/tridpars.cpp ---------------------------------------------------------------------------------------------------- -Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Copyright (c) 2002-2014, International Business Machines Corporation +and others. All Rights Reserved. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/tstdtmod.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/ctestfw/tstdtmod.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2002-2014, International Business Machines Corporation and +others. All Rights Reserved. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/win32/expat.iss -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/win32/expat.iss +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/title.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/brkitr/rules/title.txt ---------------------------------------------------------------------------------------------------- -Copyright (c) 2001 Tim Peters -Copyright (c) 2001-2005 Fred L. Drake, Jr. -Copyright (c) 2006-2017 Karl Waclawek -Copyright (c) 2007-2022 Sebastian Pipping -Copyright (c) 2022 Johnny Jazeix -Licensed under the MIT license: +Copyright (c) 2002-2015, International Business Machines Corporation and +others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/time_support.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/line.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/line_cj.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/line_loose.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/line_loose_cj.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/line_normal.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/brkitr/rules/line_normal_cj.txt + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/asn1/time_support.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_x509.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_xaux.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509cset.c +FILE: ../../../third_party/icu/source/data/brkitr/rules/line.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line_cj.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line_loose.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line_loose_cj.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line_normal.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line_normal_cj.txt ---------------------------------------------------------------------------------------------------- -Copyright (c) 2001 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Copyright (c) 2002-2016 International Business Machines Corporation and +others. All Rights Reserved. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/rbbitblb.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/rbbitblb.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucurr.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ucurrimp.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/ucurr.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/rbbitblb.cpp +FILE: ../../../third_party/icu/source/common/rbbitblb.h +FILE: ../../../third_party/icu/source/common/ucurr.cpp +FILE: ../../../third_party/icu/source/common/ucurrimp.h +FILE: ../../../third_party/icu/source/common/unicode/ucurr.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2002-2016, International Business Machines +Corporation and others. All Rights Reserved. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/key_wrap.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_ncons.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_pcons.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_pmaps.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/key_wrap.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/e_aes.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_ncons.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_pcons.c +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_pmaps.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 2001-2011 The OpenSSL Project. All rights reserved. +Copyright (c) 2003 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -8597,12 +31890,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -8611,7 +31904,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -8628,456 +31921,363 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/lib/internal.h -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/lib/internal.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2003 Greg Stein -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2018 Yury Gribov -Copyright (c) 2019 David Loffredo -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: glfw -ORIGIN: ../../../third_party/glfw/LICENSE.md -TYPE: LicenseType.zlib -FILE: ../../../third_party/glfw/.appveyor.yml -FILE: ../../../third_party/glfw/CMake/Info.plist.in -FILE: ../../../third_party/glfw/CMake/cmake_uninstall.cmake.in -FILE: ../../../third_party/glfw/CMake/glfw3.pc.in -FILE: ../../../third_party/glfw/CMake/glfw3Config.cmake.in -FILE: ../../../third_party/glfw/docs/Doxyfile.in -FILE: ../../../third_party/glfw/docs/DoxygenLayout.xml -FILE: ../../../third_party/glfw/docs/build.dox -FILE: ../../../third_party/glfw/docs/compat.dox -FILE: ../../../third_party/glfw/docs/compile.dox -FILE: ../../../third_party/glfw/docs/context.dox -FILE: ../../../third_party/glfw/docs/extra.css.map -FILE: ../../../third_party/glfw/docs/extra.scss -FILE: ../../../third_party/glfw/docs/footer.html -FILE: ../../../third_party/glfw/docs/header.html -FILE: ../../../third_party/glfw/docs/input.dox -FILE: ../../../third_party/glfw/docs/internal.dox -FILE: ../../../third_party/glfw/docs/intro.dox -FILE: ../../../third_party/glfw/docs/main.dox -FILE: ../../../third_party/glfw/docs/monitor.dox -FILE: ../../../third_party/glfw/docs/moving.dox -FILE: ../../../third_party/glfw/docs/news.dox -FILE: ../../../third_party/glfw/docs/quick.dox -FILE: ../../../third_party/glfw/docs/spaces.svg -FILE: ../../../third_party/glfw/docs/vulkan.dox -FILE: ../../../third_party/glfw/docs/window.dox -FILE: ../../../third_party/glfw/src/glfw.rc.in +LIBRARY: tcmalloc +ORIGIN: ../../../third_party/dart/third_party/tcmalloc/include/gperftools/tcmalloc.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/tcmalloc/include/gperftools/tcmalloc.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2002-2006 Marcus Geelnard - -Copyright (c) 2006-2019 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Copyright (c) 2003, Google Inc. +All rights reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. -3. This notice may not be removed or altered from any source - distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: glfw -ORIGIN: ../../../third_party/glfw/src/context.c -TYPE: LicenseType.zlib -FILE: ../../../third_party/glfw/src/context.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ucat.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/ucat.cpp ---------------------------------------------------------------------------------------------------- -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2016 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Copyright (c) 2003, International Business Machines +Corporation and others. All Rights Reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. This notice may not be removed or altered from any source - distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: glfw -ORIGIN: ../../../third_party/glfw/src/linux_joystick.c -TYPE: LicenseType.zlib -FILE: ../../../third_party/glfw/src/linux_joystick.c -FILE: ../../../third_party/glfw/src/posix_thread.c -FILE: ../../../third_party/glfw/src/posix_thread.h -FILE: ../../../third_party/glfw/src/posix_time.c -FILE: ../../../third_party/glfw/src/posix_time.h -FILE: ../../../third_party/glfw/src/win32_thread.c -FILE: ../../../third_party/glfw/src/win32_thread.h -FILE: ../../../third_party/glfw/src/win32_time.c -FILE: ../../../third_party/glfw/src/win32_time.h -FILE: ../../../third_party/glfw/src/xkb_unicode.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/ucat.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/ucat.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2017 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright (c) 2003-2004, International Business Machines +Corporation and others. All Rights Reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. This notice may not be removed or altered from any source - distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: glfw -ORIGIN: ../../../third_party/glfw/include/GLFW/glfw3native.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/glfw/include/GLFW/glfw3native.h -FILE: ../../../third_party/glfw/src/init.c -FILE: ../../../third_party/glfw/src/platform.c -FILE: ../../../third_party/glfw/src/platform.h -FILE: ../../../third_party/glfw/src/vulkan.c +LIBRARY: dart +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm_shared/lib/bigint_patch.dart +TYPE: LicenseType.mit +FILE: ../../../third_party/dart/sdk/lib/_internal/vm_shared/lib/bigint_patch.dart ---------------------------------------------------------------------------------------------------- -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2018 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. -==================================================================================================== +Copyright (c) 2003-2005 Tom Wu +Copyright (c) 2012 Adam Singer (adam@solvr.io) +All Rights Reserved. -==================================================================================================== -LIBRARY: glfw -ORIGIN: ../../../third_party/glfw/include/GLFW/glfw3.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/glfw/include/GLFW/glfw3.h -FILE: ../../../third_party/glfw/src/cocoa_monitor.m -FILE: ../../../third_party/glfw/src/egl_context.c -FILE: ../../../third_party/glfw/src/glx_context.c -FILE: ../../../third_party/glfw/src/input.c -FILE: ../../../third_party/glfw/src/internal.h -FILE: ../../../third_party/glfw/src/monitor.c -FILE: ../../../third_party/glfw/src/wgl_context.c -FILE: ../../../third_party/glfw/src/win32_init.c -FILE: ../../../third_party/glfw/src/win32_joystick.c -FILE: ../../../third_party/glfw/src/win32_monitor.c -FILE: ../../../third_party/glfw/src/win32_platform.h -FILE: ../../../third_party/glfw/src/win32_window.c -FILE: ../../../third_party/glfw/src/x11_init.c -FILE: ../../../third_party/glfw/src/x11_monitor.c -FILE: ../../../third_party/glfw/src/x11_platform.h -FILE: ../../../third_party/glfw/src/x11_window.c ----------------------------------------------------------------------------------------------------- -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2019 Camilla Löwy +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, +EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY +WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. +IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, +INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF +THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. +In addition, the following condition applies: -3. This notice may not be removed or altered from any source - distribution. +All redistributions must retain an intact copy of this copyright notice +and disclaimer. ==================================================================================================== ==================================================================================================== -LIBRARY: glfw -ORIGIN: ../../../third_party/glfw/src/window.c -TYPE: LicenseType.zlib -FILE: ../../../third_party/glfw/src/window.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/gregoimp.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/gregoimp.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/gregoimp.cpp +FILE: ../../../third_party/icu/source/i18n/gregoimp.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2019 Camilla Löwy -Copyright (c) 2012 Torsten Walluhn - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Copyright (c) 2003-2008, International Business Machines +Corporation and others. All Rights Reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. This notice may not be removed or altered from any source - distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/aes.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/msvcres.h + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/aes.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/mode_wrappers.c -FILE: ../../../third_party/boringssl/src/include/openssl/aes.h +FILE: ../../../third_party/icu/source/common/msvcres.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. +Copyright (c) 2003-2010 International Business Machines +Corporation and others. All Rights Reserved. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_ncons.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/ruleiter.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/ruleiter.h + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_ncons.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_pcons.c -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_pmaps.c +FILE: ../../../third_party/icu/source/common/ruleiter.cpp +FILE: ../../../third_party/icu/source/common/ruleiter.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2003 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +Copyright (c) 2003-2011, International Business Machines +Corporation and others. All Rights Reserved. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: tcmalloc -ORIGIN: ../../../third_party/dart/third_party/tcmalloc/include/gperftools/tcmalloc.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/olsontz.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/olsontz.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/tools/tzcode/tz2icu.h + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/tcmalloc/include/gperftools/tcmalloc.h +FILE: ../../../third_party/icu/source/i18n/olsontz.cpp +FILE: ../../../third_party/icu/source/i18n/olsontz.h +FILE: ../../../third_party/icu/source/tools/tzcode/tz2icu.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2003, Google Inc. -All rights reserved. +Copyright (c) 2003-2013, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: dart -ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm_shared/lib/bigint_patch.dart -TYPE: LicenseType.mit -FILE: ../../../third_party/dart/sdk/lib/_internal/vm_shared/lib/bigint_patch.dart +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/tzcode/tz2icu.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/tzcode/tz2icu.cpp ---------------------------------------------------------------------------------------------------- -Copyright (c) 2003-2005 Tom Wu -Copyright (c) 2012 Adam Singer (adam@solvr.io) -All Rights Reserved. +Copyright (c) 2003-2014, International Business Machines +Corporation and others. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, -EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY -WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - -IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, -INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF -THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -In addition, the following condition applies: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -All redistributions must retain an intact copy of this copyright notice -and disclaimer. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== LIBRARY: boringssl ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_pci.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_pcia.c TYPE: LicenseType.bsd FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_pci.c FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_pcia.c @@ -9117,6 +32317,13 @@ SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_vpm.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/pcy_cache.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/pcy_data.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/pcy_int.h +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/pcy_lib.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/pcy_map.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/pcy_node.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/pcy_tree.c TYPE: LicenseType.bsd FILE: ../../../third_party/boringssl/src/crypto/x509/x509_vpm.c FILE: ../../../third_party/boringssl/src/crypto/x509v3/pcy_cache.c @@ -9174,6 +32381,334 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/curramt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/curramt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/curramt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/curramt.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2004-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/unicode/testlog.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/testlog.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2004-2010, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/currfmt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/currfmt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2004-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/locbased.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/locbased.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/currfmt.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/currunit.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/measure.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/currunit.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/locbased.cpp +FILE: ../../../third_party/icu/source/common/locbased.h +FILE: ../../../third_party/icu/source/i18n/currfmt.h +FILE: ../../../third_party/icu/source/i18n/currunit.cpp +FILE: ../../../third_party/icu/source/i18n/measure.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/currunit.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2004-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/measure.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/unicode/measure.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2004-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/Doxyfile.in + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/Doxyfile.in +---------------------------------------------------------------------------------------------------- +Copyright (c) 2004-2015, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/measfmt.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/measunit.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/measfmt.h + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/i18n/unicode/measunit.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/measfmt.cpp +FILE: ../../../third_party/icu/source/i18n/measunit.cpp +FILE: ../../../third_party/icu/source/i18n/unicode/measfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/measunit.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2004-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + ==================================================================================================== LIBRARY: boringssl ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/padding.c @@ -9264,73 +32799,16 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: StackWalker -ORIGIN: ../../../third_party/angle/util/windows/third_party/StackWalker/src/StackWalker.h -TYPE: LicenseType.bsd -FILE: ../../../third_party/angle/util/windows/third_party/StackWalker/src/StackWalker.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 2005-2009, Jochen Kalmbach -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. -Neither the name of Jochen Kalmbach nor the names of its contributors may be -used to endorse or promote products derived from this software without -specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: StackWalker -ORIGIN: ../../../third_party/angle/util/windows/third_party/StackWalker/src/StackWalker.cpp -TYPE: LicenseType.bsd -FILE: ../../../third_party/angle/util/windows/third_party/StackWalker/src/StackWalker.cpp ----------------------------------------------------------------------------------------------------- -Copyright (c) 2005-2013, Jochen Kalmbach -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. -Neither the name of Jochen Kalmbach nor the names of its contributors may be -used to endorse or promote products derived from this software without -specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - ==================================================================================================== LIBRARY: boringssl ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/p_dsa_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/p_ec.c +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/p_ec_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/p_rsa.c +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/p_rsa_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/print.c +ORIGIN: ../../../third_party/boringssl/src/crypto/x509/rsa_pss.c TYPE: LicenseType.bsd FILE: ../../../third_party/boringssl/src/crypto/asn1/internal.h FILE: ../../../third_party/boringssl/src/crypto/evp/p_dsa_asn1.c @@ -9444,6 +32922,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: rapidjson ORIGIN: ../../../third_party/rapidjson/include/rapidjson/msinttypes/inttypes.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/msinttypes/stdint.h TYPE: LicenseType.bsd FILE: ../../../third_party/rapidjson/include/rapidjson/msinttypes/inttypes.h FILE: ../../../third_party/rapidjson/include/rapidjson/msinttypes/stdint.h @@ -9479,7 +32958,9 @@ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: glfw ORIGIN: ../../../third_party/glfw/src/cocoa_joystick.h -TYPE: LicenseType.zlib +ORIGIN: ../../../third_party/glfw/src/null_joystick.h +ORIGIN: ../../../third_party/glfw/src/win32_joystick.h +TYPE: LicenseType.unknown FILE: ../../../third_party/glfw/src/cocoa_joystick.h FILE: ../../../third_party/glfw/src/null_joystick.h FILE: ../../../third_party/glfw/src/win32_joystick.h @@ -9509,7 +32990,8 @@ freely, subject to the following restrictions: ==================================================================================================== LIBRARY: glfw ORIGIN: ../../../third_party/glfw/src/mappings.h -TYPE: LicenseType.zlib +ORIGIN: ../../../third_party/glfw/src/mappings.h.in +TYPE: LicenseType.unknown FILE: ../../../third_party/glfw/src/mappings.h FILE: ../../../third_party/glfw/src/mappings.h.in ---------------------------------------------------------------------------------------------------- @@ -9519,76 +33001,20 @@ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. - -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. - -3. This notice may not be removed or altered from any source - distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: khronos -ORIGIN: ../../../third_party/khronos/LICENSE -TYPE: LicenseType.mit -FILE: ../../../third_party/khronos/DEPS -FILE: ../../../third_party/khronos/DIR_METADATA ----------------------------------------------------------------------------------------------------- -Copyright (c) 2007-2010 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. - -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. - -SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) - -Copyright (C) 1992 Silicon Graphics, Inc. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -The above copyright notice including the dates of first publication and either -this permission notice or a reference to http://oss.sgi.com/projects/FreeB -shall be included in all copies or substantial portions of the Software. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON -GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. -Except as contained in this notice, the name of Silicon Graphics, Inc. shall -not be used in advertising or otherwise to promote the sale, use or other -dealings in this Software without prior written authorization from Silicon -Graphics, Inc. +3. This notice may not be removed or altered from any source + distribution. ==================================================================================================== ==================================================================================================== @@ -9620,8 +33046,205 @@ MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. ==================================================================================================== ==================================================================================================== -LIBRARY: angle -ORIGIN: ../../../third_party/angle/src/third_party/libXNVCtrl/LICENSE +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/dbgutil.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/dbgutil.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2007-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/dbgutil.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/dbgutil.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2007-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/ctestfw/ucln_ct.c + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/ctestfw/ucln_ct.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/ucln_tu.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/ucln_tu.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/udbgutil.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/udbgutil.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: libXNVCtrl +ORIGIN: ../../../third_party/angle/src/third_party/libXNVCtrl/NVCtrl.c +ORIGIN: ../../../third_party/angle/src/third_party/libXNVCtrl/NVCtrlLib.h +ORIGIN: ../../../third_party/angle/src/third_party/libXNVCtrl/nv_control.h TYPE: LicenseType.mit FILE: ../../../third_party/angle/src/third_party/libXNVCtrl/NVCtrl.c FILE: ../../../third_party/angle/src/third_party/libXNVCtrl/NVCtrlLib.h @@ -9652,13 +33275,18 @@ SOFTWARE. ==================================================================================================== LIBRARY: boringssl ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/e_aesccm.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/cbc.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/cfb.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/ctr.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/gcm.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/ofb.c TYPE: LicenseType.bsd FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_aesccm.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/cbc.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/cfb.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/ctr.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/gcm.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/gcm_test.cc FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/internal.h FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/ofb.c ---------------------------------------------------------------------------------------------------- @@ -9709,6 +33337,33 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: include +ORIGIN: ../../../third_party/inja/third_party/include/nlohmann/json.hpp +TYPE: LicenseType.mit +FILE: ../../../third_party/inja/third_party/include/nlohmann/json.hpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2008-2009 Bjoern Hoehrmann + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +==================================================================================================== + ==================================================================================================== LIBRARY: khronos ORIGIN: ../../../third_party/khronos/KHR/khrplatform.h @@ -9737,6 +33392,123 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. ==================================================================================================== +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/regextxt.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/regextxt.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2008-2010, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/regextxt.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/regextxt.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2008-2011, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/tools/toolutil/udbgutil.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/tools/toolutil/udbgutil.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2008-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/include/KHR/khrplatform.h @@ -9766,93 +33538,97 @@ MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. ==================================================================================================== ==================================================================================================== -LIBRARY: libtess2 -ORIGIN: ../../../third_party/libtess2/Contrib/nanosvg.c -TYPE: LicenseType.zlib -FILE: ../../../third_party/libtess2/Contrib/nanosvg.c -FILE: ../../../third_party/libtess2/Contrib/nanosvg.h +LIBRARY: include +ORIGIN: ../../../third_party/inja/third_party/include/nlohmann/json.hpp +TYPE: LicenseType.mit +FILE: ../../../third_party/inja/third_party/include/nlohmann/json.hpp ---------------------------------------------------------------------------------------------------- -Copyright (c) 2009 Mikko Mononen memon@inside.org +Copyright (c) 2009 Florian Loitsch. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/sprep/rfc3491.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/sprep/rfc3530cs.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/sprep/rfc3530csci.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/sprep/rfc3530mixp.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/sprep/rfc3722.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/sprep/rfc3920res.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/sprep/rfc4011.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/sprep/rfc4013.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/sprep/rfc4505.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/sprep/rfc4518.txt + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/data/sprep/rfc4518ci.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/sprep/rfc3491.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3530cs.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3530csci.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3530mixp.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3722.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3920res.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4011.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4013.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4505.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4518.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4518ci.txt +---------------------------------------------------------------------------------------------------- +Copyright (c) 2009, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== LIBRARY: libcxx LIBRARY: libcxxabi -ORIGIN: null +ORIGIN: ../../../third_party/libcxx/LICENSE.TXT +ORIGIN: ../../../third_party/libcxxabi/LICENSE.TXT TYPE: LicenseType.mit -FILE: ../../../third_party/libcxx/.clang-tidy -FILE: ../../../third_party/libcxx/appveyor-reqs-install.cmd -FILE: ../../../third_party/libcxx/appveyor.yml -FILE: ../../../third_party/libcxx/benchmarks/GenerateInput.h -FILE: ../../../third_party/libcxx/benchmarks/algorithms.partition_point.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/filesystem.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/lit.site.cfg.py.in -FILE: ../../../third_party/libcxx/benchmarks/string.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/stringstream.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/unordered_set_operations.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/variant_visit_1.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/variant_visit_2.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/variant_visit_3.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/vector_operations.bench.cpp -FILE: ../../../third_party/libcxx/docs/AddingNewCIJobs.rst -FILE: ../../../third_party/libcxx/docs/BuildingLibcxx.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/ABIVersioning.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/AtomicDesign.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/CapturingConfigInfo.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/DebugMode.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/ExperimentalFeatures.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/ExtendedCXX03Support.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/FeatureTestMacros.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/FileTimeType.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/NoexceptPolicy.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/ThreadingSupportAPI.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/UniquePtrTrivialAbi.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/UnspecifiedBehaviorRandomization.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/VisibilityMacros.rst -FILE: ../../../third_party/libcxx/docs/FeatureTestMacroTable.rst -FILE: ../../../third_party/libcxx/docs/Helpers/Styles.rst -FILE: ../../../third_party/libcxx/docs/ReleaseNotes.rst -FILE: ../../../third_party/libcxx/docs/Status/Cxx14.rst -FILE: ../../../third_party/libcxx/docs/Status/Cxx14Issues.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx14Papers.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx17.rst -FILE: ../../../third_party/libcxx/docs/Status/Cxx17Issues.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx17Papers.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx20.rst -FILE: ../../../third_party/libcxx/docs/Status/Cxx20Issues.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx20Papers.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx2b.rst -FILE: ../../../third_party/libcxx/docs/Status/Cxx2bIssues.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx2bPapers.csv -FILE: ../../../third_party/libcxx/docs/Status/Format.rst -FILE: ../../../third_party/libcxx/docs/Status/FormatIssues.csv -FILE: ../../../third_party/libcxx/docs/Status/FormatPaper.csv -FILE: ../../../third_party/libcxx/docs/Status/Ranges.rst -FILE: ../../../third_party/libcxx/docs/Status/RangesAlgorithms.csv -FILE: ../../../third_party/libcxx/docs/Status/RangesIssues.csv -FILE: ../../../third_party/libcxx/docs/Status/RangesPaper.csv -FILE: ../../../third_party/libcxx/docs/Status/Spaceship.rst -FILE: ../../../third_party/libcxx/docs/Status/SpaceshipPapers.csv -FILE: ../../../third_party/libcxx/docs/Status/SpaceshipProjects.csv -FILE: ../../../third_party/libcxx/docs/Status/Zip.rst -FILE: ../../../third_party/libcxx/docs/Status/ZipProjects.csv -FILE: ../../../third_party/libcxx/docs/TestingLibcxx.rst -FILE: ../../../third_party/libcxx/docs/UsingLibcxx.rst -FILE: ../../../third_party/libcxx/docs/index.rst FILE: ../../../third_party/libcxx/include/module.modulemap.in FILE: ../../../third_party/libcxx/lib/abi/arm64-apple-darwin.libcxxabi.v1.stable.exceptions.nonew.debug.incomplete.abilist FILE: ../../../third_party/libcxx/lib/abi/arm64-apple-darwin.libcxxabi.v1.stable.exceptions.nonew.nodebug.noincomplete.abilist @@ -9902,7 +33678,7 @@ THE SOFTWARE. ==================================================================================================== LIBRARY: glfw ORIGIN: ../../../third_party/glfw/src/cocoa_time.c -TYPE: LicenseType.zlib +TYPE: LicenseType.unknown FILE: ../../../third_party/glfw/src/cocoa_time.c ---------------------------------------------------------------------------------------------------- Copyright (c) 2009-2016 Camilla Löwy @@ -9930,7 +33706,10 @@ freely, subject to the following restrictions: ==================================================================================================== LIBRARY: glfw ORIGIN: ../../../third_party/glfw/src/cocoa_init.m -TYPE: LicenseType.zlib +ORIGIN: ../../../third_party/glfw/src/cocoa_platform.h +ORIGIN: ../../../third_party/glfw/src/cocoa_window.m +ORIGIN: ../../../third_party/glfw/src/nsgl_context.m +TYPE: LicenseType.unknown FILE: ../../../third_party/glfw/src/cocoa_init.m FILE: ../../../third_party/glfw/src/cocoa_platform.h FILE: ../../../third_party/glfw/src/cocoa_window.m @@ -9961,7 +33740,7 @@ freely, subject to the following restrictions: ==================================================================================================== LIBRARY: glfw ORIGIN: ../../../third_party/glfw/src/cocoa_joystick.m -TYPE: LicenseType.zlib +TYPE: LicenseType.unknown FILE: ../../../third_party/glfw/src/cocoa_joystick.m ---------------------------------------------------------------------------------------------------- Copyright (c) 2009-2019 Camilla Löwy @@ -9987,10 +33766,81 @@ freely, subject to the following restrictions: distribution. ==================================================================================================== +==================================================================================================== +LIBRARY: libcxx +LIBRARY: libcxxabi +ORIGIN: ../../../third_party/libcxx/LICENSE.TXT +ORIGIN: ../../../third_party/libcxxabi/LICENSE.TXT +TYPE: LicenseType.bsd +FILE: ../../../third_party/libcxx/include/module.modulemap.in +FILE: ../../../third_party/libcxx/lib/abi/arm64-apple-darwin.libcxxabi.v1.stable.exceptions.nonew.debug.incomplete.abilist +FILE: ../../../third_party/libcxx/lib/abi/arm64-apple-darwin.libcxxabi.v1.stable.exceptions.nonew.nodebug.noincomplete.abilist +FILE: ../../../third_party/libcxx/lib/abi/powerpc-ibm-aix.libcxxabi.v1.stable.exceptions.nonew.debug.incomplete.abilist +FILE: ../../../third_party/libcxx/lib/abi/powerpc64-ibm-aix.libcxxabi.v1.stable.exceptions.nonew.debug.incomplete.abilist +FILE: ../../../third_party/libcxx/lib/abi/x86_64-apple-darwin.libcxxabi.v1.stable.exceptions.nonew.debug.incomplete.abilist +FILE: ../../../third_party/libcxx/lib/abi/x86_64-apple-darwin.libcxxabi.v1.stable.exceptions.nonew.nodebug.noincomplete.abilist +FILE: ../../../third_party/libcxx/lib/abi/x86_64-unknown-linux-gnu.libcxxabi.v1.stable.exceptions.nonew.debug.incomplete.abilist +FILE: ../../../third_party/libcxx/lib/abi/x86_64-unknown-linux-gnu.libcxxabi.v1.stable.exceptions.nonew.debug.noincomplete.abilist +FILE: ../../../third_party/libcxx/lib/abi/x86_64-unknown-linux-gnu.libcxxabi.v1.stable.exceptions.nonew.nodebug.incomplete.abilist +FILE: ../../../third_party/libcxx/lib/abi/x86_64-unknown-linux-gnu.libcxxabi.v1.stable.noexceptions.nonew.debug.incomplete.abilist +FILE: ../../../third_party/libcxx/lib/libc++abi.exp +FILE: ../../../third_party/libcxx/lib/libc++unexp.exp +FILE: ../../../third_party/libcxx/lib/notweak.exp +FILE: ../../../third_party/libcxx/lib/weak.exp +FILE: ../../../third_party/libcxx/src/chrono_system_time_init.h +FILE: ../../../third_party/libcxx/src/experimental/memory_resource_init_helper.h +FILE: ../../../third_party/libcxx/src/iostream_init.h +FILE: ../../../third_party/libcxxabi/fuzz/cxa_demangle_fuzzer.cpp +FILE: ../../../third_party/libcxxabi/lib/exceptions.exp +FILE: ../../../third_party/libcxxabi/lib/itanium-base.exp +FILE: ../../../third_party/libcxxabi/lib/new-delete.exp +FILE: ../../../third_party/libcxxabi/lib/personality-sjlj.exp +FILE: ../../../third_party/libcxxabi/lib/personality-v0.exp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT + +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. +==================================================================================================== + ==================================================================================================== LIBRARY: glfw ORIGIN: ../../../third_party/glfw/src/cocoa_time.h -TYPE: LicenseType.zlib +TYPE: LicenseType.unknown FILE: ../../../third_party/glfw/src/cocoa_time.h ---------------------------------------------------------------------------------------------------- Copyright (c) 2009-2021 Camilla Löwy @@ -10016,44 +33866,7 @@ freely, subject to the following restrictions: ==================================================================================================== ==================================================================================================== -LIBRARY: colorama -ORIGIN: ../../../third_party/colorama/src/LICENSE.txt -TYPE: LicenseType.bsd -FILE: ../../../third_party/colorama/src/MANIFEST.in -FILE: ../../../third_party/colorama/src/screenshots/ubuntu-demo.png -FILE: ../../../third_party/colorama/src/screenshots/windows-demo.png ----------------------------------------------------------------------------------------------------- -Copyright (c) 2010 Jonathan Hartley -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of the copyright holders, nor those of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: angle +LIBRARY: libXNVCtrl ORIGIN: ../../../third_party/angle/src/third_party/libXNVCtrl/NVCtrl.h TYPE: LicenseType.mit FILE: ../../../third_party/angle/src/third_party/libXNVCtrl/NVCtrl.h @@ -10137,14 +33950,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE. LIBRARY: libwebp ORIGIN: ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd -FILE: ../../../third_party/libwebp/Makefile.vc -FILE: ../../../third_party/libwebp/cmake/WebPConfig.cmake.in -FILE: ../../../third_party/libwebp/cmake/config.h.in -FILE: ../../../third_party/libwebp/doc/TODO -FILE: ../../../third_party/libwebp/doc/template.html FILE: ../../../third_party/libwebp/extras/webp_quality.c -FILE: ../../../third_party/libwebp/gradle.properties -FILE: ../../../third_party/libwebp/makefile.unix FILE: ../../../third_party/libwebp/src/demux/libwebpdemux.pc.in FILE: ../../../third_party/libwebp/src/demux/libwebpdemux.rc FILE: ../../../third_party/libwebp/src/libwebp.pc.in @@ -10153,10 +33959,6 @@ FILE: ../../../third_party/libwebp/src/libwebpdecoder.pc.in FILE: ../../../third_party/libwebp/src/libwebpdecoder.rc FILE: ../../../third_party/libwebp/src/mux/libwebpmux.pc.in FILE: ../../../third_party/libwebp/src/mux/libwebpmux.rc -FILE: ../../../third_party/libwebp/webp_js/index.html -FILE: ../../../third_party/libwebp/webp_js/index_wasm.html -FILE: ../../../third_party/libwebp/webp_js/test_webp_js.webp -FILE: ../../../third_party/libwebp/webp_js/test_webp_wasm.webp ---------------------------------------------------------------------------------------------------- Copyright (c) 2010, Google Inc. All rights reserved. @@ -10192,6 +33994,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: dart ORIGIN: ../../../third_party/dart/runtime/platform/splay-tree-inl.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/splay-tree.h + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/dart/runtime/platform/splay-tree-inl.h FILE: ../../../third_party/dart/runtime/platform/splay-tree.h @@ -10225,10 +34028,87 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: include +ORIGIN: ../../../third_party/inja/third_party/include/hayai/LICENSE.md +TYPE: LicenseType.unknown +FILE: ../../../third_party/inja/third_party/include/hayai/hayai.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_benchmarker.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_compatibility.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_console.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_console_outputter.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_default_test_factory.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_fixture.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_json_outputter.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_junit_xml_outputter.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_main.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_outputter.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_test.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_test_descriptor.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_test_factory.hpp +FILE: ../../../third_party/inja/third_party/include/hayai/hayai_test_result.hpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2011 - Nick Bruun. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. If you meet (any of) the author(s), you're encouraged to buy them a beer, + a drink or whatever is suited to the situation, given that you like the + software. +4. This notice may not be removed or altered from any source + distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: smhasher +ORIGIN: ../../../third_party/angle/src/common/third_party/smhasher/LICENSE +TYPE: LicenseType.mit +FILE: ../../../third_party/angle/src/common/third_party/smhasher/src/PMurHash.cpp +FILE: ../../../third_party/angle/src/common/third_party/smhasher/src/PMurHash.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2011 Google, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + ==================================================================================================== LIBRARY: base LIBRARY: zlib ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/containers/mru_cache.h + ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/sha1.cc + ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/sha1.h + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/google/zip.h + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/google/zip_internal.cc + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/google/zip_internal.h + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/google/zip_reader.h + ../../../LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/common/third_party/base/anglebase/containers/mru_cache.h FILE: ../../../third_party/angle/src/common/third_party/base/anglebase/sha1.cc @@ -10237,8 +34117,6 @@ FILE: ../../../third_party/zlib/google/zip.h FILE: ../../../third_party/zlib/google/zip_internal.cc FILE: ../../../third_party/zlib/google/zip_internal.h FILE: ../../../third_party/zlib/google/zip_reader.h -FILE: ../../../third_party/zlib/google/zip_reader_unittest.cc -FILE: ../../../third_party/zlib/google/zip_unittest.cc ---------------------------------------------------------------------------------------------------- Copyright (c) 2011 The Chromium Authors. All rights reserved. @@ -10377,9 +34255,83 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: dart -ORIGIN: ../../../third_party/dart/runtime/bin/process_test.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/snapshot_empty.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/snapshot_in.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/include/dart_tools_api.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/double.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/math.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/mirrors.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/object.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/string.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/bitfield.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpu_ia32.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/dart.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/dart_api_impl.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/dart_entry.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/dart_entry.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/debugger_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/debugger_ia32.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/debugger_x64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/double_conversion.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/double_conversion.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/exceptions.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/exceptions.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/handle_visitor.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/handles.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/freelist.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/marker.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/marker.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/pages.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/scavenger.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/sweeper.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/sweeper.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/verifier.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/longjump.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/memory_region.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/message.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/message.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/message_handler.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/message_handler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/native_entry.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/native_entry.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/native_function.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/port.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/resolver.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/resolver.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/runtime_entry.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/runtime_entry.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/runtime_entry_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/runtime_entry_ia32.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/runtime_entry_list.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/runtime_entry_x64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/stack_frame.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/stub_code.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/timer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/timer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/token.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/unicode_data.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/visitor.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/queue.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/comparable.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/date_time.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/duration.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/function.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/iterable.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/map.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/pattern.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/set.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/stopwatch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/string_buffer.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/html/html_common/device.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/html/html_common/filtered_element_list.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/html/html_common/lists.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/internal/iterable.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/internal/sort.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/utils/peg/pegparser.dart + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/bin/process_test.cc FILE: ../../../third_party/dart/runtime/bin/snapshot_empty.cc FILE: ../../../third_party/dart/runtime/bin/snapshot_in.cc FILE: ../../../third_party/dart/runtime/include/dart_tools_api.h @@ -10389,13 +34341,9 @@ FILE: ../../../third_party/dart/runtime/lib/mirrors.h FILE: ../../../third_party/dart/runtime/lib/object.cc FILE: ../../../third_party/dart/runtime/lib/string.cc FILE: ../../../third_party/dart/runtime/vm/bitfield.h -FILE: ../../../third_party/dart/runtime/vm/code_patcher_ia32_test.cc -FILE: ../../../third_party/dart/runtime/vm/code_patcher_x64_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler.h -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_test.cc FILE: ../../../third_party/dart/runtime/vm/cpu_ia32.cc -FILE: ../../../third_party/dart/runtime/vm/custom_isolate_test.cc FILE: ../../../third_party/dart/runtime/vm/dart.h FILE: ../../../third_party/dart/runtime/vm/dart_api_impl.h FILE: ../../../third_party/dart/runtime/vm/dart_entry.cc @@ -10418,7 +34366,6 @@ FILE: ../../../third_party/dart/runtime/vm/heap/sweeper.cc FILE: ../../../third_party/dart/runtime/vm/heap/sweeper.h FILE: ../../../third_party/dart/runtime/vm/heap/verifier.h FILE: ../../../third_party/dart/runtime/vm/longjump.cc -FILE: ../../../third_party/dart/runtime/vm/longjump_test.cc FILE: ../../../third_party/dart/runtime/vm/memory_region.cc FILE: ../../../third_party/dart/runtime/vm/message.cc FILE: ../../../third_party/dart/runtime/vm/message.h @@ -10426,10 +34373,7 @@ FILE: ../../../third_party/dart/runtime/vm/message_handler.cc FILE: ../../../third_party/dart/runtime/vm/message_handler.h FILE: ../../../third_party/dart/runtime/vm/native_entry.cc FILE: ../../../third_party/dart/runtime/vm/native_entry.h -FILE: ../../../third_party/dart/runtime/vm/native_entry_test.cc -FILE: ../../../third_party/dart/runtime/vm/native_entry_test.h FILE: ../../../third_party/dart/runtime/vm/native_function.h -FILE: ../../../third_party/dart/runtime/vm/object_store_test.cc FILE: ../../../third_party/dart/runtime/vm/os.h FILE: ../../../third_party/dart/runtime/vm/port.h FILE: ../../../third_party/dart/runtime/vm/resolver.cc @@ -10442,14 +34386,10 @@ FILE: ../../../third_party/dart/runtime/vm/runtime_entry_list.h FILE: ../../../third_party/dart/runtime/vm/runtime_entry_x64.cc FILE: ../../../third_party/dart/runtime/vm/stack_frame.h FILE: ../../../third_party/dart/runtime/vm/stub_code.h -FILE: ../../../third_party/dart/runtime/vm/stub_code_ia32_test.cc -FILE: ../../../third_party/dart/runtime/vm/stub_code_x64_test.cc FILE: ../../../third_party/dart/runtime/vm/timer.cc FILE: ../../../third_party/dart/runtime/vm/timer.h FILE: ../../../third_party/dart/runtime/vm/token.cc FILE: ../../../third_party/dart/runtime/vm/unicode_data.cc -FILE: ../../../third_party/dart/runtime/vm/unicode_test.cc -FILE: ../../../third_party/dart/runtime/vm/unit_test.h FILE: ../../../third_party/dart/runtime/vm/visitor.h FILE: ../../../third_party/dart/sdk/lib/collection/queue.dart FILE: ../../../third_party/dart/sdk/lib/core/comparable.dart @@ -10498,9 +34438,49 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/brkitr/dictionaries/khmerdict.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/brkitr/dictionaries/khmerdict.txt +---------------------------------------------------------------------------------------------------- +Copyright (c) 2011-2012 International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + ==================================================================================================== LIBRARY: zlib ORIGIN: ../../../third_party/zlib/google/zip.cc + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/google/zip_reader.cc + ../../../LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/zlib/google/zip.cc FILE: ../../../third_party/zlib/google/zip_reader.cc @@ -10590,8 +34570,370 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: dart ORIGIN: ../../../third_party/dart/runtime/bin/builtin.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/builtin.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/builtin_gen_snapshot.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/builtin_in.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/builtin_natives.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/crashpad.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/crypto.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/crypto.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/crypto_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/crypto_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/crypto_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/crypto_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/dartutils.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/dartutils.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/directory.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/directory.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/directory_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/directory_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/directory_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/directory_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/eventhandler.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/eventhandler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/eventhandler_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/eventhandler_android.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/eventhandler_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/eventhandler_linux.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/eventhandler_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/eventhandler_macos.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/eventhandler_win.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/fdutils.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/fdutils_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/fdutils_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/fdutils_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/fdutils_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/io_buffer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/io_buffer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/io_natives.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/isolate_data.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/lockers.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/main.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/platform.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/platform.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/platform_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/platform_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/platform_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/platform_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/process.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/process_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/process_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/process_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/process_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/run_vm_tests.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/secure_socket_unsupported.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_base_android.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_base_linux.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_base_macos.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_base_win.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/thread.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/thread_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/thread_android.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/thread_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/thread_linux.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/thread_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/thread_macos.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/thread_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/thread_win.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/utils.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/utils_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/utils_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/utils_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/utils_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/utils_win.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/include/dart_api.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/array.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/bool.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/date.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/errors.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/function.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/growable_array.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/identical.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/integers.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/isolate.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/mirrors.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/regexp.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/stopwatch.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/assert.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/assert.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/floating_point.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/floating_point_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/floating_point_win.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/globals.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/hashmap.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/hashmap.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/syslog.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/syslog_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/syslog_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/syslog_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/syslog_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/text_buffer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/text_buffer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/unicode.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/unicode.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/utils.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/utils.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/utils_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/utils_android.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/utils_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/utils_linux.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/utils_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/utils_macos.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/utils_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/utils_win.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/allocation.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/base_isolate.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/bit_set.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/bit_vector.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/bit_vector.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/bitmap.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/bitmap.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/boolfield.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/bootstrap.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/bootstrap.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/bootstrap_natives.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/bootstrap_natives.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/class_finalizer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/class_table.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/class_table.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_descriptors.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_descriptors.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_observers.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_observers.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_patcher.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_patcher.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_patcher_ia32.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_patcher_x64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/aot/aot_call_specializer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_base.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_x86.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/object_pool_builder.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/constant_propagator.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/il_printer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/il_printer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/inliner.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/cha.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/cha.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/flow_graph_builder.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/flow_graph_builder.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/intrinsifier.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/intrinsifier.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/jit/compiler.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/jit/compiler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpu.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpu_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpu_x64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpuinfo_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpuinfo_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/dart_api_message.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/dart_api_state.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/datastream.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/debugger.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/debugger.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/double_internals.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/flag_list.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/flags.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/flags.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/globals.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/growable_array.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/handles.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/handles_impl.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/hash_map.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/freelist.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/heap.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/heap.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/pages.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/pointer_block.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/pointer_block.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/scavenger.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/verifier.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/instructions_ia32.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/instructions_ia32.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/instructions_x64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/instructions_x64.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/lockers.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/megamorphic_cache_table.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/megamorphic_cache_table.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/memory_region.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/native_arguments.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/native_message_handler.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/native_message_handler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/object.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/object.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/object_set.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/object_store.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread_android.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread_linux.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread_macos.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread_win.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/parser.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/parser.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/port.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/proccpuinfo.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/proccpuinfo.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/raw_object.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/raw_object.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/scopes.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/scopes.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/snapshot.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/snapshot.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/stack_frame.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/stub_code.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/symbols.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/symbols.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_pool.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_pool.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/token.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/unicode.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/version.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/version_in.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/virtual_memory.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/virtual_memory.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/virtual_memory_posix.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/virtual_memory_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/zone.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/zone.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_http/crypto.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_http/http_date.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/async_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/core_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/isolate_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/math_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/foreign_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/interceptors.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/isolate_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/js_array.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/js_number.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/js_string.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/native_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/regexp_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/string_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/async_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/constant_map.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/core_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/foreign_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/interceptors.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/isolate_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_array.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_number.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_string.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/math_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/native_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/regexp_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/string_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/builtin.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/common_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/directory_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/eventhandler_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/file_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/platform_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/secure_socket_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/array.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/date_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/double.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/double_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/empty_source.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/errors_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/expando_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/function_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/growable_array.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/identical_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/immutable_map.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/integers.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/invocation_mirror_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/isolate_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/math_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/mirrors_impl.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/mirrors_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/object_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/print_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/regexp_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/stopwatch_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/string_buffer_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/string_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/timer_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/type_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/weak_property.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm_shared/lib/array_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm_shared/lib/bool_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm_shared/lib/integers_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm_shared/lib/map_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/async.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/async_error.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/broadcast_stream_controller.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/future.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/future_impl.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/stream_controller.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/stream_impl.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/stream_pipe.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/timer.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/collection.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/iterable.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/iterator.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/maps.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/splay_tree.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/bool.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/core.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/double.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/errors.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/exceptions.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/identical.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/int.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/invocation.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/iterator.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/list.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/num.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/object.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/print.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/regexp.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/string.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/type.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/uri.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/weak.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/html/dart2js/html_dart2js.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/html/dartium/nativewrappers.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/html/html_common/conversions.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/html/html_common/css_class_set.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/html/html_common/html_common_dart2js.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/html/html_common/metadata.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/internal/async_cast.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/internal/cast.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/internal/internal.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/common.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/directory.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/directory_impl.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/eventhandler.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/io.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/platform.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/platform_impl.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/secure_server_socket.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/isolate/isolate.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/math/math.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/math/random.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/svg/dart2js/svg_dart2js.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/DEPS FILE: ../../../third_party/dart/runtime/bin/builtin.cc FILE: ../../../third_party/dart/runtime/bin/builtin.h FILE: ../../../third_party/dart/runtime/bin/builtin_gen_snapshot.cc @@ -10620,7 +34962,6 @@ FILE: ../../../third_party/dart/runtime/bin/eventhandler_linux.cc FILE: ../../../third_party/dart/runtime/bin/eventhandler_linux.h FILE: ../../../third_party/dart/runtime/bin/eventhandler_macos.cc FILE: ../../../third_party/dart/runtime/bin/eventhandler_macos.h -FILE: ../../../third_party/dart/runtime/bin/eventhandler_test.cc FILE: ../../../third_party/dart/runtime/bin/eventhandler_win.h FILE: ../../../third_party/dart/runtime/bin/fdutils.h FILE: ../../../third_party/dart/runtime/bin/fdutils_android.cc @@ -10630,9 +34971,7 @@ FILE: ../../../third_party/dart/runtime/bin/fdutils_macos.cc FILE: ../../../third_party/dart/runtime/bin/file_android.cc FILE: ../../../third_party/dart/runtime/bin/file_linux.cc FILE: ../../../third_party/dart/runtime/bin/file_macos.cc -FILE: ../../../third_party/dart/runtime/bin/file_test.cc FILE: ../../../third_party/dart/runtime/bin/file_win.cc -FILE: ../../../third_party/dart/runtime/bin/hashmap_test.cc FILE: ../../../third_party/dart/runtime/bin/io_buffer.cc FILE: ../../../third_party/dart/runtime/bin/io_buffer.h FILE: ../../../third_party/dart/runtime/bin/io_natives.h @@ -10713,32 +35052,22 @@ FILE: ../../../third_party/dart/runtime/platform/utils_macos.h FILE: ../../../third_party/dart/runtime/platform/utils_win.cc FILE: ../../../third_party/dart/runtime/platform/utils_win.h FILE: ../../../third_party/dart/runtime/vm/allocation.cc -FILE: ../../../third_party/dart/runtime/vm/allocation_test.cc -FILE: ../../../third_party/dart/runtime/vm/assert_test.cc FILE: ../../../third_party/dart/runtime/vm/base_isolate.h -FILE: ../../../third_party/dart/runtime/vm/benchmark_test.cc -FILE: ../../../third_party/dart/runtime/vm/benchmark_test.h FILE: ../../../third_party/dart/runtime/vm/bit_set.h FILE: ../../../third_party/dart/runtime/vm/bit_vector.cc FILE: ../../../third_party/dart/runtime/vm/bit_vector.h -FILE: ../../../third_party/dart/runtime/vm/bit_vector_test.cc -FILE: ../../../third_party/dart/runtime/vm/bitfield_test.cc FILE: ../../../third_party/dart/runtime/vm/bitmap.cc FILE: ../../../third_party/dart/runtime/vm/bitmap.h -FILE: ../../../third_party/dart/runtime/vm/bitmap_test.cc FILE: ../../../third_party/dart/runtime/vm/boolfield.h -FILE: ../../../third_party/dart/runtime/vm/boolfield_test.cc FILE: ../../../third_party/dart/runtime/vm/bootstrap.cc FILE: ../../../third_party/dart/runtime/vm/bootstrap.h FILE: ../../../third_party/dart/runtime/vm/bootstrap_natives.cc FILE: ../../../third_party/dart/runtime/vm/bootstrap_natives.h FILE: ../../../third_party/dart/runtime/vm/class_finalizer.h -FILE: ../../../third_party/dart/runtime/vm/class_finalizer_test.cc FILE: ../../../third_party/dart/runtime/vm/class_table.cc FILE: ../../../third_party/dart/runtime/vm/class_table.h FILE: ../../../third_party/dart/runtime/vm/code_descriptors.cc FILE: ../../../third_party/dart/runtime/vm/code_descriptors.h -FILE: ../../../third_party/dart/runtime/vm/code_descriptors_test.cc FILE: ../../../third_party/dart/runtime/vm/code_observers.cc FILE: ../../../third_party/dart/runtime/vm/code_observers.h FILE: ../../../third_party/dart/runtime/vm/code_patcher.cc @@ -10748,92 +35077,64 @@ FILE: ../../../third_party/dart/runtime/vm/code_patcher_x64.cc FILE: ../../../third_party/dart/runtime/vm/compiler/aot/aot_call_specializer.h FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler.h FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_base.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_ia32_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_x64_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_x86.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/object_pool_builder.h FILE: ../../../third_party/dart/runtime/vm/compiler/backend/constant_propagator.h FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_printer.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_printer.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/inliner.h FILE: ../../../third_party/dart/runtime/vm/compiler/cha.cc FILE: ../../../third_party/dart/runtime/vm/compiler/cha.h -FILE: ../../../third_party/dart/runtime/vm/compiler/cha_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/flow_graph_builder.cc FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/flow_graph_builder.h FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier.cc FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier.h FILE: ../../../third_party/dart/runtime/vm/compiler/jit/compiler.cc FILE: ../../../third_party/dart/runtime/vm/compiler/jit/compiler.h -FILE: ../../../third_party/dart/runtime/vm/compiler_test.cc FILE: ../../../third_party/dart/runtime/vm/cpu.h FILE: ../../../third_party/dart/runtime/vm/cpu_arm.cc -FILE: ../../../third_party/dart/runtime/vm/cpu_test.cc FILE: ../../../third_party/dart/runtime/vm/cpu_x64.cc FILE: ../../../third_party/dart/runtime/vm/cpuinfo_linux.cc FILE: ../../../third_party/dart/runtime/vm/cpuinfo_macos.cc -FILE: ../../../third_party/dart/runtime/vm/dart_api_impl_test.cc FILE: ../../../third_party/dart/runtime/vm/dart_api_message.h FILE: ../../../third_party/dart/runtime/vm/dart_api_state.h FILE: ../../../third_party/dart/runtime/vm/datastream.h FILE: ../../../third_party/dart/runtime/vm/debugger.cc FILE: ../../../third_party/dart/runtime/vm/debugger.h -FILE: ../../../third_party/dart/runtime/vm/debugger_api_impl_test.cc FILE: ../../../third_party/dart/runtime/vm/double_internals.h -FILE: ../../../third_party/dart/runtime/vm/exceptions_test.cc FILE: ../../../third_party/dart/runtime/vm/flag_list.h FILE: ../../../third_party/dart/runtime/vm/flags.cc FILE: ../../../third_party/dart/runtime/vm/flags.h -FILE: ../../../third_party/dart/runtime/vm/flags_test.cc FILE: ../../../third_party/dart/runtime/vm/globals.h FILE: ../../../third_party/dart/runtime/vm/growable_array.h -FILE: ../../../third_party/dart/runtime/vm/growable_array_test.cc FILE: ../../../third_party/dart/runtime/vm/handles.cc FILE: ../../../third_party/dart/runtime/vm/handles_impl.h -FILE: ../../../third_party/dart/runtime/vm/handles_test.cc FILE: ../../../third_party/dart/runtime/vm/hash_map.h -FILE: ../../../third_party/dart/runtime/vm/hash_map_test.cc FILE: ../../../third_party/dart/runtime/vm/heap/freelist.h -FILE: ../../../third_party/dart/runtime/vm/heap/freelist_test.cc FILE: ../../../third_party/dart/runtime/vm/heap/heap.cc FILE: ../../../third_party/dart/runtime/vm/heap/heap.h -FILE: ../../../third_party/dart/runtime/vm/heap/heap_test.cc FILE: ../../../third_party/dart/runtime/vm/heap/pages.cc -FILE: ../../../third_party/dart/runtime/vm/heap/pages_test.cc FILE: ../../../third_party/dart/runtime/vm/heap/pointer_block.cc FILE: ../../../third_party/dart/runtime/vm/heap/pointer_block.h FILE: ../../../third_party/dart/runtime/vm/heap/scavenger.h FILE: ../../../third_party/dart/runtime/vm/heap/verifier.cc FILE: ../../../third_party/dart/runtime/vm/instructions_ia32.cc FILE: ../../../third_party/dart/runtime/vm/instructions_ia32.h -FILE: ../../../third_party/dart/runtime/vm/instructions_ia32_test.cc FILE: ../../../third_party/dart/runtime/vm/instructions_x64.cc FILE: ../../../third_party/dart/runtime/vm/instructions_x64.h -FILE: ../../../third_party/dart/runtime/vm/instructions_x64_test.cc -FILE: ../../../third_party/dart/runtime/vm/isolate_test.cc -FILE: ../../../third_party/dart/runtime/vm/json_test.cc FILE: ../../../third_party/dart/runtime/vm/lockers.h FILE: ../../../third_party/dart/runtime/vm/megamorphic_cache_table.cc FILE: ../../../third_party/dart/runtime/vm/megamorphic_cache_table.h FILE: ../../../third_party/dart/runtime/vm/memory_region.h -FILE: ../../../third_party/dart/runtime/vm/memory_region_test.cc -FILE: ../../../third_party/dart/runtime/vm/message_handler_test.cc -FILE: ../../../third_party/dart/runtime/vm/message_test.cc FILE: ../../../third_party/dart/runtime/vm/native_arguments.h FILE: ../../../third_party/dart/runtime/vm/native_message_handler.cc FILE: ../../../third_party/dart/runtime/vm/native_message_handler.h FILE: ../../../third_party/dart/runtime/vm/object.cc FILE: ../../../third_party/dart/runtime/vm/object.h -FILE: ../../../third_party/dart/runtime/vm/object_arm_test.cc -FILE: ../../../third_party/dart/runtime/vm/object_ia32_test.cc FILE: ../../../third_party/dart/runtime/vm/object_set.h FILE: ../../../third_party/dart/runtime/vm/object_store.h -FILE: ../../../third_party/dart/runtime/vm/object_test.cc -FILE: ../../../third_party/dart/runtime/vm/object_x64_test.cc FILE: ../../../third_party/dart/runtime/vm/os_android.cc FILE: ../../../third_party/dart/runtime/vm/os_linux.cc FILE: ../../../third_party/dart/runtime/vm/os_macos.cc @@ -10850,41 +35151,30 @@ FILE: ../../../third_party/dart/runtime/vm/os_win.cc FILE: ../../../third_party/dart/runtime/vm/parser.cc FILE: ../../../third_party/dart/runtime/vm/parser.h FILE: ../../../third_party/dart/runtime/vm/port.cc -FILE: ../../../third_party/dart/runtime/vm/port_test.cc FILE: ../../../third_party/dart/runtime/vm/proccpuinfo.cc FILE: ../../../third_party/dart/runtime/vm/proccpuinfo.h FILE: ../../../third_party/dart/runtime/vm/raw_object.cc FILE: ../../../third_party/dart/runtime/vm/raw_object.h FILE: ../../../third_party/dart/runtime/vm/scopes.cc FILE: ../../../third_party/dart/runtime/vm/scopes.h -FILE: ../../../third_party/dart/runtime/vm/scopes_test.cc FILE: ../../../third_party/dart/runtime/vm/snapshot.cc FILE: ../../../third_party/dart/runtime/vm/snapshot.h -FILE: ../../../third_party/dart/runtime/vm/snapshot_test.cc FILE: ../../../third_party/dart/runtime/vm/stack_frame.cc -FILE: ../../../third_party/dart/runtime/vm/stack_frame_test.cc FILE: ../../../third_party/dart/runtime/vm/stub_code.cc FILE: ../../../third_party/dart/runtime/vm/symbols.cc FILE: ../../../third_party/dart/runtime/vm/symbols.h FILE: ../../../third_party/dart/runtime/vm/thread_pool.cc FILE: ../../../third_party/dart/runtime/vm/thread_pool.h -FILE: ../../../third_party/dart/runtime/vm/thread_pool_test.cc -FILE: ../../../third_party/dart/runtime/vm/thread_test.cc FILE: ../../../third_party/dart/runtime/vm/token.h FILE: ../../../third_party/dart/runtime/vm/unicode.cc -FILE: ../../../third_party/dart/runtime/vm/unit_test.cc -FILE: ../../../third_party/dart/runtime/vm/utils_test.cc FILE: ../../../third_party/dart/runtime/vm/version.h FILE: ../../../third_party/dart/runtime/vm/version_in.cc FILE: ../../../third_party/dart/runtime/vm/virtual_memory.cc FILE: ../../../third_party/dart/runtime/vm/virtual_memory.h FILE: ../../../third_party/dart/runtime/vm/virtual_memory_posix.cc -FILE: ../../../third_party/dart/runtime/vm/virtual_memory_test.cc FILE: ../../../third_party/dart/runtime/vm/virtual_memory_win.cc FILE: ../../../third_party/dart/runtime/vm/zone.cc FILE: ../../../third_party/dart/runtime/vm/zone.h -FILE: ../../../third_party/dart/runtime/vm/zone_test.cc -FILE: ../../../third_party/dart/samples/samples.status FILE: ../../../third_party/dart/sdk/lib/_http/crypto.dart FILE: ../../../third_party/dart/sdk/lib/_http/http_date.dart FILE: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/async_patch.dart @@ -11039,7 +35329,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: angle +LIBRARY: trace_event ORIGIN: ../../../third_party/angle/src/third_party/trace_event/trace_event.h + ../../../LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/third_party/trace_event/trace_event.h @@ -11073,6 +35363,34 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/gl_types.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/gl_types.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2013 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +==================================================================================================== + ==================================================================================================== LIBRARY: boringssl ORIGIN: ../../../third_party/boringssl/src/crypto/x509/internal.h @@ -11129,8 +35447,347 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: dart ORIGIN: ../../../third_party/dart/runtime/bin/eventhandler_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_system_watcher.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_system_watcher.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_system_watcher_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_system_watcher_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_system_watcher_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_system_watcher_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/filter.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/filter.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/gen_snapshot.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/io_natives.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/io_service.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/io_service.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/io_service_no_ssl.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/io_service_no_ssl.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/process.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_base_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_base_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_base_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/stdio.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/stdio.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/stdio_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/stdio_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/stdio_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/stdio_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/vmservice_impl.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/vmservice_impl.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/include/dart_native_api.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/invocation_mirror.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/libgen_in.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/simd128.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/stacktrace.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/typed_data.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/uri.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/app/application.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/app/location_manager.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_instances.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/code_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/code_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/context_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/context_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/cpu_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/cpu_profile/virtual_tree.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/cpu_profile_table.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/curly_block.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/error_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/eval_box.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/field_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/field_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/flag_list.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/function_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/function_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/heap_snapshot.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/any_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/icdata_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/icdata_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/instance_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/instance_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/json_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/library_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/library_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/local_var_descriptors_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/megamorphiccache_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/native_memory_profiler.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/object_common.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/object_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/objectpool_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/objectstore_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/observatory_application.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/pc_descriptors_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/sample_buffer_control.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/script_inset.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/script_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/script_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/sentinel_value.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/sentinel_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/source_inset.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/stack_trace_tree_config.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/type_arguments_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/unknown_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/vm_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/tracer.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/app/application.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/app/location_manager.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/class_instances.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/class_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/class_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/code_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/code_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/context_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/context_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/cpu_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/cpu_profile/virtual_tree.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/cpu_profile_table.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/curly_block.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/error_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/eval_box.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/field_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/field_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/flag_list.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/function_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/function_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/heap_snapshot.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/helpers/any_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/icdata_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/icdata_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/instance_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/instance_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/isolate_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/isolate_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/json_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/library_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/library_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/local_var_descriptors_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/megamorphiccache_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/native_memory_profiler.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/object_common.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/object_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/objectpool_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/objectstore_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/observatory_application.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/pc_descriptors_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/sample_buffer_control.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/script_inset.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/script_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/script_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/sentinel_value.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/sentinel_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/source_inset.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/stack_trace_tree_config.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/type_arguments_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/unknown_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/vm_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/tracer.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/atomic.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/signal_blocker.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/allocation.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/class_finalizer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_patcher_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/aot/aot_call_specializer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_ia32.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_ia32.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_x64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_x64.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/block_scheduler.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/block_scheduler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/constant_propagator.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_ia32.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_x64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/il.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/il.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/il_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/il_ia32.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/il_x64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/inliner.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/linearscan.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/linearscan.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/locations.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/locations.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/type_propagator.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/type_propagator.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/jit/jit_call_specializer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/constants_arm.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/constants_ia32.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/constants_x64.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/dart.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/dart_api_impl.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/deferred_objects.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/deferred_objects.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/deopt_instructions.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/deopt_instructions.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/weak_table.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/weak_table.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/instructions.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/instructions_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/instructions_arm.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/isolate.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/isolate.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/json_stream.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/json_stream.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/native_api_impl.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/native_symbol.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/native_symbol_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/native_symbol_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/native_symbol_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/native_symbol_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/object_id_ring.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/object_id_ring.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/object_store.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/profiler.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/profiler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/random.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/random.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/reusable_handles.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/service.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/service.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/service_isolate.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/signal_handler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/signal_handler_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/signal_handler_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/signal_handler_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/signal_handler_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/simulator.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/simulator_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/simulator_arm.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/stack_frame_arm.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/stack_frame_ia32.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/stack_frame_x64.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/tags.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_interrupter.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_interrupter.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_interrupter_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_interrupter_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_interrupter_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_interrupter_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_http/http.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_http/http_headers.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_http/http_impl.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_http/http_parser.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_http/http_session.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_http/websocket.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_http/websocket_impl.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/collection_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/convert_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/internal_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/io_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/typed_data_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/annotations.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/js_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/js_primitives.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/js_rti.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/mirror_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/native_typed_data.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/annotations.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/collection_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/convert_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/internal_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/io_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_names.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_primitives.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/native_typed_data.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/typed_data_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/file_system_entity_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/filter_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/io_service_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/process_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/socket_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/stdio_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/vmservice_io.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/vmservice_server.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/core_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/function.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/internal_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/mirror_reference.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/schedule_microtask_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/stacktrace.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/symbol_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/timer_impl.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/typed_data_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/uri_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm_shared/lib/collection_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm_shared/lib/null_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/io_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/deferred_load.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/schedule_microtask.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/stream.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/stream_transformers.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/async/zone.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/collections.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/hash_map.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/hash_set.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/linked_hash_map.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/linked_hash_set.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/linked_list.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/list.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/ascii.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/byte_conversion.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/chunked_conversion.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/codec.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/convert.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/converter.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/encoding.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/html_escape.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/json.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/latin1.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/line_splitter.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/string_conversion.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/utf.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/annotations.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/null.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/stacktrace.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/string_sink.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/symbol.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/html/dart2js/html_dart2js.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/internal/bytes_builder.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/internal/list.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/internal/print.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/internal/symbol.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/data_transformer.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/file.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/file_impl.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/file_system_entity.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/io_service.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/io_sink.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/link.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/secure_socket.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/socket.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/stdio.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/string_transformer.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/js/js.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/math/point.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/math/rectangle.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/mirrors/mirrors.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/typed_data/typed_data.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/vmservice/client.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/vmservice/constants.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/vmservice/message.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/vmservice/message_router.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/vmservice/running_isolate.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/vmservice/running_isolates.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/utils/compiler/create_snapshot_entry.dart + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/WATCHLISTS FILE: ../../../third_party/dart/runtime/bin/eventhandler_win.cc FILE: ../../../third_party/dart/runtime/bin/file.cc FILE: ../../../third_party/dart/runtime/bin/file.h @@ -11281,15 +35938,11 @@ FILE: ../../../third_party/dart/runtime/platform/signal_blocker.h FILE: ../../../third_party/dart/runtime/vm/allocation.h FILE: ../../../third_party/dart/runtime/vm/class_finalizer.cc FILE: ../../../third_party/dart/runtime/vm/code_patcher_arm.cc -FILE: ../../../third_party/dart/runtime/vm/code_patcher_arm_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/aot/aot_call_specializer.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm.h -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm64_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_ia32.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_ia32.h -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_x64.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_x64.h FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_arm.cc @@ -11323,13 +35976,11 @@ FILE: ../../../third_party/dart/runtime/vm/deferred_objects.cc FILE: ../../../third_party/dart/runtime/vm/deferred_objects.h FILE: ../../../third_party/dart/runtime/vm/deopt_instructions.cc FILE: ../../../third_party/dart/runtime/vm/deopt_instructions.h -FILE: ../../../third_party/dart/runtime/vm/guard_field_test.cc FILE: ../../../third_party/dart/runtime/vm/heap/weak_table.cc FILE: ../../../third_party/dart/runtime/vm/heap/weak_table.h FILE: ../../../third_party/dart/runtime/vm/instructions.h FILE: ../../../third_party/dart/runtime/vm/instructions_arm.cc FILE: ../../../third_party/dart/runtime/vm/instructions_arm.h -FILE: ../../../third_party/dart/runtime/vm/instructions_arm_test.cc FILE: ../../../third_party/dart/runtime/vm/isolate.cc FILE: ../../../third_party/dart/runtime/vm/isolate.h FILE: ../../../third_party/dart/runtime/vm/json_stream.cc @@ -11342,19 +35993,15 @@ FILE: ../../../third_party/dart/runtime/vm/native_symbol_macos.cc FILE: ../../../third_party/dart/runtime/vm/native_symbol_win.cc FILE: ../../../third_party/dart/runtime/vm/object_id_ring.cc FILE: ../../../third_party/dart/runtime/vm/object_id_ring.h -FILE: ../../../third_party/dart/runtime/vm/object_id_ring_test.cc FILE: ../../../third_party/dart/runtime/vm/object_store.cc -FILE: ../../../third_party/dart/runtime/vm/os_test.cc FILE: ../../../third_party/dart/runtime/vm/profiler.cc FILE: ../../../third_party/dart/runtime/vm/profiler.h -FILE: ../../../third_party/dart/runtime/vm/profiler_test.cc FILE: ../../../third_party/dart/runtime/vm/random.cc FILE: ../../../third_party/dart/runtime/vm/random.h FILE: ../../../third_party/dart/runtime/vm/reusable_handles.h FILE: ../../../third_party/dart/runtime/vm/service.cc FILE: ../../../third_party/dart/runtime/vm/service.h FILE: ../../../third_party/dart/runtime/vm/service_isolate.h -FILE: ../../../third_party/dart/runtime/vm/service_test.cc FILE: ../../../third_party/dart/runtime/vm/signal_handler.h FILE: ../../../third_party/dart/runtime/vm/signal_handler_android.cc FILE: ../../../third_party/dart/runtime/vm/signal_handler_linux.cc @@ -11366,7 +36013,6 @@ FILE: ../../../third_party/dart/runtime/vm/simulator_arm.h FILE: ../../../third_party/dart/runtime/vm/stack_frame_arm.h FILE: ../../../third_party/dart/runtime/vm/stack_frame_ia32.h FILE: ../../../third_party/dart/runtime/vm/stack_frame_x64.h -FILE: ../../../third_party/dart/runtime/vm/stub_code_arm_test.cc FILE: ../../../third_party/dart/runtime/vm/tags.h FILE: ../../../third_party/dart/runtime/vm/thread_interrupter.cc FILE: ../../../third_party/dart/runtime/vm/thread_interrupter.h @@ -11453,6 +36099,8 @@ FILE: ../../../third_party/dart/sdk/lib/core/null.dart FILE: ../../../third_party/dart/sdk/lib/core/stacktrace.dart FILE: ../../../third_party/dart/sdk/lib/core/string_sink.dart FILE: ../../../third_party/dart/sdk/lib/core/symbol.dart +FILE: ../../../third_party/dart/sdk/lib/html/dart2js/html_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart FILE: ../../../third_party/dart/sdk/lib/internal/bytes_builder.dart FILE: ../../../third_party/dart/sdk/lib/internal/list.dart FILE: ../../../third_party/dart/sdk/lib/internal/print.dart @@ -11512,9 +36160,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: angle LIBRARY: khronos ORIGIN: ../../../third_party/angle/src/third_party/khronos/GL/wglext.h +ORIGIN: ../../../third_party/khronos/noninclude/GL/glext.h +ORIGIN: ../../../third_party/khronos/noninclude/GL/wglext.h TYPE: LicenseType.unknown FILE: ../../../third_party/angle/src/third_party/khronos/GL/wglext.h FILE: ../../../third_party/khronos/noninclude/GL/glext.h @@ -11545,6 +36194,7 @@ MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. ==================================================================================================== LIBRARY: khronos ORIGIN: ../../../third_party/khronos/GLES3/gl31.h +ORIGIN: ../../../third_party/khronos/GLES3/gl32.h TYPE: LicenseType.unknown FILE: ../../../third_party/khronos/GLES3/gl31.h FILE: ../../../third_party/khronos/GLES3/gl32.h @@ -11603,6 +36253,10 @@ MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. LIBRARY: angle LIBRARY: khronos ORIGIN: ../../../third_party/angle/include/GLES/gl.h +ORIGIN: ../../../third_party/angle/include/WGL/wgl.h +ORIGIN: ../../../third_party/khronos/GLES2/gl2.h +ORIGIN: ../../../third_party/khronos/GLES2/gl2ext.h +ORIGIN: ../../../third_party/khronos/GLES3/gl3.h TYPE: LicenseType.unknown FILE: ../../../third_party/angle/include/GLES/gl.h FILE: ../../../third_party/angle/include/WGL/wgl.h @@ -11633,147 +36287,122 @@ MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. ==================================================================================================== ==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/DIR_METADATA -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/cast/brkitr.patch -FILE: ../../../third_party/icu/cast/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat.hash -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/flutter/brkitr.patch -FILE: ../../../third_party/icu/flutter/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_appendable_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_to_case_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/ardatepattern.patch -FILE: ../../../third_party/icu/patches/atomic_template_instantiation.patch -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/configure.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fix-bool-mix-use.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/iso2022jp.patch -FILE: ../../../third_party/icu/patches/isvalidenum.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/restrace.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/uemoji.icu -FILE: ../../../third_party/icu/source/data/in/ulayout.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/tzres/metaZones.res -FILE: ../../../third_party/icu/tzres/timezoneTypes.res -FILE: ../../../third_party/icu/tzres/zoneinfo64.res +LIBRARY: include +ORIGIN: ../../../third_party/inja/third_party/include/nlohmann/json.hpp +TYPE: LicenseType.mit +FILE: ../../../third_party/inja/third_party/include/nlohmann/json.hpp ---------------------------------------------------------------------------------------------------- -Copyright (c) 2014 International Business Machines Corporation -and others. All Rights Reserved. +Copyright (c) 2013-2019 Niels Lohmann . -This list is part of a project hosted at: - github.com/kanyawtech/myanmar-karen-word-lists +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -Copyright (c) 2013, LeRoy Benjamin Sharon -All rights reserved. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: Redistributions of source code must retain the above -copyright notice, this list of conditions and the following -disclaimer. Redistributions in binary form must reproduce the -above copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided -with the distribution. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +==================================================================================================== - Neither the name Myanmar Karen Word Lists, nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +==================================================================================================== +LIBRARY: json +ORIGIN: ../../../third_party/json/LICENSE.MIT +TYPE: LicenseType.mit +FILE: ../../../third_party/json/include/nlohmann/adl_serializer.hpp +FILE: ../../../third_party/json/include/nlohmann/byte_container_with_subtype.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/abi_macros.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/conversions/from_json.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/conversions/to_chars.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/conversions/to_json.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/exceptions.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/hash.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/input/binary_reader.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/input/input_adapters.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/input/json_sax.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/input/lexer.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/input/parser.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/input/position_t.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/iterators/internal_iterator.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/iterators/iter_impl.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/iterators/iteration_proxy.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/iterators/iterator_traits.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/iterators/json_reverse_iterator.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/iterators/primitive_iterator.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/json_custom_base_class.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/json_pointer.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/json_ref.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/macro_scope.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/macro_unscope.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/meta/call_std/begin.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/meta/call_std/end.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/meta/cpp_future.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/meta/detected.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/meta/identity_tag.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/meta/is_sax.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/meta/std_fs.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/meta/type_traits.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/meta/void_t.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/output/binary_writer.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/output/output_adapters.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/output/serializer.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/string_concat.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/string_escape.hpp +FILE: ../../../third_party/json/include/nlohmann/detail/value_t.hpp +FILE: ../../../third_party/json/include/nlohmann/json.hpp +FILE: ../../../third_party/json/include/nlohmann/json_fwd.hpp +FILE: ../../../third_party/json/include/nlohmann/ordered_map.hpp +FILE: ../../../third_party/json/include/nlohmann/thirdparty/hedley/hedley.hpp +FILE: ../../../third_party/json/include/nlohmann/thirdparty/hedley/hedley_undef.hpp +FILE: ../../../third_party/json/nlohmann_json.natvis +FILE: ../../../third_party/json/single_include/nlohmann/json.hpp +FILE: ../../../third_party/json/single_include/nlohmann/json_fwd.hpp +FILE: ../../../third_party/json/tools/amalgamate/config_json.json +FILE: ../../../third_party/json/tools/amalgamate/config_json_fwd.json +FILE: ../../../third_party/json/tools/generate_natvis/nlohmann_json.natvis.j2 +FILE: ../../../third_party/json/tools/macro_builder/main.cpp +FILE: ../../../third_party/json/tools/serve_header/demo.png +FILE: ../../../third_party/json/tools/serve_header/serve_header.yml.example +FILE: ../../../third_party/json/wsjcpp.yml +---------------------------------------------------------------------------------------------------- +Copyright (c) 2013-2022 Niels Lohmann -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR -TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF -THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ==================================================================================================== ==================================================================================================== LIBRARY: glfw ORIGIN: ../../../third_party/glfw/src/linux_joystick.h -TYPE: LicenseType.zlib +ORIGIN: ../../../third_party/glfw/src/wl_init.c +ORIGIN: ../../../third_party/glfw/src/wl_monitor.c +ORIGIN: ../../../third_party/glfw/src/wl_platform.h +ORIGIN: ../../../third_party/glfw/src/wl_window.c +ORIGIN: ../../../third_party/glfw/src/xkb_unicode.h +TYPE: LicenseType.unknown FILE: ../../../third_party/glfw/src/linux_joystick.h FILE: ../../../third_party/glfw/src/wl_init.c FILE: ../../../third_party/glfw/src/wl_monitor.c @@ -11803,58 +36432,15 @@ freely, subject to the following restrictions: distribution. ==================================================================================================== -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/constant_time_test.cc -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/constant_time_test.cc ----------------------------------------------------------------------------------------------------- -Copyright (c) 2014 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - "This product includes cryptographic software written by - Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from - the apps directory (application code) you must include an acknowledgement: - "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -The licence and distribution terms for any publically available version or -derivative of this code cannot be changed. i.e. this code cannot simply be -copied and put under another distribution licence -[including the GNU Public Licence.] -==================================================================================================== - ==================================================================================================== LIBRARY: dart -ORIGIN: ../../../third_party/dart/runtime/observatory/web/third_party/webcomponents.min.js +ORIGIN: ../../../third_party/dart/runtime/observatory/web/third_party/webcomponents.min.js + http://polymer.github.io/LICENSE.txt referenced by ../../../third_party/dart/runtime/observatory/web/third_party/webcomponents.min.js +ORIGIN: ../../../third_party/dart/runtime/observatory_2/web/third_party/webcomponents.min.js + http://polymer.github.io/LICENSE.txt referenced by ../../../third_party/dart/runtime/observatory_2/web/third_party/webcomponents.min.js TYPE: LicenseType.bsd FILE: ../../../third_party/dart/runtime/observatory/web/third_party/webcomponents.min.js FILE: ../../../third_party/dart/runtime/observatory_2/web/third_party/webcomponents.min.js ---------------------------------------------------------------------------------------------------- -Copyright (c) 2014 The Polymer Authors. All rights reserved. +Copyright (c) 2014 The Polymer Project Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -11885,36 +36471,69 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/base64/base64_test.cc +ORIGIN: ../../../third_party/boringssl/src/crypto/bio/socket_helper.c +ORIGIN: ../../../third_party/boringssl/src/crypto/bytestring/ber.c +ORIGIN: ../../../third_party/boringssl/src/crypto/bytestring/cbb.c +ORIGIN: ../../../third_party/boringssl/src/crypto/bytestring/cbs.c +ORIGIN: ../../../third_party/boringssl/src/crypto/bytestring/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/chacha/chacha.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/e_chacha20poly1305.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/e_tls.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cpu-arm.c +ORIGIN: ../../../third_party/boringssl/src/crypto/crypto.c +ORIGIN: ../../../third_party/boringssl/src/crypto/engine/engine.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/aead.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/rand.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/urandom.c +ORIGIN: ../../../third_party/boringssl/src/crypto/hkdf/hkdf.c +ORIGIN: ../../../third_party/boringssl/src/crypto/pkcs7/pkcs7.c +ORIGIN: ../../../third_party/boringssl/src/crypto/poly1305/poly1305.c +ORIGIN: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_arm.c +ORIGIN: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_vec.c +ORIGIN: ../../../third_party/boringssl/src/crypto/rand_extra/windows.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/aead.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/bytestring.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/chacha.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/crypto.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/engine.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/hkdf.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/objects.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/opensslconf.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/opensslv.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ossl_typ.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/pkcs12.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/pkcs7.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/poly1305.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/rand.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/safestack.h +ORIGIN: ../../../third_party/boringssl/src/tool/args.cc +ORIGIN: ../../../third_party/boringssl/src/tool/client.cc +ORIGIN: ../../../third_party/boringssl/src/tool/const.cc +ORIGIN: ../../../third_party/boringssl/src/tool/digest.cc +ORIGIN: ../../../third_party/boringssl/src/tool/internal.h +ORIGIN: ../../../third_party/boringssl/src/tool/pkcs12.cc +ORIGIN: ../../../third_party/boringssl/src/tool/server.cc +ORIGIN: ../../../third_party/boringssl/src/tool/speed.cc +ORIGIN: ../../../third_party/boringssl/src/tool/tool.cc +ORIGIN: ../../../third_party/boringssl/src/tool/transport_common.cc +ORIGIN: ../../../third_party/boringssl/src/tool/transport_common.h TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/src/crypto/base64/base64_test.cc -FILE: ../../../third_party/boringssl/src/crypto/bio/bio_test.cc FILE: ../../../third_party/boringssl/src/crypto/bio/socket_helper.c FILE: ../../../third_party/boringssl/src/crypto/bytestring/ber.c -FILE: ../../../third_party/boringssl/src/crypto/bytestring/bytestring_test.cc FILE: ../../../third_party/boringssl/src/crypto/bytestring/cbb.c FILE: ../../../third_party/boringssl/src/crypto/bytestring/cbs.c FILE: ../../../third_party/boringssl/src/crypto/bytestring/internal.h FILE: ../../../third_party/boringssl/src/crypto/chacha/chacha.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/aead_test.cc FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_chacha20poly1305.c FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_tls.c FILE: ../../../third_party/boringssl/src/crypto/cpu-arm.c FILE: ../../../third_party/boringssl/src/crypto/crypto.c -FILE: ../../../third_party/boringssl/src/crypto/digest_extra/digest_test.cc FILE: ../../../third_party/boringssl/src/crypto/engine/engine.c -FILE: ../../../third_party/boringssl/src/crypto/err/err_test.cc -FILE: ../../../third_party/boringssl/src/crypto/evp/evp_extra_test.cc FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/aead.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_test.cc FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/rand.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/urandom.c FILE: ../../../third_party/boringssl/src/crypto/hkdf/hkdf.c -FILE: ../../../third_party/boringssl/src/crypto/hkdf/hkdf_test.cc -FILE: ../../../third_party/boringssl/src/crypto/lhash/lhash_test.cc FILE: ../../../third_party/boringssl/src/crypto/pkcs7/pkcs7.c -FILE: ../../../third_party/boringssl/src/crypto/pkcs7/pkcs7_test.cc -FILE: ../../../third_party/boringssl/src/crypto/pkcs8/pkcs12_test.cc FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305.c FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_arm.c FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_vec.c @@ -11934,7 +36553,6 @@ FILE: ../../../third_party/boringssl/src/include/openssl/pkcs7.h FILE: ../../../third_party/boringssl/src/include/openssl/poly1305.h FILE: ../../../third_party/boringssl/src/include/openssl/rand.h FILE: ../../../third_party/boringssl/src/include/openssl/safestack.h -FILE: ../../../third_party/boringssl/src/ssl/ssl_test.cc FILE: ../../../third_party/boringssl/src/tool/args.cc FILE: ../../../third_party/boringssl/src/tool/client.cc FILE: ../../../third_party/boringssl/src/tool/const.cc @@ -11946,7 +36564,6 @@ FILE: ../../../third_party/boringssl/src/tool/speed.cc FILE: ../../../third_party/boringssl/src/tool/tool.cc FILE: ../../../third_party/boringssl/src/tool/transport_common.cc FILE: ../../../third_party/boringssl/src/tool/transport_common.h -FILE: ../../../third_party/boringssl/src/util/make_errors.go ---------------------------------------------------------------------------------------------------- Copyright (c) 2014, Google Inc. @@ -11963,9 +36580,158 @@ OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ==================================================================================================== +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/scientificnumberformatter.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/scientificnumberformatter.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + ==================================================================================================== LIBRARY: dart ORIGIN: ../../../third_party/dart/runtime/lib/profiler.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/bin/shell.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/app.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/object_graph.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/service.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/service_common.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/service_html.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/service_io.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/app/page.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/app/settings.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/app/view_model.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_tree.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/debugger.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/heap_map.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate_reconnect.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/metrics.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/vm_connect.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/service/object.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/utils.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/web/main.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/bin/shell.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/app.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/object_graph.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/service.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/service_common.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/service_html.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/service_io.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/app/page.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/app/settings.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/app/view_model.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/class_tree.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/debugger.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/heap_map.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/isolate_reconnect.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/metrics.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/vm_connect.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/service/object.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/utils.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/web/main.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/address_sanitizer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/memory_sanitizer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/safe_stack.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/verbose_gc_to_bmu.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_patcher_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm64.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/il_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/range_analysis.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/range_analysis.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/method_recognizer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/method_recognizer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/constants_arm64.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpu_arm.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpu_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpu_arm64.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpu_ia32.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpu_x64.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpuid.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpuid.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpuinfo.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpuinfo_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpuinfo_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/debugger_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/hash_table.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/spaces.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/weak_code.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/weak_code.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/instructions_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/instructions_arm64.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/metrics.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/metrics.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/object_graph.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/object_graph.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_assembler.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_assembler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_assembler_ir.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_assembler_ir.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_ast.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_ast.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_parser.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_parser.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/report.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/report.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/ring_buffer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/runtime_entry_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/simulator_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/simulator_arm64.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/stack_frame_arm64.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/tags.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/unibrow-inl.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/unibrow.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/unibrow.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/preambles/d8.js + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/preambles/jsshell.js + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/linked_hash_map.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/synced/embedded_names.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/lib_prefix.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/profiler.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm_shared/lib/convert_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/collection/set.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/sink.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/developer/profiler.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/process.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/service_object.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/isolate/capability.dart + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/dart/runtime/lib/profiler.cc FILE: ../../../third_party/dart/runtime/observatory/bin/shell.dart @@ -12012,9 +36778,7 @@ FILE: ../../../third_party/dart/runtime/platform/address_sanitizer.h FILE: ../../../third_party/dart/runtime/platform/memory_sanitizer.h FILE: ../../../third_party/dart/runtime/platform/safe_stack.h FILE: ../../../third_party/dart/runtime/tools/verbose_gc_to_bmu.dart -FILE: ../../../third_party/dart/runtime/vm/bit_set_test.cc FILE: ../../../third_party/dart/runtime/vm/code_patcher_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/code_patcher_arm64_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm64.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm64.h FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_arm64.cc @@ -12022,7 +36786,6 @@ FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_ FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_arm64.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/range_analysis.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/range_analysis.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/range_analysis_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/method_recognizer.cc FILE: ../../../third_party/dart/runtime/vm/compiler/method_recognizer.h FILE: ../../../third_party/dart/runtime/vm/constants_arm64.h @@ -12035,25 +36798,18 @@ FILE: ../../../third_party/dart/runtime/vm/cpuid.cc FILE: ../../../third_party/dart/runtime/vm/cpuid.h FILE: ../../../third_party/dart/runtime/vm/cpuinfo.h FILE: ../../../third_party/dart/runtime/vm/cpuinfo_android.cc -FILE: ../../../third_party/dart/runtime/vm/cpuinfo_test.cc FILE: ../../../third_party/dart/runtime/vm/cpuinfo_win.cc FILE: ../../../third_party/dart/runtime/vm/debugger_arm64.cc FILE: ../../../third_party/dart/runtime/vm/hash_table.h -FILE: ../../../third_party/dart/runtime/vm/hash_table_test.cc -FILE: ../../../third_party/dart/runtime/vm/heap/scavenger_test.cc FILE: ../../../third_party/dart/runtime/vm/heap/spaces.h FILE: ../../../third_party/dart/runtime/vm/heap/weak_code.cc FILE: ../../../third_party/dart/runtime/vm/heap/weak_code.h FILE: ../../../third_party/dart/runtime/vm/instructions_arm64.cc FILE: ../../../third_party/dart/runtime/vm/instructions_arm64.h -FILE: ../../../third_party/dart/runtime/vm/instructions_arm64_test.cc FILE: ../../../third_party/dart/runtime/vm/metrics.cc FILE: ../../../third_party/dart/runtime/vm/metrics.h -FILE: ../../../third_party/dart/runtime/vm/metrics_test.cc -FILE: ../../../third_party/dart/runtime/vm/object_arm64_test.cc FILE: ../../../third_party/dart/runtime/vm/object_graph.cc FILE: ../../../third_party/dart/runtime/vm/object_graph.h -FILE: ../../../third_party/dart/runtime/vm/object_graph_test.cc FILE: ../../../third_party/dart/runtime/vm/regexp.cc FILE: ../../../third_party/dart/runtime/vm/regexp.h FILE: ../../../third_party/dart/runtime/vm/regexp_assembler.cc @@ -12064,16 +36820,13 @@ FILE: ../../../third_party/dart/runtime/vm/regexp_ast.cc FILE: ../../../third_party/dart/runtime/vm/regexp_ast.h FILE: ../../../third_party/dart/runtime/vm/regexp_parser.cc FILE: ../../../third_party/dart/runtime/vm/regexp_parser.h -FILE: ../../../third_party/dart/runtime/vm/regexp_test.cc FILE: ../../../third_party/dart/runtime/vm/report.cc FILE: ../../../third_party/dart/runtime/vm/report.h FILE: ../../../third_party/dart/runtime/vm/ring_buffer.h -FILE: ../../../third_party/dart/runtime/vm/ring_buffer_test.cc FILE: ../../../third_party/dart/runtime/vm/runtime_entry_arm64.cc FILE: ../../../third_party/dart/runtime/vm/simulator_arm64.cc FILE: ../../../third_party/dart/runtime/vm/simulator_arm64.h FILE: ../../../third_party/dart/runtime/vm/stack_frame_arm64.h -FILE: ../../../third_party/dart/runtime/vm/stub_code_arm64_test.cc FILE: ../../../third_party/dart/runtime/vm/tags.cc FILE: ../../../third_party/dart/runtime/vm/unibrow-inl.h FILE: ../../../third_party/dart/runtime/vm/unibrow.cc @@ -12122,84 +36875,216 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/cipher_test.cc +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GLSL.ext.AMD.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GLSL.ext.EXT.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GLSL.std.450.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GLSL.ext.AMD.h +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GLSL.ext.EXT.h +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GLSL.std.450.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2014-2016 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/unicode/scientificnumberformatter.h + ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/cipher_test.cc -FILE: ../../../third_party/boringssl/src/crypto/evp/evp_test.cc +FILE: ../../../third_party/icu/source/i18n/unicode/scientificnumberformatter.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2015 The OpenSSL Project. All rights reserved. +Copyright (c) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GLSL.ext.NV.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GLSL.ext.NV.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2014-2017 The Khronos Group Inc. -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +LIBRARY: spirv-cross +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/spirv.hpp +ORIGIN: ../../../third_party/vulkan-deps/spirv-cross/src/spirv.h +ORIGIN: ../../../third_party/vulkan-deps/spirv-cross/src/spirv.hpp +TYPE: LicenseType.unknown +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/spirv.hpp +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv.h +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/spirv.hpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2014-2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +==================================================================================================== + +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GLSL.ext.KHR.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/GLSL.ext.KHR.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2014-2020 The Khronos Group Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. ==================================================================================================== ==================================================================================================== LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/err_data.c ORIGIN: ../../../third_party/boringssl/src/crypto/bn_extra/bn_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/conf/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/curve25519/asm/x25519-asm-arm.S +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p224-64.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/util.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/refcount_c11.c +ORIGIN: ../../../third_party/boringssl/src/crypto/refcount_lock.c +ORIGIN: ../../../third_party/boringssl/src/crypto/thread_none.c +ORIGIN: ../../../third_party/boringssl/src/crypto/thread_pthread.c +ORIGIN: ../../../third_party/boringssl/src/crypto/thread_win.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/buffer.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/cmac.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/curve25519.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/dtls1.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/srtp.h +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_aead_ctx.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_buffer.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_key_share.cc +ORIGIN: ../../../third_party/boringssl/src/tool/ciphers.cc +ORIGIN: ../../../third_party/boringssl/src/tool/generate_ed25519.cc +ORIGIN: ../../../third_party/boringssl/src/tool/genrsa.cc +ORIGIN: ../../../third_party/boringssl/src/tool/rand.cc TYPE: LicenseType.unknown FILE: ../../../third_party/boringssl/err_data.c FILE: ../../../third_party/boringssl/src/crypto/bn_extra/bn_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/cmac/cmac_test.cc FILE: ../../../third_party/boringssl/src/crypto/conf/internal.h FILE: ../../../third_party/boringssl/src/crypto/curve25519/asm/x25519-asm-arm.S -FILE: ../../../third_party/boringssl/src/crypto/curve25519/ed25519_test.cc -FILE: ../../../third_party/boringssl/src/crypto/curve25519/x25519_test.cc -FILE: ../../../third_party/boringssl/src/crypto/err/err_data_generate.go -FILE: ../../../third_party/boringssl/src/crypto/evp/pbkdf_test.cc -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/aes_test.cc FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p224-64.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/util.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/internal.h -FILE: ../../../third_party/boringssl/src/crypto/pkcs8/pkcs8_test.cc -FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_test.cc FILE: ../../../third_party/boringssl/src/crypto/refcount_c11.c FILE: ../../../third_party/boringssl/src/crypto/refcount_lock.c -FILE: ../../../third_party/boringssl/src/crypto/refcount_test.cc FILE: ../../../third_party/boringssl/src/crypto/thread_none.c FILE: ../../../third_party/boringssl/src/crypto/thread_pthread.c -FILE: ../../../third_party/boringssl/src/crypto/thread_test.cc FILE: ../../../third_party/boringssl/src/crypto/thread_win.c FILE: ../../../third_party/boringssl/src/include/openssl/buffer.h FILE: ../../../third_party/boringssl/src/include/openssl/cmac.h @@ -12213,8 +37098,6 @@ FILE: ../../../third_party/boringssl/src/tool/ciphers.cc FILE: ../../../third_party/boringssl/src/tool/generate_ed25519.cc FILE: ../../../third_party/boringssl/src/tool/genrsa.cc FILE: ../../../third_party/boringssl/src/tool/rand.cc -FILE: ../../../third_party/boringssl/src/util/all_tests.go -FILE: ../../../third_party/boringssl/src/util/bot/DEPS ---------------------------------------------------------------------------------------------------- Copyright (c) 2015, Google Inc. @@ -12231,9 +37114,144 @@ OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ==================================================================================================== +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/sprep/rfc3920node.txt + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/data/sprep/rfc3920node.txt +---------------------------------------------------------------------------------------------------- +Copyright (c) 2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + ==================================================================================================== LIBRARY: dart ORIGIN: ../../../third_party/dart/runtime/bin/address_sanitizer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/dart_io_api_impl.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/observatory_assets_empty.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/include/bin/dart_io_api.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/developer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/timeline.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/vmservice.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/cli.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/debugger.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/sample_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/allocation_profile/allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/cli/command.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/debugger/debugger.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/debugger/debugger_location.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/heap_snapshot.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/logging.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/logging_list.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/megamorphiccache_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/objectpool_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/persistent_handles.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/ports.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/timeline_page.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/sample_profile/sample_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/web/timeline.js + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/cli.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/debugger.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/sample_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/allocation_profile/allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/cli/command.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/debugger/debugger.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/debugger/debugger_location.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/heap_snapshot.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/logging.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/logging_list.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/megamorphiccache_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/objectpool_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/persistent_handles.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/ports.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/timeline_page.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/sample_profile/sample_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/web/timeline.js + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/aot/precompiler.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/aot/precompiler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/log.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/log.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/profiler_service.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/profiler_service.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/program_visitor.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/program_visitor.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_assembler_bytecode.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_assembler_bytecode.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_assembler_bytecode_inl.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_bytecodes.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_interpreter.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/regexp_interpreter.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/scope_timer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/service_event.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/service_event.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/service_isolate.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/source_report.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/source_report.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_barrier.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_registry.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_registry.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/timeline.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/timeline.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/developer_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/ddc_runtime/classes.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/ddc_runtime/errors.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/ddc_runtime/operations.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/ddc_runtime/rtti.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/ddc_runtime/runtime.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/ddc_runtime/types.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/ddc_runtime/utils.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/debugger.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/developer_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/preambles/d8.js + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/preambles/jsshell.js + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/synced/async_await_error_codes.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/async_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/developer.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/timeline.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm_shared/lib/compact_hash.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/convert/base64.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/developer/developer.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/developer/extension.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/developer/timeline.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/io_resource_info.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/security_context.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/js/_js_annotations.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/vmservice/asset.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/vmservice/vmservice.dart + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/dart/runtime/bin/address_sanitizer.cc FILE: ../../../third_party/dart/runtime/bin/dart_io_api_impl.cc @@ -12278,12 +37296,10 @@ FILE: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/ports.dar FILE: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/timeline_page.dart FILE: ../../../third_party/dart/runtime/observatory_2/lib/src/sample_profile/sample_profile.dart FILE: ../../../third_party/dart/runtime/observatory_2/web/timeline.js -FILE: ../../../third_party/dart/runtime/vm/atomic_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/aot/precompiler.cc FILE: ../../../third_party/dart/runtime/vm/compiler/aot/precompiler.h FILE: ../../../third_party/dart/runtime/vm/log.cc FILE: ../../../third_party/dart/runtime/vm/log.h -FILE: ../../../third_party/dart/runtime/vm/log_test.cc FILE: ../../../third_party/dart/runtime/vm/os_thread.cc FILE: ../../../third_party/dart/runtime/vm/profiler_service.cc FILE: ../../../third_party/dart/runtime/vm/profiler_service.h @@ -12301,16 +37317,13 @@ FILE: ../../../third_party/dart/runtime/vm/service_event.h FILE: ../../../third_party/dart/runtime/vm/service_isolate.cc FILE: ../../../third_party/dart/runtime/vm/source_report.cc FILE: ../../../third_party/dart/runtime/vm/source_report.h -FILE: ../../../third_party/dart/runtime/vm/source_report_test.cc FILE: ../../../third_party/dart/runtime/vm/thread.cc FILE: ../../../third_party/dart/runtime/vm/thread.h FILE: ../../../third_party/dart/runtime/vm/thread_barrier.h -FILE: ../../../third_party/dart/runtime/vm/thread_barrier_test.cc FILE: ../../../third_party/dart/runtime/vm/thread_registry.cc FILE: ../../../third_party/dart/runtime/vm/thread_registry.h FILE: ../../../third_party/dart/runtime/vm/timeline.cc FILE: ../../../third_party/dart/runtime/vm/timeline.h -FILE: ../../../third_party/dart/runtime/vm/timeline_test.cc FILE: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/developer_patch.dart FILE: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/ddc_runtime/classes.dart FILE: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/ddc_runtime/errors.dart @@ -12367,10 +37380,44 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: fiat +ORIGIN: ../../../third_party/boringssl/src/third_party/fiat/LICENSE +TYPE: LicenseType.mit +FILE: ../../../third_party/boringssl/src/third_party/fiat/curve25519_32.h +FILE: ../../../third_party/boringssl/src/third_party/fiat/curve25519_64.h +FILE: ../../../third_party/boringssl/src/third_party/fiat/p256_32.h +FILE: ../../../third_party/boringssl/src/third_party/fiat/p256_64.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2015-2016 the fiat-crypto authors (see + +https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +==================================================================================================== + ==================================================================================================== LIBRARY: glfw ORIGIN: ../../../third_party/glfw/src/null_init.c -TYPE: LicenseType.zlib +ORIGIN: ../../../third_party/glfw/src/null_platform.h +ORIGIN: ../../../third_party/glfw/src/osmesa_context.c +TYPE: LicenseType.unknown FILE: ../../../third_party/glfw/src/null_init.c FILE: ../../../third_party/glfw/src/null_platform.h FILE: ../../../third_party/glfw/src/osmesa_context.c @@ -12401,7 +37448,8 @@ freely, subject to the following restrictions: ==================================================================================================== LIBRARY: glfw ORIGIN: ../../../third_party/glfw/src/null_monitor.c -TYPE: LicenseType.zlib +ORIGIN: ../../../third_party/glfw/src/null_window.c +TYPE: LicenseType.unknown FILE: ../../../third_party/glfw/src/null_monitor.c FILE: ../../../third_party/glfw/src/null_window.c ---------------------------------------------------------------------------------------------------- @@ -12430,32 +37478,43 @@ freely, subject to the following restrictions: ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/asn1_test.cc +ORIGIN: ../../../third_party/boringssl/src/crypto/bytestring/asn1_compat.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cpu-aarch64-linux.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cpu-arm-linux.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cpu-ppc64le.c +ORIGIN: ../../../third_party/boringssl/src/crypto/curve25519/spake25519.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/polyval.c +ORIGIN: ../../../third_party/boringssl/src/crypto/obj/objects.go +ORIGIN: ../../../third_party/boringssl/src/crypto/poly1305/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/pool/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/pool/pool.c +ORIGIN: ../../../third_party/boringssl/src/crypto/rand_extra/deterministic.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/evp/dss1.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/evp/evp_do_all.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/obj/obj_decrepit.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/x509/x509_decrepit.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/asn1_mac.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/obj_mac.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/pool.h +ORIGIN: ../../../third_party/boringssl/src/ssl/tls13_both.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/tls13_client.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/tls13_enc.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/tls13_server.cc TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/src/crypto/asn1/asn1_test.cc FILE: ../../../third_party/boringssl/src/crypto/bytestring/asn1_compat.c -FILE: ../../../third_party/boringssl/src/crypto/chacha/chacha_test.cc FILE: ../../../third_party/boringssl/src/crypto/cpu-aarch64-linux.c FILE: ../../../third_party/boringssl/src/crypto/cpu-arm-linux.c FILE: ../../../third_party/boringssl/src/crypto/cpu-ppc64le.c FILE: ../../../third_party/boringssl/src/crypto/curve25519/spake25519.c -FILE: ../../../third_party/boringssl/src/crypto/curve25519/spake25519_test.cc -FILE: ../../../third_party/boringssl/src/crypto/ecdh_extra/ecdh_test.cc -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/check_bn_tests.go -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64_test.cc FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/polyval.c -FILE: ../../../third_party/boringssl/src/crypto/obj/obj_test.cc FILE: ../../../third_party/boringssl/src/crypto/obj/objects.go FILE: ../../../third_party/boringssl/src/crypto/poly1305/internal.h FILE: ../../../third_party/boringssl/src/crypto/pool/internal.h FILE: ../../../third_party/boringssl/src/crypto/pool/pool.c -FILE: ../../../third_party/boringssl/src/crypto/pool/pool_test.cc FILE: ../../../third_party/boringssl/src/crypto/rand_extra/deterministic.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_test.cc FILE: ../../../third_party/boringssl/src/decrepit/evp/dss1.c FILE: ../../../third_party/boringssl/src/decrepit/evp/evp_do_all.c FILE: ../../../third_party/boringssl/src/decrepit/obj/obj_decrepit.c -FILE: ../../../third_party/boringssl/src/decrepit/ripemd/ripemd_test.cc FILE: ../../../third_party/boringssl/src/decrepit/x509/x509_decrepit.c FILE: ../../../third_party/boringssl/src/include/openssl/asn1_mac.h FILE: ../../../third_party/boringssl/src/include/openssl/obj_mac.h @@ -12464,9 +37523,6 @@ FILE: ../../../third_party/boringssl/src/ssl/tls13_both.cc FILE: ../../../third_party/boringssl/src/ssl/tls13_client.cc FILE: ../../../third_party/boringssl/src/ssl/tls13_enc.cc FILE: ../../../third_party/boringssl/src/ssl/tls13_server.cc -FILE: ../../../third_party/boringssl/src/util/BUILD.toplevel -FILE: ../../../third_party/boringssl/src/util/diff_asm.go -FILE: ../../../third_party/boringssl/src/util/run_android_tests.go ---------------------------------------------------------------------------------------------------- Copyright (c) 2016, Google Inc. @@ -12486,11 +37542,363 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ==================================================================================================== LIBRARY: dart ORIGIN: ../../../third_party/dart/runtime/bin/crypto_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/directory_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/eventhandler_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/eventhandler_fuchsia.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_support.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_system_watcher_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/loader.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/loader.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/platform_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/process_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/reference_counting.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/root_certificates_unsupported.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_base_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_base_fuchsia.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/stdio_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/thread_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/thread_fuchsia.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/utils_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/stacktrace.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/event.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/models.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/repositories.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/app/notification.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/containers/virtual_collection.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/containers/virtual_tree.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/error_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/general_error.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/custom_element.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/nav_bar.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/nav_menu.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/rendering_queue.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/rendering_scheduler.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/uris.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/inbound_references.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/counter_chart.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/location.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/run_state.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/shared_summary.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/summary.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/metric/details.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/metric/graph.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/class_menu.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/isolate_menu.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/library_menu.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/menu_item.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/notify.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/notify_event.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/notify_exception.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/refresh.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/top_menu.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/vm_menu.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/retaining_path.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/source_link.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/strongly_reachable_instances.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/vm_connect_target.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/exceptions.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/breakpoint.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/class.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/code.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/context.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/error.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/event.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/extension_data.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/field.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/flag.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/frame.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/function.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/guarded.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/heap_space.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/icdata.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/inbound_references.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/instance.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/isolate.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/library.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/local_var_descriptors.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/map_association.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/megamorphiccache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/metric.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/notification.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/object.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/objectpool.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/objectstore.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/pc_descriptors.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/persistent_handles.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/ports.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/retaining_path.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/sample_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/script.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/sentinel.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/source_location.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/target.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/timeline_event.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/type_arguments.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/unknown.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/vm.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/breakpoint.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/class.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/context.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/editor.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/eval.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/event.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/field.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/flag.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/function.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/heap_snapshot.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/icdata.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/inbound_references.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/instance.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/isolate.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/library.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/megamorphiccache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/metric.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/notification.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/object.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/objectpool.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/objectstore.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/persistent_handles.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/ports.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/reachable_size.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/retained_size.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/retaining_path.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/sample_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/script.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/strongly_reachable_instances.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/target.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/type_arguments.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/breakpoint.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/class.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/context.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/editor.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/eval.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/event.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/field.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/flag.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/function.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/heap_snapshot.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/icdata.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/inbound_references.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/instance.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/isolate.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/library.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/megamorphiccache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/metric.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/notification.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/object.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/objectpool.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/objectstore.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/persistent_handles.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/ports.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/reachable_size.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/retained_size.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/retaining_path.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/sample_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/script.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/settings.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/strongly_reachable_instances.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/target.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/type_arguments.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/web/timeline_message_handler.js + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/event.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/models.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/repositories.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/app/notification.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/class_allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/containers/virtual_collection.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/containers/virtual_tree.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/error_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/general_error.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/helpers/custom_element.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/helpers/nav_bar.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/helpers/nav_menu.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/helpers/rendering_queue.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/helpers/rendering_scheduler.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/helpers/tag.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/helpers/uris.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/inbound_references.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/isolate/counter_chart.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/isolate/location.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/isolate/run_state.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/isolate/shared_summary.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/isolate/summary.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/metric/details.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/metric/graph.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/nav/class_menu.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/nav/isolate_menu.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/nav/library_menu.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/nav/menu_item.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/nav/notify.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/nav/notify_event.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/nav/notify_exception.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/nav/refresh.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/nav/top_menu.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/nav/vm_menu.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/retaining_path.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/source_link.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/strongly_reachable_instances.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/vm_connect_target.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/exceptions.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/breakpoint.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/class.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/code.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/context.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/error.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/event.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/extension_data.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/field.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/flag.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/frame.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/function.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/guarded.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/heap_space.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/icdata.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/inbound_references.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/instance.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/isolate.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/library.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/local_var_descriptors.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/map_association.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/megamorphiccache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/metric.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/notification.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/object.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/objectpool.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/objectstore.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/pc_descriptors.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/persistent_handles.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/ports.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/retaining_path.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/sample_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/script.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/sentinel.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/source_location.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/target.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/timeline_event.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/type_arguments.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/unknown.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/vm.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/breakpoint.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/class.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/context.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/editor.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/eval.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/event.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/field.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/flag.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/function.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/heap_snapshot.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/icdata.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/inbound_references.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/instance.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/isolate.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/library.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/megamorphiccache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/metric.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/notification.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/object.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/objectpool.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/objectstore.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/persistent_handles.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/ports.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/reachable_size.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/retained_size.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/retaining_path.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/sample_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/script.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/strongly_reachable_instances.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/target.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/type_arguments.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/allocation_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/breakpoint.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/class.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/context.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/editor.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/eval.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/event.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/field.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/flag.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/function.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/heap_snapshot.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/icdata.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/inbound_references.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/instance.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/isolate.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/library.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/megamorphiccache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/metric.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/notification.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/object.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/objectpool.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/objectstore.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/persistent_handles.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/ports.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/reachable_size.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/retained_size.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/retaining_path.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/sample_profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/script.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/settings.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/strongly_reachable_instances.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/target.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/type_arguments.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/web/timeline_message_handler.js + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/syslog_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/utils_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/utils_fuchsia.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/app_snapshot.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/app_snapshot.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/canonical_tables.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/branch_optimizer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/branch_optimizer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/redundancy_elimination.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/redundancy_elimination.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_binary_flowgraph.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_to_il.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_to_il.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpuinfo_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/dart_api_state.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/become.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/become.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/safepoint.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/safepoint.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/isolate_reload.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/isolate_reload.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/kernel.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/kernel.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/kernel_binary.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/kernel_isolate.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/kernel_isolate.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/kernel_loader.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/kernel_loader.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/lockers.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/native_symbol_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/object_reload.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/object_service.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread_fuchsia.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/signal_handler_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_interrupter_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/token_position.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/token_position.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/uri.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/uri.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/virtual_memory_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/developer/service.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/js_util/js_util.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/vmservice/devfs.dart + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/dart/runtime/bin/crypto_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/crypto_test.cc FILE: ../../../third_party/dart/runtime/bin/directory_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/directory_test.cc FILE: ../../../third_party/dart/runtime/bin/eventhandler_fuchsia.cc FILE: ../../../third_party/dart/runtime/bin/eventhandler_fuchsia.h FILE: ../../../third_party/dart/runtime/bin/file_fuchsia.cc @@ -12820,7 +38228,6 @@ FILE: ../../../third_party/dart/runtime/vm/heap/safepoint.cc FILE: ../../../third_party/dart/runtime/vm/heap/safepoint.h FILE: ../../../third_party/dart/runtime/vm/isolate_reload.cc FILE: ../../../third_party/dart/runtime/vm/isolate_reload.h -FILE: ../../../third_party/dart/runtime/vm/isolate_reload_test.cc FILE: ../../../third_party/dart/runtime/vm/kernel.cc FILE: ../../../third_party/dart/runtime/vm/kernel.h FILE: ../../../third_party/dart/runtime/vm/kernel_binary.cc @@ -12841,7 +38248,6 @@ FILE: ../../../third_party/dart/runtime/vm/token_position.cc FILE: ../../../third_party/dart/runtime/vm/token_position.h FILE: ../../../third_party/dart/runtime/vm/uri.cc FILE: ../../../third_party/dart/runtime/vm/uri.h -FILE: ../../../third_party/dart/runtime/vm/uri_test.cc FILE: ../../../third_party/dart/runtime/vm/virtual_memory_fuchsia.cc FILE: ../../../third_party/dart/sdk/lib/developer/service.dart FILE: ../../../third_party/dart/sdk/lib/js_util/js_util.dart @@ -12879,7 +38285,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: glfw ORIGIN: ../../../third_party/glfw/src/null_joystick.c -TYPE: LicenseType.zlib +TYPE: LicenseType.unknown FILE: ../../../third_party/glfw/src/null_joystick.c ---------------------------------------------------------------------------------------------------- Copyright (c) 2016-2017 Camilla Löwy @@ -12904,56 +38310,42 @@ freely, subject to the following restrictions: distribution. ==================================================================================================== -==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/appveyor.yml -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/appveyor.yml ----------------------------------------------------------------------------------------------------- -Copyright (c) 2017 José Gutiérrez de la Concha -Copyright (c) 2017-2022 Sebastian Pipping -Copyright (c) 2017 Franek Korta -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/buf/buf_test.cc +ORIGIN: ../../../third_party/boringssl/crypto_test_data.cc +ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/e_aesctrhmac.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/e_aesgcmsiv.c +ORIGIN: ../../../third_party/boringssl/src/crypto/err/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/p_ed25519.c +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/p_ed25519_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bcm.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/delocate.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/ctrdrbg.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/self_check/fips.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/self_check/self_check.c +ORIGIN: ../../../third_party/boringssl/src/crypto/pkcs7/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/pkcs7/pkcs7_x509.c +ORIGIN: ../../../third_party/boringssl/src/crypto/rand_extra/forkunsafe.c +ORIGIN: ../../../third_party/boringssl/src/crypto/rand_extra/fuchsia.c +ORIGIN: ../../../third_party/boringssl/src/crypto/rand_extra/rand_extra.c +ORIGIN: ../../../third_party/boringssl/src/decrepit/cfb/cfb.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/is_boringssl.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/span.h +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_versions.cc +ORIGIN: ../../../third_party/boringssl/src/tool/file.cc +ORIGIN: ../../../third_party/boringssl/src/tool/sign.cc TYPE: LicenseType.unknown FILE: ../../../third_party/boringssl/crypto_test_data.cc -FILE: ../../../third_party/boringssl/src/crypto/buf/buf_test.cc FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_aesctrhmac.c FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_aesgcmsiv.c -FILE: ../../../third_party/boringssl/src/crypto/compiler_test.cc FILE: ../../../third_party/boringssl/src/crypto/err/internal.h FILE: ../../../third_party/boringssl/src/crypto/evp/p_ed25519.c FILE: ../../../third_party/boringssl/src/crypto/evp/p_ed25519_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/evp/scrypt_test.cc FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/internal.h FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bcm.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn_test_to_fuzzer.go FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/delocate.h FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/ctrdrbg.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/ctrdrbg_test.cc FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/self_check/fips.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/self_check/self_check.c FILE: ../../../third_party/boringssl/src/crypto/pkcs7/internal.h @@ -12962,42 +38354,11 @@ FILE: ../../../third_party/boringssl/src/crypto/rand_extra/forkunsafe.c FILE: ../../../third_party/boringssl/src/crypto/rand_extra/fuchsia.c FILE: ../../../third_party/boringssl/src/crypto/rand_extra/rand_extra.c FILE: ../../../third_party/boringssl/src/decrepit/cfb/cfb.c -FILE: ../../../third_party/boringssl/src/decrepit/cfb/cfb_test.cc FILE: ../../../third_party/boringssl/src/include/openssl/is_boringssl.h FILE: ../../../third_party/boringssl/src/include/openssl/span.h -FILE: ../../../third_party/boringssl/src/ssl/span_test.cc FILE: ../../../third_party/boringssl/src/ssl/ssl_versions.cc FILE: ../../../third_party/boringssl/src/tool/file.cc FILE: ../../../third_party/boringssl/src/tool/sign.cc -FILE: ../../../third_party/boringssl/src/util/ar/ar.go -FILE: ../../../third_party/boringssl/src/util/check_imported_libraries.go -FILE: ../../../third_party/boringssl/src/util/convert_comments.go -FILE: ../../../third_party/boringssl/src/util/embed_test_data.go -FILE: ../../../third_party/boringssl/src/util/fipstools/break-hash.go -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_aes_gcm_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_aes_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_ctr_drbg_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_ecdsa2_keypair_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_ecdsa2_pkv_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_ecdsa2_siggen_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_ecdsa2_sigver_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_hmac_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_keywrap_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_main.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_rsa2_keygen_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_rsa2_siggen_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_rsa2_sigver_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_sha_monte_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_sha_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_tdes_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_test_util.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_test_util.h -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/test_fips.c -FILE: ../../../third_party/boringssl/src/util/fipstools/delocate/delocate.go -FILE: ../../../third_party/boringssl/src/util/fipstools/delocate/delocate.peg -FILE: ../../../third_party/boringssl/src/util/fipstools/delocate/delocate_test.go -FILE: ../../../third_party/boringssl/src/util/fipstools/fipscommon/const.go -FILE: ../../../third_party/boringssl/src/util/fipstools/inject_hash/inject_hash.go ---------------------------------------------------------------------------------------------------- Copyright (c) 2017, Google Inc. @@ -13017,6 +38378,158 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ==================================================================================================== LIBRARY: dart ORIGIN: ../../../third_party/dart/runtime/bin/cli.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/dfe.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/dfe.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/error_exit.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/error_exit.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/gzip.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/gzip.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/isolate_data.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/main_options.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/main_options.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/namespace.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/namespace.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/namespace_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/namespace_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/namespace_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/namespace_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/namespace_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/options.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/options.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/secure_socket_filter.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/secure_socket_filter.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/secure_socket_utils.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/secure_socket_utils.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/security_context.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/security_context.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/security_context_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/security_context_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/security_context_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/security_context_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/security_context_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/snapshot_utils.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/snapshot_utils.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_base.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_base.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/sync_socket.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/sync_socket.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/sync_socket_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/sync_socket_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/sync_socket_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/sync_socket_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/sync_socket_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/async.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/containers/search_bar.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/reload.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/singletargetcache_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/singletargetcache_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/subtypetestcache_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/subtypetestcache_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/unlinkedcall_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/unlinkedcall_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/service.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/single_target_cache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/subtype_test_cache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/timeline.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/unlinked_call.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/single_target_cache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/subtype_test_cache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/timeline.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/unlinked_call.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/vm.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/single_target_cache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/subtype_test_cache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/timeline.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/unlinked_call.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/vm.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/containers/search_bar.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/nav/reload.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/singletargetcache_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/singletargetcache_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/subtypetestcache_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/subtypetestcache_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/timeline/dashboard.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/unlinkedcall_ref.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/unlinkedcall_view.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/service.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/single_target_cache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/subtype_test_cache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/timeline.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/unlinked_call.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/single_target_cache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/subtype_test_cache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/timeline.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/unlinked_call.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/vm.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/single_target_cache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/subtype_test_cache.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/timeline.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/unlinked_call.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/vm.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/allocation.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/growable_array.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_riscv.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/locations_helpers.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/locations_helpers_arm.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/call_specializer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/call_specializer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_binary_flowgraph.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/prologue_builder.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/prologue_builder.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/jit/jit_call_specializer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/constants_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/constants_riscv.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/constants_x86.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/dwarf.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/dwarf.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/fixed_cache.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/gdb_helpers.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/compactor.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/compactor.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/image_snapshot.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/image_snapshot.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/json_writer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/json_writer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/kernel_binary.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/malloc_hooks.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/malloc_hooks_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/malloc_hooks_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/malloc_hooks_ia32.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/malloc_hooks_tcmalloc.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/malloc_hooks_unsupported.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/malloc_hooks_x64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/simulator_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/simulator_riscv.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/stack_trace.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/stack_trace.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/timeline_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/timeline_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/timeline_linux.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/zone_text_buffer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/zone_text_buffer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_http/overrides.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/custom_hash_map.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/identity_hash_map.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/linked_hash_map.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/profile.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/cli_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/namespace_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/bin/sync_socket_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/class_id_fasta.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm_shared/lib/bigint_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/cli/cli.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/cli/wait_for.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/bigint.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/internal/linked_list.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/internal/patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/embedder_config.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/namespace_impl.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/overrides.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/io/sync_socket.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/vmservice/named_lookup.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/utils/bazel/kernel_worker.dart + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/dart/runtime/bin/cli.cc FILE: ../../../third_party/dart/runtime/bin/dfe.cc @@ -13111,11 +38624,9 @@ FILE: ../../../third_party/dart/runtime/platform/allocation.h FILE: ../../../third_party/dart/runtime/platform/growable_array.h FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_riscv.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_riscv.h -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_riscv_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_riscv.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/locations_helpers.h FILE: ../../../third_party/dart/runtime/vm/compiler/backend/locations_helpers_arm.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/locations_helpers_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/call_specializer.cc FILE: ../../../third_party/dart/runtime/vm/compiler/call_specializer.h FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_binary_flowgraph.h @@ -13125,11 +38636,9 @@ FILE: ../../../third_party/dart/runtime/vm/compiler/jit/jit_call_specializer.h FILE: ../../../third_party/dart/runtime/vm/constants_riscv.cc FILE: ../../../third_party/dart/runtime/vm/constants_riscv.h FILE: ../../../third_party/dart/runtime/vm/constants_x86.h -FILE: ../../../third_party/dart/runtime/vm/debugger_api_impl_test.h FILE: ../../../third_party/dart/runtime/vm/dwarf.cc FILE: ../../../third_party/dart/runtime/vm/dwarf.h FILE: ../../../third_party/dart/runtime/vm/fixed_cache.h -FILE: ../../../third_party/dart/runtime/vm/fixed_cache_test.cc FILE: ../../../third_party/dart/runtime/vm/gdb_helpers.cc FILE: ../../../third_party/dart/runtime/vm/heap/compactor.cc FILE: ../../../third_party/dart/runtime/vm/heap/compactor.h @@ -13143,10 +38652,8 @@ FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_arm.cc FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_arm64.cc FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_ia32.cc FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_tcmalloc.cc -FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_test.cc FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_unsupported.cc FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_x64.cc -FILE: ../../../third_party/dart/runtime/vm/mixin_test.cc FILE: ../../../third_party/dart/runtime/vm/simulator_riscv.cc FILE: ../../../third_party/dart/runtime/vm/simulator_riscv.h FILE: ../../../third_party/dart/runtime/vm/stack_trace.cc @@ -13274,9 +38781,12 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEAL ==================================================================================================== ==================================================================================================== +LIBRARY: vulkan-validation-layers LIBRARY: vulkan_memory_allocator +ORIGIN: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_mem_alloc.h ORIGIN: ../../../third_party/vulkan_memory_allocator/include/vk_mem_alloc.h TYPE: LicenseType.mit +FILE: ../../../third_party/vulkan-deps/vulkan-validation-layers/src/layers/vk_mem_alloc.h FILE: ../../../third_party/vulkan_memory_allocator/include/vk_mem_alloc.h ---------------------------------------------------------------------------------------------------- Copyright (c) 2017-2022 Advanced Micro Devices, Inc. All rights reserved. @@ -13303,46 +38813,42 @@ THE SOFTWARE. ==================================================================================================== LIBRARY: boringssl ORIGIN: ../../../third_party/boringssl/src/crypto/bytestring/unicode.c +ORIGIN: ../../../third_party/boringssl/src/crypto/chacha/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/cpu-aarch64-fuchsia.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cpu-arm-linux.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/div_extra.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/gcd_extra.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/felem.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/scalar.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/simple_mul.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/md5/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/tls/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/hrss/hrss.c +ORIGIN: ../../../third_party/boringssl/src/crypto/hrss/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/internal.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/e_os2.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/hrss.h +ORIGIN: ../../../third_party/boringssl/src/ssl/handoff.cc TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/src/crypto/abi_self_test.cc FILE: ../../../third_party/boringssl/src/crypto/bytestring/unicode.c FILE: ../../../third_party/boringssl/src/crypto/chacha/internal.h FILE: ../../../third_party/boringssl/src/crypto/cpu-aarch64-fuchsia.c FILE: ../../../third_party/boringssl/src/crypto/cpu-arm-linux.h -FILE: ../../../third_party/boringssl/src/crypto/cpu-arm-linux_test.cc FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/div_extra.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/gcd_extra.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/felem.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/make_ec_scalar_base_mult_tests.go -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/make_p256-x86_64-tests.go FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/scalar.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/simple_mul.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/md5/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/md5/md5_test.cc FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha_test.cc FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/tls/internal.h FILE: ../../../third_party/boringssl/src/crypto/hrss/hrss.c -FILE: ../../../third_party/boringssl/src/crypto/hrss/hrss_test.cc FILE: ../../../third_party/boringssl/src/crypto/hrss/internal.h -FILE: ../../../third_party/boringssl/src/crypto/impl_dispatch_test.cc -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_test.cc -FILE: ../../../third_party/boringssl/src/crypto/rand_extra/rand_test.cc -FILE: ../../../third_party/boringssl/src/crypto/self_test.cc -FILE: ../../../third_party/boringssl/src/crypto/stack/stack_test.cc FILE: ../../../third_party/boringssl/src/crypto/x509v3/internal.h FILE: ../../../third_party/boringssl/src/include/openssl/e_os2.h FILE: ../../../third_party/boringssl/src/include/openssl/hrss.h FILE: ../../../third_party/boringssl/src/ssl/handoff.cc -FILE: ../../../third_party/boringssl/src/util/ar/ar_test.go -FILE: ../../../third_party/boringssl/src/util/check_filenames.go -FILE: ../../../third_party/boringssl/src/util/convert_wycheproof.go -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_kas_test.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/cavp_tlskdf_test.cc -FILE: ../../../third_party/boringssl/src/util/godeps.go -FILE: ../../../third_party/boringssl/src/util/make_prefix_headers.go -FILE: ../../../third_party/boringssl/src/util/read_symbols.go -FILE: ../../../third_party/boringssl/src/util/testresult/testresult.go ---------------------------------------------------------------------------------------------------- Copyright (c) 2018, Google Inc. @@ -13384,6 +38890,52 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ==================================================================================================== LIBRARY: dart ORIGIN: ../../../third_party/dart/runtime/bin/crashpad.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/dart_embedder_api_impl.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/typed_data_utils.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/typed_data_utils.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/include/dart_embedder_api.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/dartfuzz/dartfuzz.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/base64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/base64.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/code_statistics.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/code_statistics.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/compile_type.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/loops.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/loops.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/slot.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/slot.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/compiler_pass.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/compiler_pass.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/compiler_state.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/compiler_state.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/base_flow_graph_builder.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/base_flow_graph_builder.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/constant_reader.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/constant_reader.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_fingerprints.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_fingerprints.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_translation_helper.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_translation_helper.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/scope_builder.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/frontend/scope_builder.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/relocation.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/constants.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/datastream.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/finalizable_data.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/hash.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/raw_object_fields.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/raw_object_fields.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/reverse_pc_lookup_cache.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/reverse_pc_lookup_cache.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/type_testing_stubs.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/type_testing_stubs.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/v8_snapshot_writer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/v8_snapshot_writer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/instantiation.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/js/_js.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/js/_js_client.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/js/_js_server.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/typed_data/unmodifiable_typed_data.dart + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/dart/runtime/bin/crashpad.h FILE: ../../../third_party/dart/runtime/bin/dart_embedder_api_impl.cc @@ -13391,17 +38943,13 @@ FILE: ../../../third_party/dart/runtime/bin/typed_data_utils.cc FILE: ../../../third_party/dart/runtime/bin/typed_data_utils.h FILE: ../../../third_party/dart/runtime/include/dart_embedder_api.h FILE: ../../../third_party/dart/runtime/tools/dartfuzz/dartfuzz.dart -FILE: ../../../third_party/dart/runtime/tools/dartfuzz/dartfuzz_test.dart FILE: ../../../third_party/dart/runtime/vm/base64.cc FILE: ../../../third_party/dart/runtime/vm/base64.h -FILE: ../../../third_party/dart/runtime/vm/base64_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/code_statistics.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/code_statistics.h FILE: ../../../third_party/dart/runtime/vm/compiler/backend/compile_type.h FILE: ../../../third_party/dart/runtime/vm/compiler/backend/loops.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/loops.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/loops_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/redundancy_elimination_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/slot.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/slot.h FILE: ../../../third_party/dart/runtime/vm/compiler/compiler_pass.cc @@ -13469,6 +39017,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: dart ORIGIN: ../../../third_party/dart/runtime/bin/console.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/console_posix.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/console_win.cc + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/dart/runtime/bin/console.h FILE: ../../../third_party/dart/runtime/bin/console_posix.cc @@ -13504,37 +39054,82 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: expat -ORIGIN: ../../../third_party/expat/expat/cmake/expat-config.cmake.in +LIBRARY: inja +ORIGIN: ../../../third_party/inja/LICENSE TYPE: LicenseType.mit -FILE: ../../../third_party/expat/expat/cmake/expat-config.cmake.in ----------------------------------------------------------------------------------------------------- -Copyright (c) 2019 Expat development team -Licensed under the MIT license: +FILE: ../../../third_party/inja/include/inja/config.hpp +FILE: ../../../third_party/inja/include/inja/environment.hpp +FILE: ../../../third_party/inja/include/inja/exceptions.hpp +FILE: ../../../third_party/inja/include/inja/function_storage.hpp +FILE: ../../../third_party/inja/include/inja/lexer.hpp +FILE: ../../../third_party/inja/include/inja/node.hpp +FILE: ../../../third_party/inja/include/inja/parser.hpp +FILE: ../../../third_party/inja/include/inja/renderer.hpp +FILE: ../../../third_party/inja/include/inja/statistics.hpp +FILE: ../../../third_party/inja/include/inja/template.hpp +FILE: ../../../third_party/inja/include/inja/token.hpp +FILE: ../../../third_party/inja/include/inja/utils.hpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2018-2021 Berscheid -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: inja +ORIGIN: ../../../third_party/inja/include/inja/inja.hpp +ORIGIN: ../../../third_party/inja/single_include/inja/inja.hpp +TYPE: LicenseType.mit +FILE: ../../../third_party/inja/include/inja/inja.hpp +FILE: ../../../third_party/inja/single_include/inja/inja.hpp +---------------------------------------------------------------------------------------------------- +Copyright (c) 2018-2021 Lars Berscheid + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. ==================================================================================================== ==================================================================================================== LIBRARY: boringssl ORIGIN: ../../../third_party/boringssl/src/crypto/ec_extra/ec_derive.c +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/p_x25519.c +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/p_x25519_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/aes_nohw.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/fips_shared_support.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/gcm_nohw.c +ORIGIN: ../../../third_party/boringssl/src/crypto/siphash/siphash.c +ORIGIN: ../../../third_party/boringssl/src/crypto/trust_token/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/trust_token/trust_token.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/siphash.h TYPE: LicenseType.unknown FILE: ../../../third_party/boringssl/src/crypto/ec_extra/ec_derive.c FILE: ../../../third_party/boringssl/src/crypto/evp/p_x25519.c @@ -13542,25 +39137,10 @@ FILE: ../../../third_party/boringssl/src/crypto/evp/p_x25519_asn1.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/aes_nohw.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/fips_shared_support.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/gcm_nohw.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/urandom_test.cc FILE: ../../../third_party/boringssl/src/crypto/siphash/siphash.c -FILE: ../../../third_party/boringssl/src/crypto/siphash/siphash_test.cc FILE: ../../../third_party/boringssl/src/crypto/trust_token/internal.h FILE: ../../../third_party/boringssl/src/crypto/trust_token/trust_token.c -FILE: ../../../third_party/boringssl/src/decrepit/blowfish/blowfish_test.cc -FILE: ../../../third_party/boringssl/src/decrepit/cast/cast_test.cc FILE: ../../../third_party/boringssl/src/include/openssl/siphash.h -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/acvp.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/acvp/acvp.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/interactive.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/parser.peg -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/block.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/drbg.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/ecdsa.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/hash.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/hmac.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/subprocess.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/modulewrapper/modulewrapper.cc ---------------------------------------------------------------------------------------------------- Copyright (c) 2019, Google Inc. @@ -13577,16 +39157,142 @@ OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ==================================================================================================== +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/CInterface/spirv_c_interface.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/CInterface/glslang_c_interface.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/glslang_c_interface.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/glslang_c_shader_types.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/CInterface/spirv_c_interface.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/CInterface/glslang_c_interface.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/glslang_c_interface.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/glslang_c_shader_types.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2019, Viktor Latypov +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + ==================================================================================================== LIBRARY: dart -ORIGIN: ../../../third_party/dart/runtime/bin/ffi_test/ffi_test_dynamic_library.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/elf_loader.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/elf_loader.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/ifaddrs-android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/ifaddrs-android.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/namespace_fuchsia.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_base_android.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/ffi.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/ffi_dynamic_library.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/tree_map.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/isolate_group.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/isolate_group.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/isolate_group.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/repositories/timeline_base.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/tree_map.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/objects/isolate_group.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/models/repositories/isolate_group.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/isolate_group.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/repositories/timeline_base.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/elf.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/thread_sanitizer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/dartfuzz/dartfuzz_api_table.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/dartfuzz/dartfuzz_ffi_api.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/dartfuzz/dartfuzz_type_table.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/dartfuzz/gen_api_table.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/dartfuzz/gen_type_table.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/dartfuzz/gen_util.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/ffi/sdk_lib_ffi_generator.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/graphexplorer/graphexplorer.html + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/graphexplorer/graphexplorer.js + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/run_clang_tidy.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/bss_relocs.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/bss_relocs.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/class_id.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_comments.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_comments.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_entry_kind.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier_ia32.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier_x64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/block_builder.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/evaluator.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/evaluator.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_checker.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_checker.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/il_test_helper.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/il_test_helper.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/graph_intrinsifier.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/graph_intrinsifier.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/offsets_extractor.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/recognized_methods_list.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/relocation.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/runtime_api.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/runtime_api.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/runtime_offsets_extracted.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/runtime_offsets_list.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/stub_code_compiler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/stub_code_compiler_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/stub_code_compiler_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/stub_code_compiler_ia32.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/stub_code_compiler_x64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/constants_arm.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/constants_arm64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/constants_ia32.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/constants_x64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/elf.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/elf.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/ffi_callback_trampolines.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/ffi_callback_trampolines.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/frame_layout.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/intrusive_dlist.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/libfuzzer/dart_libfuzzer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/longjump.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/pointer_tagging.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/splay-tree.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/static_type_exactness_state.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/stub_code_list.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_stack_resource.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_stack_resource.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_state.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_state.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_shared/lib/rti.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_shared/lib/synced/recipe_syntax.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/ffi_dynamic_library_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/ffi_native_type_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/ffi_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/ffi/annotations.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/ffi/dynamic_library.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/ffi/ffi.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/ffi/native_type.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/ffi/struct.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/internal/errors.dart + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/dart/runtime/bin/elf_loader.cc FILE: ../../../third_party/dart/runtime/bin/elf_loader.h -FILE: ../../../third_party/dart/runtime/bin/entrypoints_verification_test.cc -FILE: ../../../third_party/dart/runtime/bin/ffi_test/ffi_test_dynamic_library.cc -FILE: ../../../third_party/dart/runtime/bin/ffi_test/ffi_test_functions.cc -FILE: ../../../third_party/dart/runtime/bin/ffi_test/ffi_test_functions_vmspecific.cc FILE: ../../../third_party/dart/runtime/bin/ifaddrs-android.cc FILE: ../../../third_party/dart/runtime/bin/ifaddrs-android.h FILE: ../../../third_party/dart/runtime/bin/namespace_fuchsia.h @@ -13617,7 +39323,6 @@ FILE: ../../../third_party/dart/runtime/tools/graphexplorer/graphexplorer.js FILE: ../../../third_party/dart/runtime/tools/run_clang_tidy.dart FILE: ../../../third_party/dart/runtime/vm/bss_relocs.cc FILE: ../../../third_party/dart/runtime/vm/bss_relocs.h -FILE: ../../../third_party/dart/runtime/vm/catch_entry_moves_test.cc FILE: ../../../third_party/dart/runtime/vm/class_id.h FILE: ../../../third_party/dart/runtime/vm/code_comments.cc FILE: ../../../third_party/dart/runtime/vm/code_comments.h @@ -13628,7 +39333,6 @@ FILE: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier_arm.cc FILE: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier_arm64.cc FILE: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier_ia32.cc FILE: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier_x64.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/bce_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/block_builder.h FILE: ../../../third_party/dart/runtime/vm/compiler/backend/evaluator.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/evaluator.h @@ -13636,11 +39340,6 @@ FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_checker.c FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_checker.h FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_test_helper.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_test_helper.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/inliner_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/slot_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/type_propagator_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/typed_data_aot_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/yield_position_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/graph_intrinsifier.cc FILE: ../../../third_party/dart/runtime/vm/compiler/graph_intrinsifier.h FILE: ../../../third_party/dart/runtime/vm/compiler/offsets_extractor.cc @@ -13665,7 +39364,6 @@ FILE: ../../../third_party/dart/runtime/vm/ffi_callback_trampolines.cc FILE: ../../../third_party/dart/runtime/vm/ffi_callback_trampolines.h FILE: ../../../third_party/dart/runtime/vm/frame_layout.h FILE: ../../../third_party/dart/runtime/vm/intrusive_dlist.h -FILE: ../../../third_party/dart/runtime/vm/intrusive_dlist_test.cc FILE: ../../../third_party/dart/runtime/vm/libfuzzer/dart_libfuzzer.cc FILE: ../../../third_party/dart/runtime/vm/longjump.h FILE: ../../../third_party/dart/runtime/vm/pointer_tagging.h @@ -13676,30 +39374,6 @@ FILE: ../../../third_party/dart/runtime/vm/thread_stack_resource.cc FILE: ../../../third_party/dart/runtime/vm/thread_stack_resource.h FILE: ../../../third_party/dart/runtime/vm/thread_state.cc FILE: ../../../third_party/dart/runtime/vm/thread_state.h -FILE: ../../../third_party/dart/samples/ffi/coordinate.dart -FILE: ../../../third_party/dart/samples/ffi/dylib_utils.dart -FILE: ../../../third_party/dart/samples/ffi/resource_management/arena_isolate_shutdown_sample.dart -FILE: ../../../third_party/dart/samples/ffi/resource_management/arena_sample.dart -FILE: ../../../third_party/dart/samples/ffi/resource_management/arena_zoned_sample.dart -FILE: ../../../third_party/dart/samples/ffi/resource_management/resource_management_test.dart -FILE: ../../../third_party/dart/samples/ffi/resource_management/unmanaged_sample.dart -FILE: ../../../third_party/dart/samples/ffi/sample_ffi_bitfield.dart -FILE: ../../../third_party/dart/samples/ffi/sample_ffi_data.dart -FILE: ../../../third_party/dart/samples/ffi/sample_ffi_dynamic_library.dart -FILE: ../../../third_party/dart/samples/ffi/sample_ffi_functions.dart -FILE: ../../../third_party/dart/samples/ffi/sample_ffi_functions_callbacks.dart -FILE: ../../../third_party/dart/samples/ffi/sample_ffi_functions_structs.dart -FILE: ../../../third_party/dart/samples/ffi/sample_ffi_structs.dart -FILE: ../../../third_party/dart/samples/ffi/samples_test.dart -FILE: ../../../third_party/dart/samples/ffi/sqlite/example/main.dart -FILE: ../../../third_party/dart/samples/ffi/sqlite/lib/sqlite.dart -FILE: ../../../third_party/dart/samples/ffi/sqlite/lib/src/bindings/bindings.dart -FILE: ../../../third_party/dart/samples/ffi/sqlite/lib/src/bindings/constants.dart -FILE: ../../../third_party/dart/samples/ffi/sqlite/lib/src/bindings/signatures.dart -FILE: ../../../third_party/dart/samples/ffi/sqlite/lib/src/bindings/types.dart -FILE: ../../../third_party/dart/samples/ffi/sqlite/lib/src/collections/closable_iterator.dart -FILE: ../../../third_party/dart/samples/ffi/sqlite/lib/src/database.dart -FILE: ../../../third_party/dart/samples/ffi/sqlite/lib/src/ffi/dylib_utils.dart FILE: ../../../third_party/dart/sdk/lib/_internal/js_shared/lib/rti.dart FILE: ../../../third_party/dart/sdk/lib/_internal/js_shared/lib/synced/recipe_syntax.dart FILE: ../../../third_party/dart/sdk/lib/_internal/vm/lib/ffi_dynamic_library_patch.dart @@ -13776,30 +39450,14 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/util/compare_benchmarks.go -TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/src/util/compare_benchmarks.go ----------------------------------------------------------------------------------------------------- -Copyright (c) 2020 Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -==================================================================================================== - ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/QueryMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/QueryMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/SyncMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/SyncMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_occlusion_query_pool.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_occlusion_query_pool.mm + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/libANGLE/renderer/metal/QueryMtl.h FILE: ../../../third_party/angle/src/libANGLE/renderer/metal/QueryMtl.mm @@ -13841,43 +39499,78 @@ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/SPIRV/NonSemanticDebugPrintf.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/vulkan-deps/glslang/src/SPIRV/NonSemanticDebugPrintf.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS +KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS +SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT + https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +==================================================================================================== + ==================================================================================================== LIBRARY: boringssl ORIGIN: ../../../third_party/boringssl/src/crypto/curve25519/curve25519.c +ORIGIN: ../../../third_party/boringssl/src/crypto/curve25519/curve25519_tables.h +ORIGIN: ../../../third_party/boringssl/src/crypto/curve25519/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/dsa/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/ec_extra/hash_to_curve.c +ORIGIN: ../../../third_party/boringssl/src/crypto/ec_extra/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256_table.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/fork_detect.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/fork_detect.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/getrandom_fillin.h +ORIGIN: ../../../third_party/boringssl/src/crypto/hpke/hpke.c +ORIGIN: ../../../third_party/boringssl/src/crypto/rand_extra/passive.c +ORIGIN: ../../../third_party/boringssl/src/crypto/trust_token/pmbtoken.c +ORIGIN: ../../../third_party/boringssl/src/crypto/trust_token/voprf.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/hpke.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/trust_token.h +ORIGIN: ../../../third_party/boringssl/src/tool/fd.cc TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/src/crypto/crypto_test.cc FILE: ../../../third_party/boringssl/src/crypto/curve25519/curve25519.c FILE: ../../../third_party/boringssl/src/crypto/curve25519/curve25519_tables.h FILE: ../../../third_party/boringssl/src/crypto/curve25519/internal.h FILE: ../../../third_party/boringssl/src/crypto/dsa/internal.h FILE: ../../../third_party/boringssl/src/crypto/ec_extra/hash_to_curve.c FILE: ../../../third_party/boringssl/src/crypto/ec_extra/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/make_tables.go FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256_table.h FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/fork_detect.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/fork_detect.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/fork_detect_test.cc FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/getrandom_fillin.h FILE: ../../../third_party/boringssl/src/crypto/hpke/hpke.c -FILE: ../../../third_party/boringssl/src/crypto/hpke/hpke_test.cc FILE: ../../../third_party/boringssl/src/crypto/rand_extra/passive.c FILE: ../../../third_party/boringssl/src/crypto/trust_token/pmbtoken.c -FILE: ../../../third_party/boringssl/src/crypto/trust_token/trust_token_test.cc FILE: ../../../third_party/boringssl/src/crypto/trust_token/voprf.c -FILE: ../../../third_party/boringssl/src/decrepit/xts/xts_test.cc FILE: ../../../third_party/boringssl/src/include/openssl/hpke.h FILE: ../../../third_party/boringssl/src/include/openssl/trust_token.h FILE: ../../../third_party/boringssl/src/tool/fd.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/nointeractive.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/aead.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/kas.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/kasdh.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/kdf.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/keyedMac.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/rsa.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/tlskdf.go -FILE: ../../../third_party/boringssl/src/util/testconfig/testconfig.go ---------------------------------------------------------------------------------------------------- Copyright (c) 2020, Google Inc. @@ -13894,19 +39587,123 @@ OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ==================================================================================================== +==================================================================================================== +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/StandAlone/resource_limits_c.cpp +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/StandAlone/resource_limits_c.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/StandAlone/resource_limits_c.cpp +FILE: ../../../third_party/vulkan-deps/glslang/src/StandAlone/resource_limits_c.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2020, Travis Fort +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + ==================================================================================================== LIBRARY: dart -ORIGIN: ../../../third_party/dart/runtime/bin/ffi_test/ffi_test_functions_generated.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/dartdev_isolate.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/dartdev_isolate.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/exe_utils.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/exe_utils.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/ffi_unit_test/run_ffi_unit_tests.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/file_win.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/platform_macos.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/include/dart_api_dl.c + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/include/dart_api_dl.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/include/dart_version.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/include/internal/dart_api_dl_impl.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/bin/heap_snapshot.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory/lib/src/elements/process_snapshot.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/bin/heap_snapshot.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/observatory_2/lib/src/elements/process_snapshot.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/allocation.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/leak_sanitizer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/priority_queue.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/unaligned.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/undefined_behavior_sanitizer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/wiki/xref_extractor/bin/main.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/wiki/xref_extractor/lib/cquery_driver.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/wiki/xref_extractor/lib/xref_extractor.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/canonical_tables.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/closure_functions_cache.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/closure_functions_cache.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/aot/dispatch_table_generator.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/aot/dispatch_table_generator.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/aot/precompiler_tracer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/aot/precompiler_tracer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/api/deopt_id.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/api/print_filter.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/api/print_filter.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/api/type_check_mode.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_base.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/abi.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/abi.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/call.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/call.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/callback.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/callback.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/frame_rebase.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/frame_rebase.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/marshaller.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/marshaller.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/native_calling_convention.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/native_calling_convention.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/native_location.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/native_location.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/native_type.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/native_type.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/recognized_method.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/recognized_method.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_test_custom_zone.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_test_custom_zone.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/stub_code_compiler.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/write_barrier_elimination.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/write_barrier_elimination.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/constants_base.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/dispatch_table.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/dispatch_table.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/experimental_features.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/experimental_features.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/field_table.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/field_table.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/port_set.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/tagged_pointer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/timeline_macos.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/visitor.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_http/embedder_config.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/js_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/ffi_struct_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/internal/lowering.dart + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/dart/runtime/bin/dartdev_isolate.cc FILE: ../../../third_party/dart/runtime/bin/dartdev_isolate.h FILE: ../../../third_party/dart/runtime/bin/exe_utils.cc FILE: ../../../third_party/dart/runtime/bin/exe_utils.h -FILE: ../../../third_party/dart/runtime/bin/ffi_test/ffi_test_functions_generated.cc FILE: ../../../third_party/dart/runtime/bin/ffi_unit_test/run_ffi_unit_tests.cc FILE: ../../../third_party/dart/runtime/bin/file_win.h FILE: ../../../third_party/dart/runtime/bin/platform_macos.h -FILE: ../../../third_party/dart/runtime/bin/priority_heap_test.cc FILE: ../../../third_party/dart/runtime/include/dart_api_dl.c FILE: ../../../third_party/dart/runtime/include/dart_api_dl.h FILE: ../../../third_party/dart/runtime/include/dart_version.h @@ -13935,8 +39732,6 @@ FILE: ../../../third_party/dart/runtime/vm/compiler/api/print_filter.cc FILE: ../../../third_party/dart/runtime/vm/compiler/api/print_filter.h FILE: ../../../third_party/dart/runtime/vm/compiler/api/type_check_mode.h FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_base.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/constant_propagator_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/reachability_fence_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/abi.cc FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/abi.h FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/call.cc @@ -13949,45 +39744,28 @@ FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/marshaller.cc FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/marshaller.h FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/native_calling_convention.cc FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/native_calling_convention.h -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/native_calling_convention_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/native_location.cc FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/native_location.h -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/native_location_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/native_type.cc FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/native_type.h -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/native_type_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/native_type_vm_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/recognized_method.cc FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/recognized_method.h -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_test.h FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_test_custom_zone.cc FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_test_custom_zone.h -FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_binary_flowgraph_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/stub_code_compiler.cc FILE: ../../../third_party/dart/runtime/vm/compiler/write_barrier_elimination.cc FILE: ../../../third_party/dart/runtime/vm/compiler/write_barrier_elimination.h -FILE: ../../../third_party/dart/runtime/vm/compiler/write_barrier_elimination_test.cc FILE: ../../../third_party/dart/runtime/vm/constants_base.h -FILE: ../../../third_party/dart/runtime/vm/datastream_test.cc FILE: ../../../third_party/dart/runtime/vm/dispatch_table.cc FILE: ../../../third_party/dart/runtime/vm/dispatch_table.h FILE: ../../../third_party/dart/runtime/vm/experimental_features.cc FILE: ../../../third_party/dart/runtime/vm/experimental_features.h FILE: ../../../third_party/dart/runtime/vm/field_table.cc FILE: ../../../third_party/dart/runtime/vm/field_table.h -FILE: ../../../third_party/dart/runtime/vm/heap/become_test.cc -FILE: ../../../third_party/dart/runtime/vm/heap/weak_table_test.cc FILE: ../../../third_party/dart/runtime/vm/port_set.h -FILE: ../../../third_party/dart/runtime/vm/stub_code_test.cc FILE: ../../../third_party/dart/runtime/vm/tagged_pointer.h FILE: ../../../third_party/dart/runtime/vm/timeline_macos.cc -FILE: ../../../third_party/dart/runtime/vm/type_testing_stubs_test.cc FILE: ../../../third_party/dart/runtime/vm/visitor.cc -FILE: ../../../third_party/dart/samples/ffi/async/async_test.dart -FILE: ../../../third_party/dart/samples/ffi/async/sample_async_callback.dart -FILE: ../../../third_party/dart/samples/ffi/async/sample_native_port_call.dart -FILE: ../../../third_party/dart/samples/ffi/sample_ffi_functions_callbacks_closures.dart FILE: ../../../third_party/dart/sdk/lib/_http/embedder_config.dart FILE: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/patch/js_patch.dart FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_patch.dart @@ -14026,7 +39804,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: glfw ORIGIN: ../../../third_party/glfw/src/posix_module.c -TYPE: LicenseType.zlib +ORIGIN: ../../../third_party/glfw/src/win32_module.c +TYPE: LicenseType.unknown FILE: ../../../third_party/glfw/src/posix_module.c FILE: ../../../third_party/glfw/src/win32_module.c ---------------------------------------------------------------------------------------------------- @@ -14052,27 +39831,49 @@ freely, subject to the following restrictions: distribution. ==================================================================================================== +==================================================================================================== +LIBRARY: ceval +ORIGIN: ../../../third_party/angle/src/third_party/ceval/LICENSE +TYPE: LicenseType.mit +FILE: ../../../third_party/angle/src/third_party/ceval/ceval.h +FILE: ../../../third_party/angle/src/third_party/ceval/patches/0001-remove-sprintf.patch +---------------------------------------------------------------------------------------------------- +Copyright (c) 2021 e_t + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +==================================================================================================== + ==================================================================================================== LIBRARY: boringssl ORIGIN: ../../../third_party/boringssl/src/crypto/blake2/blake2.c +ORIGIN: ../../../third_party/boringssl/src/crypto/blake2/blake2b256_tests.txt +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdsa/internal.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/blake2.h +ORIGIN: ../../../third_party/boringssl/src/ssl/encrypted_client_hello.cc +ORIGIN: ../../../third_party/boringssl/src/tool/generate_ech.cc TYPE: LicenseType.unknown FILE: ../../../third_party/boringssl/src/crypto/blake2/blake2.c -FILE: ../../../third_party/boringssl/src/crypto/blake2/blake2_test.cc -FILE: ../../../third_party/boringssl/src/crypto/conf/conf_test.cc +FILE: ../../../third_party/boringssl/src/crypto/blake2/blake2b256_tests.txt FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdsa/internal.h -FILE: ../../../third_party/boringssl/src/decrepit/evp/evp_test.cc FILE: ../../../third_party/boringssl/src/include/openssl/blake2.h FILE: ../../../third_party/boringssl/src/ssl/encrypted_client_hello.cc FILE: ../../../third_party/boringssl/src/tool/generate_ech.cc -FILE: ../../../third_party/boringssl/src/util/fetch_ech_config_list.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/hkdf.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/subprocess/xts.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/testmodulewrapper/cts_test.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/testmodulewrapper/hmac_drbg.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/testmodulewrapper/hmac_drbg_test.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/testmodulewrapper/testmodulewrapper.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/modulewrapper/main.cc -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/modulewrapper/modulewrapper.h ---------------------------------------------------------------------------------------------------- Copyright (c) 2021, Google Inc. @@ -14091,13 +39892,53 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ==================================================================================================== LIBRARY: dart -ORIGIN: ../../../third_party/dart/runtime/bin/abstract_socket_test.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/analyze_snapshot.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/platform_macos_cocoa.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/platform_macos_cocoa.mm + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/socket_base_posix.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/utils.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/virtual_memory.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/virtual_memory_fuchsia.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/virtual_memory_posix.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/virtual_memory_win.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/include/analyze_snapshot_api.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/analyze_snapshot_api_impl.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/code_patcher_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/il_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/compiler_timings.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/compiler_timings.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/ffi/range.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/stub_code_compiler_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpu_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/cpu_riscv.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/debugger_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/instructions_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/instructions_riscv.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/message_snapshot.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/message_snapshot.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/object_graph_copy.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/object_graph_copy.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/pending_deopts.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/pending_deopts.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/runtime_entry_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/stack_frame_riscv.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/thread_interrupter_android_arm.S + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/virtual_memory_compressed.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/virtual_memory_compressed.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/dart2js_runtime_metrics.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/late_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/ffi_allocation_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/enum.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/ffi/abi.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/ffi/abi_specific.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/ffi/allocation.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/ffi/union.dart + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/bin/abstract_socket_test.cc FILE: ../../../third_party/dart/runtime/bin/analyze_snapshot.cc FILE: ../../../third_party/dart/runtime/bin/platform_macos_cocoa.h FILE: ../../../third_party/dart/runtime/bin/platform_macos_cocoa.mm -FILE: ../../../third_party/dart/runtime/bin/secure_socket_utils_test.cc FILE: ../../../third_party/dart/runtime/bin/socket_base_posix.cc FILE: ../../../third_party/dart/runtime/bin/utils.cc FILE: ../../../third_party/dart/runtime/bin/virtual_memory.h @@ -14107,37 +39948,29 @@ FILE: ../../../third_party/dart/runtime/bin/virtual_memory_win.cc FILE: ../../../third_party/dart/runtime/include/analyze_snapshot_api.h FILE: ../../../third_party/dart/runtime/vm/analyze_snapshot_api_impl.cc FILE: ../../../third_party/dart/runtime/vm/code_patcher_riscv.cc -FILE: ../../../third_party/dart/runtime/vm/code_patcher_riscv_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier_riscv.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/asm_intrinsifier_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_riscv.cc FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_riscv.cc FILE: ../../../third_party/dart/runtime/vm/compiler/compiler_timings.cc FILE: ../../../third_party/dart/runtime/vm/compiler/compiler_timings.h FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/range.h -FILE: ../../../third_party/dart/runtime/vm/compiler/relocation_test.cc FILE: ../../../third_party/dart/runtime/vm/compiler/stub_code_compiler_riscv.cc FILE: ../../../third_party/dart/runtime/vm/cpu_riscv.cc FILE: ../../../third_party/dart/runtime/vm/cpu_riscv.h FILE: ../../../third_party/dart/runtime/vm/debugger_riscv.cc -FILE: ../../../third_party/dart/runtime/vm/heap/safepoint_test.cc FILE: ../../../third_party/dart/runtime/vm/instructions_riscv.cc FILE: ../../../third_party/dart/runtime/vm/instructions_riscv.h -FILE: ../../../third_party/dart/runtime/vm/instructions_riscv_test.cc FILE: ../../../third_party/dart/runtime/vm/message_snapshot.cc FILE: ../../../third_party/dart/runtime/vm/message_snapshot.h FILE: ../../../third_party/dart/runtime/vm/object_graph_copy.cc FILE: ../../../third_party/dart/runtime/vm/object_graph_copy.h -FILE: ../../../third_party/dart/runtime/vm/object_riscv_test.cc FILE: ../../../third_party/dart/runtime/vm/pending_deopts.cc FILE: ../../../third_party/dart/runtime/vm/pending_deopts.h FILE: ../../../third_party/dart/runtime/vm/runtime_entry_riscv.cc FILE: ../../../third_party/dart/runtime/vm/stack_frame_riscv.h -FILE: ../../../third_party/dart/runtime/vm/stub_code_riscv_test.cc FILE: ../../../third_party/dart/runtime/vm/thread_interrupter_android_arm.S FILE: ../../../third_party/dart/runtime/vm/virtual_memory_compressed.cc FILE: ../../../third_party/dart/runtime/vm/virtual_memory_compressed.h -FILE: ../../../third_party/dart/samples/ffi/resource_management/utf8_helpers.dart FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/dart2js_runtime_metrics.dart FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/late_helper.dart FILE: ../../../third_party/dart/sdk/lib/_internal/vm/lib/ffi_allocation_patch.dart @@ -14179,7 +40012,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: glfw ORIGIN: ../../../third_party/glfw/src/posix_poll.c -TYPE: LicenseType.zlib +ORIGIN: ../../../third_party/glfw/src/posix_poll.h +TYPE: LicenseType.unknown FILE: ../../../third_party/glfw/src/posix_poll.c FILE: ../../../third_party/glfw/src/posix_poll.h ---------------------------------------------------------------------------------------------------- @@ -14242,9 +40076,92 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: dart -ORIGIN: ../../../third_party/dart/runtime/bin/snapshot_utils_test.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/test_utils.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/test_utils.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/thread_absl.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/bin/thread_absl.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/lib/integers.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/mach_o.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/platform/pe.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/heapsnapshot/bin/download.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/heapsnapshot/bin/explore.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/heapsnapshot/lib/heapsnapshot.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/heapsnapshot/lib/src/analysis.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/heapsnapshot/lib/src/cli.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/heapsnapshot/lib/src/completion.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/heapsnapshot/lib/src/console.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/heapsnapshot/lib/src/expression.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/heapsnapshot/lib/src/format.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/heapsnapshot/lib/src/intset.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/tools/heapsnapshot/lib/src/load.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/il_serializer.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/compiler/backend/il_serializer.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/gc_shared.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/gc_shared.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/page.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/page.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/sampler.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/heap/sampler.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/instructions.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/malloc_hooks_riscv.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread_absl.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/os_thread_absl.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/simulator_x64.cc + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/runtime/vm/simulator_x64.h + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_http/http_testing.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/js_names.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_dev_runtime/private/runtime_metrics.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/synced/load_library_priority.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_shared/lib/js_util_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/js_shared/lib/synced/embedded_names.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/ffi_native_finalizer_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/finalizer_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/hash_factories.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/vm/lib/record_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/async_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/bool.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/class_id.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/convert_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/core_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/date_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/developer.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/double.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/errors_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/expando_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/function.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/growable_list.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/hash_factories.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/identical_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/int.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/internal_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/isolate_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/js_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/js_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/js_util_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/list.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/math_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/named_parameters.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/object_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/print_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/regexp_helper.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/regexp_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/simd_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/stack_trace_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/stopwatch_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/string_buffer_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/string_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/symbol_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/timer_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/type.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/typed_data_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/_internal/wasm/lib/uri_patch.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/core/record.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/ffi/c_type.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/ffi/native_finalizer.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/js/js_wasm.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/js_util/js_util_wasm.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/sdk/lib/wasm/wasm_types.dart + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/bin/snapshot_utils_test.cc FILE: ../../../third_party/dart/runtime/bin/test_utils.cc FILE: ../../../third_party/dart/runtime/bin/test_utils.h FILE: ../../../third_party/dart/runtime/bin/thread_absl.cc @@ -14272,7 +40189,6 @@ FILE: ../../../third_party/dart/runtime/vm/heap/page.h FILE: ../../../third_party/dart/runtime/vm/heap/sampler.cc FILE: ../../../third_party/dart/runtime/vm/heap/sampler.h FILE: ../../../third_party/dart/runtime/vm/instructions.cc -FILE: ../../../third_party/dart/runtime/vm/kernel_test.cc FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_riscv.cc FILE: ../../../third_party/dart/runtime/vm/os_thread_absl.cc FILE: ../../../third_party/dart/runtime/vm/os_thread_absl.h @@ -14332,89 +40248,19 @@ FILE: ../../../third_party/dart/sdk/lib/js/js_wasm.dart FILE: ../../../third_party/dart/sdk/lib/js_util/js_util_wasm.dart FILE: ../../../third_party/dart/sdk/lib/wasm/wasm_types.dart ---------------------------------------------------------------------------------------------------- -Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/i18n/decNumber.h + ../../../third_party/dart/runtime/third_party/double-conversion/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/source/i18n/decNumber.h ----------------------------------------------------------------------------------------------------- -Copyright (c) IBM Corporation, 2000-2010. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/i18n/decContext.h + ../../../third_party/dart/runtime/third_party/double-conversion/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/source/i18n/decContext.h ----------------------------------------------------------------------------------------------------- -Copyright (c) IBM Corporation, 2000-2011. All rights reserved. +Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google Inc. nor the names of its + * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. @@ -14433,107 +40279,91 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/i18n/decContext.cpp + ../../../third_party/dart/runtime/third_party/double-conversion/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/source/i18n/decContext.cpp +ORIGIN: ../../../third_party/icu/source/i18n/decNumber.h (with ../../../third_party/icu/LICENSE) +TYPE: LicenseType.unknown +FILE: ../../../third_party/icu/source/i18n/decNumber.h ---------------------------------------------------------------------------------------------------- -Copyright (c) IBM Corporation, 2000-2012. All rights reserved. +Copyright (c) IBM Corporation, 2000-2010. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +==================================================================================================== - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/decContext.h (with ../../../third_party/icu/LICENSE) +TYPE: LicenseType.unknown +FILE: ../../../third_party/icu/source/i18n/decContext.h +---------------------------------------------------------------------------------------------------- +Copyright (c) IBM Corporation, 2000-2011. All rights reserved. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. ==================================================================================================== ==================================================================================================== LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/i18n/decNumber.cpp + ../../../third_party/dart/runtime/third_party/double-conversion/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/source/i18n/decNumber.cpp +ORIGIN: ../../../third_party/icu/source/i18n/decContext.cpp (with ../../../third_party/icu/LICENSE) +TYPE: LicenseType.unknown +FILE: ../../../third_party/icu/source/i18n/decContext.cpp ---------------------------------------------------------------------------------------------------- -Copyright (c) IBM Corporation, 2000-2014. All rights reserved. +Copyright (c) IBM Corporation, 2000-2012. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +==================================================================================================== - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/decNumber.cpp (with ../../../third_party/icu/LICENSE) +TYPE: LicenseType.unknown +FILE: ../../../third_party/icu/source/i18n/decNumber.cpp +---------------------------------------------------------------------------------------------------- +Copyright (c) IBM Corporation, 2000-2014. All rights reserved. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. ==================================================================================================== ==================================================================================================== LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/i18n/decNumberLocal.h + ../../../third_party/dart/runtime/third_party/double-conversion/COPYING -TYPE: LicenseType.bsd +ORIGIN: ../../../third_party/icu/source/i18n/decNumberLocal.h (with ../../../third_party/icu/LICENSE) +TYPE: LicenseType.unknown FILE: ../../../third_party/icu/source/i18n/decNumberLocal.h ---------------------------------------------------------------------------------------------------- Copyright (c) IBM Corporation, 2000-2016. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +==================================================================================================== - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/ms-use/COPYING +TYPE: LicenseType.mit +FILE: ../../../third_party/harfbuzz/src/ms-use/IndicPositionalCategory-Additional.txt +FILE: ../../../third_party/harfbuzz/src/ms-use/IndicShapingInvalidCluster.txt +FILE: ../../../third_party/harfbuzz/src/ms-use/IndicSyllabicCategory-Additional.txt +---------------------------------------------------------------------------------------------------- +Copyright (c) Microsoft Corporation. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE ==================================================================================================== ==================================================================================================== @@ -14565,113 +40395,9 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. ==================================================================================================== -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.mit -FILE: ../../../third_party/icu/DIR_METADATA -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/cast/brkitr.patch -FILE: ../../../third_party/icu/cast/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat.hash -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/flutter/brkitr.patch -FILE: ../../../third_party/icu/flutter/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_appendable_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_to_case_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/ardatepattern.patch -FILE: ../../../third_party/icu/patches/atomic_template_instantiation.patch -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/configure.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fix-bool-mix-use.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/iso2022jp.patch -FILE: ../../../third_party/icu/patches/isvalidenum.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/restrace.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/uemoji.icu -FILE: ../../../third_party/icu/source/data/in/ulayout.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/tzres/metaZones.res -FILE: ../../../third_party/icu/tzres/timezoneTypes.res -FILE: ../../../third_party/icu/tzres/zoneinfo64.res ----------------------------------------------------------------------------------------------------- -Copyright 1991 by the Massachusetts Institute of Technology -==================================================================================================== - ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/ssl/bio_ssl.cc + ../../../third_party/boringssl/src/LICENSE +ORIGIN: ../../../third_party/boringssl/src/ssl/bio_ssl.cc (with ../../../third_party/boringssl/src/LICENSE) TYPE: LicenseType.unknown FILE: ../../../third_party/boringssl/src/ssl/bio_ssl.cc ---------------------------------------------------------------------------------------------------- @@ -14683,112 +40409,6 @@ in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html ==================================================================================================== -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../third_party/icu/DIR_METADATA -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/cast/brkitr.patch -FILE: ../../../third_party/icu/cast/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat.hash -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/flutter/brkitr.patch -FILE: ../../../third_party/icu/flutter/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_appendable_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_to_case_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/ardatepattern.patch -FILE: ../../../third_party/icu/patches/atomic_template_instantiation.patch -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/configure.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fix-bool-mix-use.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/iso2022jp.patch -FILE: ../../../third_party/icu/patches/isvalidenum.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/restrace.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/uemoji.icu -FILE: ../../../third_party/icu/source/data/in/ulayout.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/tzres/metaZones.res -FILE: ../../../third_party/icu/tzres/timezoneTypes.res -FILE: ../../../third_party/icu/tzres/zoneinfo64.res ----------------------------------------------------------------------------------------------------- -Copyright 1996 Chih-Hao Tsai @ Beckman Institute, - University of Illinois -c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 -==================================================================================================== - ==================================================================================================== LIBRARY: freetype2 ORIGIN: ../../../third_party/freetype2/src/bdf/bdf.h @@ -14849,6 +40469,7 @@ THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== LIBRARY: freetype2 ORIGIN: ../../../third_party/freetype2/include/freetype/internal/fthash.h +ORIGIN: ../../../third_party/freetype2/src/base/fthash.c TYPE: LicenseType.mit FILE: ../../../third_party/freetype2/include/freetype/internal/fthash.h FILE: ../../../third_party/freetype2/src/base/fthash.c @@ -14876,179 +40497,6 @@ OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../third_party/icu/DIR_METADATA -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/cast/brkitr.patch -FILE: ../../../third_party/icu/cast/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat.hash -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/flutter/brkitr.patch -FILE: ../../../third_party/icu/flutter/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_appendable_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_to_case_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/ardatepattern.patch -FILE: ../../../third_party/icu/patches/atomic_template_instantiation.patch -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/configure.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fix-bool-mix-use.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/iso2022jp.patch -FILE: ../../../third_party/icu/patches/isvalidenum.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/restrace.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/uemoji.icu -FILE: ../../../third_party/icu/source/data/in/ulayout.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/tzres/metaZones.res -FILE: ../../../third_party/icu/tzres/timezoneTypes.res -FILE: ../../../third_party/icu/tzres/zoneinfo64.res ----------------------------------------------------------------------------------------------------- -Copyright 2000, 2001, 2002, 2003 Nara Institute of Science -and Technology. All Rights Reserved. - -Use, reproduction, and distribution of this software is permitted. -Any copy of this software, whether in its original form or modified, -must include both the above copyright notice and the following -paragraphs. - -Nara Institute of Science and Technology (NAIST), -the copyright holders, disclaims all warranties with regard to this -software, including all implied warranties of merchantability and -fitness, in no event shall NAIST be liable for -any special, indirect or consequential damages or any damages -whatsoever resulting from loss of use, data or profits, whether in an -action of contract, negligence or other tortuous action, arising out -of or in connection with the use or performance of this software. - -A large portion of the dictionary entries -originate from ICOT Free Software. The following conditions for ICOT -Free Software applies to the current dictionary as well. - -Each User may also freely distribute the Program, whether in its -original form or modified, to any third party or parties, PROVIDED -that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear -on, or be attached to, the Program, which is distributed substantially -in the same form as set out herein and that such intended -distribution, if actually made, will neither violate or otherwise -contravene any of the laws and regulations of the countries having -jurisdiction over the User or the intended distribution itself. - -NO WARRANTY - -The program was produced on an experimental basis in the course of the -research and development conducted during the project and is provided -to users as so produced on an experimental basis. Accordingly, the -program is provided without any warranty whatsoever, whether express, -implied, statutory or otherwise. The term "warranty" used herein -includes, but is not limited to, any warranty of the quality, -performance, merchantability and fitness for a particular purpose of -the program and the nonexistence of any infringement or violation of -any right of any third party. - -Each user of the program will agree and understand, and be deemed to -have agreed and understood, that there is no warranty whatsoever for -the program and, accordingly, the entire risk arising from or -otherwise connected with the program is assumed by the user. - -Therefore, neither ICOT, the copyright holder, or any other -organization that participated in or was otherwise related to the -development of the program and their respective officials, directors, -officers and other employees shall be held liable for any and all -damages, including, without limitation, general, special, incidental -and consequential damages, arising out of or otherwise in connection -with the use or inability to use the program or any product, material -or result produced or otherwise obtained by using the program, -regardless of whether they have been advised of, or otherwise had -knowledge of, the possibility of such damages at any time during the -project or thereafter. Each user will be deemed to have agreed to the -foregoing by his or her commencement of use of the program. The term -"use" as used herein includes, but is not limited to, the use, -modification, copying and distribution of the program and the -production of secondary products from the program. - -In the case where the program, whether in its original form or -modified, was distributed or delivered to or received by a user from -any person, organization or entity other than ICOT, unless it makes or -grants independently of ICOT any specific warranty to the user in -writing, such person, organization or entity, will also be exempted -from and not be held liable to the user for any such damages as noted -above as far as the program is concerned. -==================================================================================================== - ==================================================================================================== LIBRARY: freetype2 ORIGIN: ../../../third_party/freetype2/src/pcf/pcfutil.h @@ -15163,16 +40611,54 @@ THE SOFTWARE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_ocsp.c + ../../../third_party/boringssl/src/LICENSE +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_ocsp.c (with ../../../third_party/boringssl/src/LICENSE) TYPE: LicenseType.unknown FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_ocsp.c ---------------------------------------------------------------------------------------------------- Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/stringpiece.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/unicode/stringpiece.h +---------------------------------------------------------------------------------------------------- +Copyright 2001 and onwards Google Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== @@ -15204,63 +40690,51 @@ THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c + ../../../third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdh/ecdh.c -FILE: ../../../third_party/boringssl/src/include/openssl/ecdh.h +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/scrypt_tests.txt (with ../../../third_party/boringssl/src/LICENSE) +TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/src/crypto/evp/scrypt_tests.txt ---------------------------------------------------------------------------------------------------- -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +Copyright 2001-2017 The OpenSSL Project Authors. All Rights Reserved. -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +==================================================================================================== -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/internal.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/bn.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/internal.h +FILE: ../../../third_party/boringssl/src/include/openssl/bn.h +---------------------------------------------------------------------------------------------------- +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +Portions of the attached software ("Contribution") are developed by +SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +The Contribution is licensed pursuant to the Eric Young open source +license provided above. ==================================================================================================== ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec.c + ../../../third_party/boringssl/src/crypto/fipsmodule/bn/exponentiation.c -TYPE: LicenseType.bsd +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_key.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_montgomery.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/internal.h +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/oct.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/simple.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/wnaf.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ec.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ec_key.h +ORIGIN: ../../../third_party/boringssl/src/include/openssl/tls1.h +ORIGIN: ../../../third_party/boringssl/src/ssl/handshake_client.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/handshake_server.cc +ORIGIN: ../../../third_party/boringssl/src/ssl/s3_lib.cc +TYPE: LicenseType.unknown FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_key.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_montgomery.c @@ -15270,6 +40744,29 @@ FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/simple.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/wnaf.c FILE: ../../../third_party/boringssl/src/include/openssl/ec.h FILE: ../../../third_party/boringssl/src/include/openssl/ec_key.h +FILE: ../../../third_party/boringssl/src/include/openssl/tls1.h +FILE: ../../../third_party/boringssl/src/ssl/handshake_client.cc +FILE: ../../../third_party/boringssl/src/ssl/handshake_server.cc +FILE: ../../../third_party/boringssl/src/ssl/s3_lib.cc +---------------------------------------------------------------------------------------------------- +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + +Portions of the attached software ("Contribution") are developed by +SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. + +The Contribution is licensed pursuant to the OpenSSL open source +license provided above. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c + ../../../third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdh/ecdh.c + ../../../third_party/boringssl/src/crypto/fipsmodule/ecdh/ecdh.c +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ecdh.h + ../../../third_party/boringssl/src/include/openssl/ecdh.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/ecdh_extra/ecdh_extra.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdh/ecdh.c +FILE: ../../../third_party/boringssl/src/include/openssl/ecdh.h ---------------------------------------------------------------------------------------------------- Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. @@ -15288,12 +40785,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -15302,7 +40799,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -15318,12 +40815,205 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ssl.h (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ssl3.h (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/handshake.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/internal.h (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/s3_both.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_cert.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_cipher.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_lib.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_x509.cc (with ../../../third_party/boringssl/src/LICENSE) +TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/src/include/openssl/ssl.h +FILE: ../../../third_party/boringssl/src/include/openssl/ssl3.h +FILE: ../../../third_party/boringssl/src/ssl/handshake.cc +FILE: ../../../third_party/boringssl/src/ssl/internal.h +FILE: ../../../third_party/boringssl/src/ssl/s3_both.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_cert.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_cipher.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_lib.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_x509.cc +---------------------------------------------------------------------------------------------------- +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +ECC cipher suite support in OpenSSL originally developed by +SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/include/openssl/x509.h (with ../../../third_party/boringssl/src/LICENSE) +TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/src/include/openssl/x509.h +---------------------------------------------------------------------------------------------------- +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +ECDH support in OpenSSL originally developed by +SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. +==================================================================================================== + ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/include/GLSLANG/ShaderLang.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/angleutils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/debug.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/debug.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/mathutil.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/utilities.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/utilities.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/preprocessor.l + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ASTMetadataHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ASTMetadataHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/BaseTypes.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/BuiltInFunctionEmulator.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/BuiltInFunctionEmulatorGLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/CallDAG.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/CallDAG.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/CollectVariables.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/CollectVariables.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Common.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Compiler.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Compiler.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ConstantUnion.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ExtensionBehavior.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/HashNames.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/InfoSink.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/InfoSink.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Initialize.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Initialize.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/InitializeDll.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/InitializeDll.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/InitializeGlobals.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/IntermNode.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/IntermNode.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Operator.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputESSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputESSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputGLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputGLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputGLSLBase.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputGLSLBase.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputTree.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ParseContext.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ParseContext.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/PoolAlloc.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/PoolAlloc.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/QualifierTypes.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/QualifierTypes.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ShaderLang.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/SymbolTable.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/SymbolTable.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorESSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorESSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorGLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorGLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/TranslatorMetalUtils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/TranslatorMetalUtils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Types.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Types.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateGlobalInitializer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateGlobalInitializer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateLimitations.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateSwitch.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateSwitch.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateVaryingLocations.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateVaryingLocations.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/VariablePacker.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/VariablePacker.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/VersionGLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/VersionGLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/glslang.l + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/glslang.y + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/EmulateGLFragColorBroadcast.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/EmulateGLFragColorBroadcast.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/InitializeVariables.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/InitializeVariables.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/PruneNoOps.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/PruneNoOps.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RecordConstantPrecision.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RecordConstantPrecision.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RemoveDynamicIndexing.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RemoveDynamicIndexing.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/ScalarizeVecAndMatConstructorArgs.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/ScalarizeVecAndMatConstructorArgs.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/SeparateDeclarations.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/SeparateDeclarations.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/apple/UnfoldShortCircuitAST.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/apple/UnfoldShortCircuitAST.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/ArrayReturnValueToOutParameter.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/ArrayReturnValueToOutParameter.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/RemoveSwitchFallThrough.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/RemoveSwitchFallThrough.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/SeparateArrayInitialization.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/SeparateArrayInitialization.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/SeparateExpressionsReturningArrays.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/SeparateExpressionsReturningArrays.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/UnfoldShortCircuitToIf.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/UnfoldShortCircuitToIf.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/gl/RegenerateStructNames.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/gl/RegenerateStructNames.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/IntermTraverse.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/NodeSearch.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/util.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/image_util/generatemip.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Buffer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Buffer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Config.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Config.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Display.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Display.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/EGLSync.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Fence.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Fence.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Framebuffer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Framebuffer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/HandleAllocator.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/HandleAllocator.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Program.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Program.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/RefCountObject.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Renderbuffer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Renderbuffer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/ResourceManager.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/ResourceManager.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Shader.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Shader.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Surface.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Surface.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Texture.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Texture.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/SurfaceImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/ImageD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/ImageD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/IndexBuffer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/IndexBuffer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/IndexDataManager.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/IndexDataManager.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/TextureStorage.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/VertexBuffer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/VertexBuffer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/VertexDataManager.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/VertexDataManager.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Blit9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Blit9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Image9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Image9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/IndexBuffer9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/IndexBuffer9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/VertexBuffer9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/VertexBuffer9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/renderer9_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/renderer9_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/vertexconversion.h + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/include/GLSLANG/ShaderLang.h -FILE: ../../../third_party/angle/samples/shader_translator/shader_translator.cpp FILE: ../../../third_party/angle/src/common/angleutils.h FILE: ../../../third_party/angle/src/common/debug.cpp FILE: ../../../third_party/angle/src/common/debug.h @@ -15542,12 +41232,75 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/stringpiece.cpp + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/stringpiece.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2004 and onwards Google Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== + ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_asn1.cc +ORIGIN: ../../../third_party/boringssl/src/include/openssl/ssl.h (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/include/openssl/tls1.h (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/handshake_client.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/handshake_server.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/internal.h (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/s3_lib.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_asn1.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_cipher.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_lib.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_session.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_stat.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_transcript.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/ssl_x509.cc (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/ssl/t1_enc.cc (with ../../../third_party/boringssl/src/LICENSE) TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/src/include/openssl/ssl.h +FILE: ../../../third_party/boringssl/src/include/openssl/tls1.h +FILE: ../../../third_party/boringssl/src/ssl/handshake_client.cc +FILE: ../../../third_party/boringssl/src/ssl/handshake_server.cc +FILE: ../../../third_party/boringssl/src/ssl/internal.h +FILE: ../../../third_party/boringssl/src/ssl/s3_lib.cc FILE: ../../../third_party/boringssl/src/ssl/ssl_asn1.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_cipher.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_lib.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_session.cc FILE: ../../../third_party/boringssl/src/ssl/ssl_stat.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_transcript.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_x509.cc +FILE: ../../../third_party/boringssl/src/ssl/t1_enc.cc ---------------------------------------------------------------------------------------------------- Copyright 2005 Nokia. All rights reserved. @@ -15575,450 +41328,30 @@ OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR OTHERWISE. ==================================================================================================== -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/gtest-death-test-internal.h -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/gtest-death-test.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/gtest-message.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/gtest.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/gtest-death-test-internal.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/gtest-internal.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/gtest-port.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/gtest-string.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample1.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample1.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample1_unittest.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample2.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample2.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample2_unittest.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample3-inl.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample3_unittest.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample4.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample4.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample4_unittest.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample5_unittest.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/src/gtest-death-test.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/src/gtest-internal-inl.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/src/gtest.cc ----------------------------------------------------------------------------------------------------- -Copyright 2005, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/gtest_pred_impl.h -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/gtest_pred_impl.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/gtest_prod.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/src/gtest_main.cc ----------------------------------------------------------------------------------------------------- -Copyright 2006, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - ==================================================================================================== LIBRARY: double-conversion LIBRARY: icu ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/cached-powers.cc +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-cached-powers.cpp TYPE: LicenseType.bsd FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/cached-powers.cc FILE: ../../../third_party/icu/source/i18n/double-conversion-cached-powers.cpp ---------------------------------------------------------------------------------------------------- -Copyright 2006-2008 the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/DIR_METADATA -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/cast/brkitr.patch -FILE: ../../../third_party/icu/cast/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat.hash -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/flutter/brkitr.patch -FILE: ../../../third_party/icu/flutter/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_appendable_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_to_case_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/ardatepattern.patch -FILE: ../../../third_party/icu/patches/atomic_template_instantiation.patch -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/configure.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fix-bool-mix-use.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/iso2022jp.patch -FILE: ../../../third_party/icu/patches/isvalidenum.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/restrace.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/uemoji.icu -FILE: ../../../third_party/icu/source/data/in/ulayout.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/tzres/metaZones.res -FILE: ../../../third_party/icu/tzres/timezoneTypes.res -FILE: ../../../third_party/icu/tzres/zoneinfo64.res ----------------------------------------------------------------------------------------------------- -Copyright 2006-2011, the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_print.c + ../../../third_party/boringssl/src/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_print.c ----------------------------------------------------------------------------------------------------- -Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html -==================================================================================================== - -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/gtest-matchers.h -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/gtest-matchers.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/gtest-printers.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/gtest-spi.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/src/gtest-matchers.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/src/gtest-printers.cc ----------------------------------------------------------------------------------------------------- -Copyright 2007, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha256-armv4.S + ../../../third_party/boringssl/src/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha256-armv4.S -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha512-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha256-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha512-armv4.S ----------------------------------------------------------------------------------------------------- -Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html -==================================================================================================== - -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/gtest-param-util.h -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/gtest-typed-test.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/gtest-param-util.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/gtest-type-util.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/prime_tables.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample6_unittest.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample7_unittest.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample8_unittest.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/src/gtest-typed-test.cc ----------------------------------------------------------------------------------------------------- -Copyright 2008 Google Inc. -All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/third_party/googletest/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/third_party/googletest/CONTRIBUTORS -FILE: ../../../third_party/boringssl/src/third_party/googletest/METADATA -FILE: ../../../third_party/boringssl/src/third_party/googletest/cmake/Config.cmake.in -FILE: ../../../third_party/boringssl/src/third_party/googletest/cmake/gtest.pc.in -FILE: ../../../third_party/boringssl/src/third_party/googletest/cmake/gtest_main.pc.in -FILE: ../../../third_party/boringssl/src/third_party/googletest/cmake/libgtest.la.in -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/gtest-param-test.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/gtest-test-part.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/gtest-filepath.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/src/gtest-all.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/src/gtest-filepath.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/src/gtest-port.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/src/gtest-test-part.cc ----------------------------------------------------------------------------------------------------- -Copyright 2008, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/third_party/googletest/samples/sample10_unittest.cc -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample10_unittest.cc -FILE: ../../../third_party/boringssl/src/third_party/googletest/samples/sample9_unittest.cc ----------------------------------------------------------------------------------------------------- -Copyright 2009 Google Inc. All Rights Reserved. +Copyright 2006-2008 the V8 project authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. + notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT @@ -16034,334 +41367,158 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolext-mmx.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jcolsamp.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdct.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctflt-3dn.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctflt-sse.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-3dn.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-sse.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctred-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctred-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jquant-3dn.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jquant-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jquant-sse.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jquantf-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jquanti-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcpu.asm +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_print.c (with ../../../third_party/boringssl/src/LICENSE) +TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_print.c ---------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/jsimddct.h + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/jsimddct.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/bytestream.cpp + ../../../third_party/icu/LICENSE +ORIGIN: ../../../third_party/icu/source/common/unicode/bytestream.h + ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/common/bytestream.cpp +FILE: ../../../third_party/icu/source/common/unicode/bytestream.h ---------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB +Copyright 2007 Google Inc. All Rights Reserved. -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +==================================================================================================== -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha256-armv4.S (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha512-armv4.S (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha256-armv4.S (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha512-armv4.S (with ../../../third_party/boringssl/src/LICENSE) +TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha256-armv4.S +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha512-armv4.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha256-armv4.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha512-armv4.S +---------------------------------------------------------------------------------------------------- +Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html ==================================================================================================== ==================================================================================================== LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolor-mmx.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimdext.inc TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/jsimd.h +FILE: ../../../third_party/libjpeg-turbo/jsimd_none.c +FILE: ../../../third_party/libjpeg-turbo/jsimddct.h +FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2.asm FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jchuff-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jchuff-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcolsamp.inc +FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-mmx.asm FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2.asm FILE: ../../../third_party/libjpeg-turbo/simd/jdcolor-mmx.asm FILE: ../../../third_party/libjpeg-turbo/simd/jdcolor-sse2-64.asm FILE: ../../../third_party/libjpeg-turbo/simd/jdcolor-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdct.inc FILE: ../../../third_party/libjpeg-turbo/simd/jdmerge-mmx.asm FILE: ../../../third_party/libjpeg-turbo/simd/jdmerge-sse2-64.asm FILE: ../../../third_party/libjpeg-turbo/simd/jdmerge-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-mmx.asm FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctflt-3dn.asm FILE: ../../../third_party/libjpeg-turbo/simd/jfdctflt-sse-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctflt-sse.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-mmx.asm FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-mmx.asm FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-3dn.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-sse.asm FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-mmx.asm FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-mmx.asm FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctred-mmx.asm FILE: ../../../third_party/libjpeg-turbo/simd/jidctred-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctred-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jquant-3dn.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jquant-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jquant-sse.asm FILE: ../../../third_party/libjpeg-turbo/simd/jquantf-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jquantf-sse2.asm FILE: ../../../third_party/libjpeg-turbo/simd/jquanti-sse2-64.asm ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_i386.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_i386.c ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_arm.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jquanti-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd.h FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm.c FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm64.c ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. -Copyright (C) 2015-2016, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_x86_64.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_x86_64.c ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014, 2016, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_mips.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_i386.c FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_mips.c ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014, D. R. Commander. -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/jsimd_none.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/jsimd_none.c ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_powerpc.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_powerpc.c ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014-2015, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/jconfig.h -FILE: ../../../third_party/libjpeg-turbo/jconfig.h.in -FILE: ../../../third_party/libjpeg-turbo/jconfigint.h -FILE: ../../../third_party/libjpeg-turbo/jconfigint.h.in -FILE: ../../../third_party/libjpeg-turbo/jpeg_nbits_table.h -FILE: ../../../third_party/libjpeg-turbo/libjpeg.map.in -FILE: ../../../third_party/libjpeg-turbo/simd/jpeg_nbits_table.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc.h +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_x86_64.c +FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcpu.asm FILE: ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile -FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile.jni ---------------------------------------------------------------------------------------------------- Copyright 2009 Pierre Ossman for Cendio AB Copyright (C) 2010, D. R. Commander. @@ -16387,161 +41544,22 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. ==================================================================================================== -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/jsimd.h + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/jsimd.h ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2011, 2014, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd.h + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd.h ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2011, 2014-2016, D. R. Commander. -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -Copyright (C) 2014, Linaro Limited. -Copyright (C) 2015-2016, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jcgray-mmx.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-mmx.asm ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2011, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2-64.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-sse2-64.asm ----------------------------------------------------------------------------------------------------- -Copyright 2009, 2012 Pierre Ossman for Cendio AB -Copyright (C) 2009, 2012, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-sse2.asm ----------------------------------------------------------------------------------------------------- -Copyright 2009, 2012 Pierre Ossman for Cendio AB -Copyright (C) 2012, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - ==================================================================================================== LIBRARY: libwebp ORIGIN: ../../../third_party/libwebp/src/dec/frame_dec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/quant_dec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/tree_dec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/vp8_dec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/vp8_dec.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/vp8i_dec.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/webp_dec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/dec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/yuv.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/yuv.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/bit_reader_utils.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/bit_reader_utils.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/webp/decode.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/webp/types.h + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd FILE: ../../../third_party/libwebp/src/dec/frame_dec.c FILE: ../../../third_party/libwebp/src/dec/quant_dec.c @@ -16592,6 +41610,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateLimitations.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/glslang.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/util.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Uniform.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Uniform.h + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/compiler/translator/ValidateLimitations.h FILE: ../../../third_party/angle/src/compiler/translator/glslang.h @@ -16636,6 +41658,31 @@ POSSIBILITY OF SUCH DAMAGE. LIBRARY: double-conversion LIBRARY: icu ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum-dtoa.cc +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum-dtoa.h +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum.cc +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum.h +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/cached-powers.h +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/diy-fp.cc +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/diy-fp.h +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/double-conversion.cc +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/fast-dtoa.h +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/fixed-dtoa.cc +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/fixed-dtoa.h +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/strtod.cc +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/strtod.h +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/utils.h +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-bignum-dtoa.cpp +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-bignum-dtoa.h +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-bignum.cpp +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-bignum.h +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-cached-powers.h +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-diy-fp.h +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-double-to-string.cpp +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-fast-dtoa.h +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-string-to-double.cpp +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-strtod.cpp +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-strtod.h +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-utils.h TYPE: LicenseType.bsd FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum-dtoa.cc FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum-dtoa.h @@ -16665,6 +41712,7 @@ FILE: ../../../third_party/icu/source/i18n/double-conversion-strtod.h FILE: ../../../third_party/icu/source/i18n/double-conversion-utils.h ---------------------------------------------------------------------------------------------------- Copyright 2010 the V8 project authors. All rights reserved. + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -16695,6 +41743,51 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: libwebp ORIGIN: ../../../third_party/libwebp/src/dec/alpha_dec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/buffer_dec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/idec_dec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/io_dec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/webpi_dec.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/cpu.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/dec_sse2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/dsp.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/enc_sse2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/filters.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/upsampling.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/upsampling_neon.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/upsampling_sse2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/upsampling_sse41.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/alpha_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/analysis_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/config_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/cost_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/cost_enc.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/filter_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/frame_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/iterator_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/picture_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/quant_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/syntax_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/token_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/tree_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/vp8i_enc.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/webp_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/mux/muxedit.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/mux/muxi.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/mux/muxinternal.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/mux/muxread.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/bit_writer_utils.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/bit_writer_utils.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/filters_utils.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/filters_utils.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/huffman_encode_utils.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/huffman_encode_utils.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/quant_levels_utils.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/quant_levels_utils.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/thread_utils.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/thread_utils.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/webp/encode.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/webp/mux.h + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd FILE: ../../../third_party/libwebp/src/dec/alpha_dec.c FILE: ../../../third_party/libwebp/src/dec/buffer_dec.c @@ -16777,6 +41870,17 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/DirectiveParser.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/Input.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/Input.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/Macro.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/MacroExpander.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/Preprocessor.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/Preprocessor.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/Token.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/Token.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/BuiltInFunctionEmulator.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/BuiltInFunctionEmulatorGLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/length_limits.h + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/compiler/preprocessor/DirectiveParser.cpp FILE: ../../../third_party/angle/src/compiler/preprocessor/Input.cpp @@ -16827,6 +41931,38 @@ POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: libwebp ORIGIN: ../../../third_party/libwebp/imageio/jpegdec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/jpegdec.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/metadata.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/metadata.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/pngdec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/pngdec.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/tiffdec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/tiffdec.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/vp8l_dec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/vp8li_dec.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/demux/demux.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/dec_neon.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/enc_neon.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless_common.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/backward_references_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/backward_references_enc.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/histogram_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/histogram_enc.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/vp8l_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/vp8li_enc.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/color_cache_utils.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/color_cache_utils.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/huffman_utils.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/huffman_utils.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/rescaler_utils.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/rescaler_utils.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/utils.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/utils.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/webp/demux.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/webp/format_constants.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/webp/mux_types.h + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd FILE: ../../../third_party/libwebp/imageio/jpegdec.c FILE: ../../../third_party/libwebp/imageio/jpegdec.h @@ -16896,6 +42032,75 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/src/common/Float16ToFloat32.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/event_tracer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/event_tracer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/DiagnosticsBase.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/DiagnosticsBase.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/DirectiveHandlerBase.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/DirectiveHandlerBase.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/DirectiveParser.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/ExpressionParser.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/Lexer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/Lexer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/Macro.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/MacroExpander.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/SourceLocation.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/Tokenizer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/numeric_lex.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/preprocessor.y + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Diagnostics.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Diagnostics.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/DirectiveHandler.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/DirectiveHandler.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Pragma.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/BinaryStream.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Query.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Query.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/angletypes.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/angletypes.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/RenderTargetD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/RenderTargetD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/ShaderExecutableD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/ShaderExecutableD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/SwapChainD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Image11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Image11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/IndexBuffer11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/IndexBuffer11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/InputLayoutCache.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/InputLayoutCache.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/RenderStateCache.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/RenderStateCache.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/RenderTarget11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/RenderTarget11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Renderer11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Renderer11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/ShaderExecutable11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/ShaderExecutable11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/SwapChain11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/SwapChain11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/TextureStorage11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/TextureStorage11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/VertexBuffer11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/renderer11_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/renderer11_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/RenderTarget9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/RenderTarget9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Renderer9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Renderer9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/ShaderCache.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/ShaderExecutable9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/ShaderExecutable9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/SwapChain9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/SwapChain9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/TextureStorage9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/TextureStorage9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/VertexDeclarationCache.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/VertexDeclarationCache.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/shaders/Blit.ps + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/shaders/Blit.vs + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/renderergl_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/renderergl_utils.h + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/common/Float16ToFloat32.cpp FILE: ../../../third_party/angle/src/common/event_tracer.cpp @@ -17005,6 +42210,13 @@ POSSIBILITY OF SUCH DAMAGE. LIBRARY: double-conversion LIBRARY: icu ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/double-conversion.h +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/fast-dtoa.cc +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/ieee.h +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-double-to-string.h +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-fast-dtoa.cpp +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-ieee.h +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion-string-to-double.h +ORIGIN: ../../../third_party/icu/source/i18n/double-conversion.h TYPE: LicenseType.bsd FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/double-conversion.h FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/fast-dtoa.cc @@ -17016,6 +42228,7 @@ FILE: ../../../third_party/icu/source/i18n/double-conversion-string-to-double.h FILE: ../../../third_party/icu/source/i18n/double-conversion.h ---------------------------------------------------------------------------------------------------- Copyright 2012 the V8 project authors. All rights reserved. + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -17047,44 +42260,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. LIBRARY: dart ORIGIN: ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/.gitconfig -FILE: ../../../third_party/dart/.style.yapf -FILE: ../../../third_party/dart/.vpython -FILE: ../../../third_party/dart/PATENT_GRANT -FILE: ../../../third_party/dart/runtime/.clang-tidy -FILE: ../../../third_party/dart/runtime/CPPLINT.cfg -FILE: ../../../third_party/dart/runtime/bin/ffi_test/clobber_arm.S -FILE: ../../../third_party/dart/runtime/bin/ffi_test/clobber_arm64.S -FILE: ../../../third_party/dart/runtime/bin/ffi_test/clobber_riscv32.S -FILE: ../../../third_party/dart/runtime/bin/ffi_test/clobber_riscv64.S -FILE: ../../../third_party/dart/runtime/bin/ffi_test/clobber_x64.S -FILE: ../../../third_party/dart/runtime/bin/ffi_test/clobber_x64_win.S -FILE: ../../../third_party/dart/runtime/bin/ffi_test/clobber_x86.S -FILE: ../../../third_party/dart/runtime/bin/ffi_test/ffi_test_functions_helpers.S -FILE: ../../../third_party/dart/runtime/docs/compiler/images/catch-block-entry-0.png -FILE: ../../../third_party/dart/runtime/docs/compiler/images/catch-block-entry-1.png -FILE: ../../../third_party/dart/runtime/docs/images/aot-ic-dictionary.png -FILE: ../../../third_party/dart/runtime/docs/images/aot-ic-linear.png -FILE: ../../../third_party/dart/runtime/docs/images/aot-ic-monomorphic.png -FILE: ../../../third_party/dart/runtime/docs/images/aot-ic-singletarget.png -FILE: ../../../third_party/dart/runtime/docs/images/aot-ic-unlinked.png -FILE: ../../../third_party/dart/runtime/docs/images/aot.png -FILE: ../../../third_party/dart/runtime/docs/images/dart-to-kernel.png -FILE: ../../../third_party/dart/runtime/docs/images/flutter-cfe.png -FILE: ../../../third_party/dart/runtime/docs/images/images.graffle!images -FILE: ../../../third_party/dart/runtime/docs/images/inline-cache-1.png -FILE: ../../../third_party/dart/runtime/docs/images/isolates.png -FILE: ../../../third_party/dart/runtime/docs/images/kernel-loaded-1.png -FILE: ../../../third_party/dart/runtime/docs/images/kernel-loaded-2.png -FILE: ../../../third_party/dart/runtime/docs/images/kernel-service.png -FILE: ../../../third_party/dart/runtime/docs/images/optimizing-compilation.png -FILE: ../../../third_party/dart/runtime/docs/images/raw-function-lazy-compile.png -FILE: ../../../third_party/dart/runtime/docs/images/snapshot-appjit.png -FILE: ../../../third_party/dart/runtime/docs/images/snapshot-with-code.png -FILE: ../../../third_party/dart/runtime/docs/images/snapshot.png -FILE: ../../../third_party/dart/runtime/docs/images/unoptimized-compilation.png -FILE: ../../../third_party/dart/runtime/docs/infra/images/isolated-out-browser.png -FILE: ../../../third_party/dart/runtime/docs/infra/images/isolated-out-link.png FILE: ../../../third_party/dart/runtime/observatory/lib/elements.dart FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/img/chromium_icon.png FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/img/dart_icon.png @@ -17105,390 +42280,8 @@ FILE: ../../../third_party/dart/runtime/tools/wiki/styles/style.scss FILE: ../../../third_party/dart/runtime/tools/wiki/templates/includes/auto-refresh.html FILE: ../../../third_party/dart/runtime/tools/wiki/templates/includes/favicon.html FILE: ../../../third_party/dart/runtime/tools/wiki/templates/page.html -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/doublex20/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/floatx20/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/int8x10/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/mixedx20/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress46127/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/regress_fuchsia105336/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct128bytesx1/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct12bytesFloatx6/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesHomogenousx10/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10_2/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10_2/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10_2/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10_2/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10_2/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10_3/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10_3/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10_3/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10_3/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct16bytesMixedx10_3/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct3bytesx10/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesPackedx10/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct8bytesx1/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/structPacked/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_VeryLargeStruct/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatarray/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_floatx4/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8array/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/struct_int8x10/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union16bytesHomogenousx10/x64_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/arm64_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/arm64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/arm64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/arm64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/arm64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/arm_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/arm_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/arm_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/ia32_android.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/ia32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/ia32_win.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/riscv32_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/riscv64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/x64_fuchsia.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/x64_ios.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/x64_linux.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/x64_macos.expect -FILE: ../../../third_party/dart/runtime/vm/compiler/ffi/unit_tests/union5bytesPackedx10/x64_win.expect -FILE: ../../../third_party/dart/samples/ffi/sqlite/docs/lib/scenario-default.svg -FILE: ../../../third_party/dart/samples/ffi/sqlite/docs/lib/scenario-full.svg -FILE: ../../../third_party/dart/sdk/lib/_internal/allowed_experiments.json FILE: ../../../third_party/dart/sdk/lib/html/html_common/conversions_dart2js.dart FILE: ../../../third_party/dart/sdk/lib/html/html_common/html_common.dart -FILE: ../../../third_party/dart/sdk/lib/libraries.json -FILE: ../../../third_party/dart/sdk/lib/vmservice_libraries.json -FILE: ../../../third_party/dart/sdk/version -FILE: ../../../third_party/dart/third_party/clang.tar.gz.sha1 ---------------------------------------------------------------------------------------------------- Copyright 2012, the Dart project authors. @@ -17520,7 +42313,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/bsaes-armv7.S + ../../../third_party/boringssl/src/LICENSE +ORIGIN: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/bsaes-armv7.S (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/bsaes-armv7.S (with ../../../third_party/boringssl/src/LICENSE) TYPE: LicenseType.unknown FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/bsaes-armv7.S FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/bsaes-armv7.S @@ -17536,6 +42330,13 @@ https://www.openssl.org/source/license.html ==================================================================================================== LIBRARY: libwebp ORIGIN: ../../../third_party/libwebp/imageio/wicdec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/wicdec.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/alphai_dec.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/alpha_processing.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/quant_levels_dec_utils.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/quant_levels_dec_utils.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/random_utils.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/random_utils.h + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd FILE: ../../../third_party/libwebp/imageio/wicdec.c FILE: ../../../third_party/libwebp/imageio/wicdec.h @@ -17580,9 +42381,67 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/include/GLSLANG/ShaderVars.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/mathutil.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/CodeGen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/FlagStd140Structs.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/FlagStd140Structs.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateOutputs.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateOutputs.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/blocklayout.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/blocklayout.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/blocklayoutHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/blocklayoutHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo_internal.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo_libpci.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo_linux.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo_win.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo_x11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/image_util/copyimage.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/image_util/copyimage.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/image_util/imageformats.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/image_util/loadimage.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/image_util/loadimage.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/image_util/loadimage_etc.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Constants.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/IndexRangeCache.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/IndexRangeCache.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Sampler.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Sampler.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/VertexArray.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/VertexArray.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/VertexAttribute.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/angletypes.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/formatutils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/formatutils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/QueryImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/copyvertex.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Blit11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Blit11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Clear11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Clear11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Fence11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Fence11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/PixelTransfer11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/PixelTransfer11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Query11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Query11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/VertexBuffer11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/formatutils11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/formatutils11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Fence9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Fence9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Query9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Query9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/formatutils9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/formatutils9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES2.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES3.cpp + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/include/GLSLANG/ShaderVars.h -FILE: ../../../third_party/angle/samples/sample_util/SampleApplication.cpp FILE: ../../../third_party/angle/src/common/mathutil.cpp FILE: ../../../third_party/angle/src/compiler/translator/CodeGen.cpp FILE: ../../../third_party/angle/src/compiler/translator/FlagStd140Structs.cpp @@ -17642,7 +42501,6 @@ FILE: ../../../third_party/angle/src/libANGLE/validationES.cpp FILE: ../../../third_party/angle/src/libANGLE/validationES.h FILE: ../../../third_party/angle/src/libANGLE/validationES2.cpp FILE: ../../../third_party/angle/src/libANGLE/validationES3.cpp -FILE: ../../../third_party/angle/util/EGLWindow.cpp ---------------------------------------------------------------------------------------------------- Copyright 2013 The ANGLE Project Authors. All rights reserved. @@ -17679,7 +42537,8 @@ POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/rsaz_exp.c + ../../../third_party/boringssl/src/LICENSE +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/rsaz_exp.c (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/rsaz_exp.h (with ../../../third_party/boringssl/src/LICENSE) TYPE: LicenseType.unknown FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/rsaz_exp.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/rsaz_exp.h @@ -17693,9 +42552,67 @@ in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html ==================================================================================================== +==================================================================================================== +LIBRARY: angle +ORIGIN: ../../../third_party/angle/include/GLES2/gl2.h + MIT referenced by ../../../third_party/angle/include/GLES2/gl2.h +ORIGIN: ../../../third_party/angle/include/GLES2/gl2ext.h + MIT referenced by ../../../third_party/angle/include/GLES2/gl2ext.h +ORIGIN: ../../../third_party/angle/include/GLES3/gl3.h + MIT referenced by ../../../third_party/angle/include/GLES3/gl3.h +ORIGIN: ../../../third_party/angle/include/GLES3/gl31.h + MIT referenced by ../../../third_party/angle/include/GLES3/gl31.h +ORIGIN: ../../../third_party/angle/include/GLES3/gl32.h + MIT referenced by ../../../third_party/angle/include/GLES3/gl32.h +ORIGIN: ../../../third_party/angle/include/GLX/glxext.h + MIT referenced by ../../../third_party/angle/include/GLX/glxext.h +TYPE: LicenseType.mit +FILE: ../../../third_party/angle/include/GLES2/gl2.h +FILE: ../../../third_party/angle/include/GLES2/gl2ext.h +FILE: ../../../third_party/angle/include/GLES3/gl3.h +FILE: ../../../third_party/angle/include/GLES3/gl31.h +FILE: ../../../third_party/angle/include/GLES3/gl32.h +FILE: ../../../third_party/angle/include/GLX/glxext.h +---------------------------------------------------------------------------------------------------- +Copyright 2013-2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + ==================================================================================================== LIBRARY: libwebp ORIGIN: ../../../third_party/libwebp/imageio/webpdec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/webpdec.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/alpha_processing_mips_dsp_r2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/alpha_processing_sse2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/cost.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/cost_mips32.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/cost_mips_dsp_r2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/dec_clip_tables.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/dec_mips32.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/dec_mips_dsp_r2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/enc_mips32.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/enc_mips_dsp_r2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/filters_mips_dsp_r2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless_mips_dsp_r2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless_neon.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless_sse2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/mips_macro.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/neon.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/rescaler.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/rescaler_mips32.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/rescaler_mips_dsp_r2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/upsampling_mips_dsp_r2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/yuv_mips32.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/yuv_mips_dsp_r2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/yuv_sse2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/yuv_sse41.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/near_lossless_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/picture_csp_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/picture_psnr_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/picture_rescale_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/picture_tools_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/mux/anim_encode.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/bit_reader_inl_utils.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/utils/endian_inl_utils.h + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd FILE: ../../../third_party/libwebp/imageio/webpdec.c FILE: ../../../third_party/libwebp/imageio/webpdec.h @@ -17766,29 +42683,116 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/include/angle_gl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/angle_windowsstore.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/export.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/MemoryBuffer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/MemoryBuffer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/angle_version.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/angleutils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/platform.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/system_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/system_utils_win.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/tls.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/tls.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/BuiltInFunctionEmulatorHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/BuiltInFunctionEmulatorHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ResourcesHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ResourcesHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ShaderVars.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/StructureHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/StructureHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/UtilsHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/UtilsHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/RewriteElseBlocks.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/RewriteElseBlocks.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/image_util/copyimage.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/image_util/loadimage.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/AttributeMap.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/AttributeMap.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Caps.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Caps.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Compiler.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Compiler.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Error.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Error.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Error.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/FramebufferAttachment.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/FramebufferAttachment.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/ImageIndex.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/ImageIndex.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/State.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/State.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/TransformFeedback.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/TransformFeedback.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/VertexAttribute.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/features.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/queryconversions.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/queryconversions.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/BufferImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CompilerImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/DisplayImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/DisplayImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/FramebufferImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ProgramImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/RenderbufferImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/SamplerImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ShaderImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/SurfaceImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/TextureImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/TransformFeedbackImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/VertexArrayImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/copyvertex.inc.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/BufferD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/BufferD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/CompilerD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/DisplayD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/DisplayD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/DynamicHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/DynamicHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/FramebufferD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/FramebufferD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/HLSLCompiler.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/ProgramD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/ProgramD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/RenderbufferD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/RenderbufferD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/RendererD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/RendererD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/SamplerD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/ShaderD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/ShaderD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/SurfaceD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/SurfaceD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/TextureD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/TextureD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Buffer11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Buffer11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Framebuffer11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Framebuffer11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/TransformFeedback11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/TransformFeedback11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Trim11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Trim11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/VertexArray11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/CoreWindowNativeWindow.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/CoreWindowNativeWindow.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/InspectableNativeWindow.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/InspectableNativeWindow.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/SwapChainPanelNativeWindow.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/SwapChainPanelNativeWindow.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Buffer9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Buffer9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Framebuffer9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Framebuffer9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/VertexArray9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/SamplerGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/SamplerGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/global_state.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/global_state.h + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/include/angle_gl.h FILE: ../../../third_party/angle/include/angle_windowsstore.h FILE: ../../../third_party/angle/include/export.h -FILE: ../../../third_party/angle/samples/hello_triangle/HelloTriangle.cpp -FILE: ../../../third_party/angle/samples/mip_map_2d/MipMap2D.cpp -FILE: ../../../third_party/angle/samples/multi_texture/MultiTexture.cpp -FILE: ../../../third_party/angle/samples/multiple_draw_buffers/MultipleDrawBuffers.cpp -FILE: ../../../third_party/angle/samples/particle_system/ParticleSystem.cpp -FILE: ../../../third_party/angle/samples/post_sub_buffer/PostSubBuffer.cpp -FILE: ../../../third_party/angle/samples/sample_util/SampleApplication.h -FILE: ../../../third_party/angle/samples/sample_util/texture_utils.cpp -FILE: ../../../third_party/angle/samples/sample_util/texture_utils.h -FILE: ../../../third_party/angle/samples/sample_util/tga_utils.cpp -FILE: ../../../third_party/angle/samples/sample_util/tga_utils.h -FILE: ../../../third_party/angle/samples/simple_instancing/SimpleInstancing.cpp -FILE: ../../../third_party/angle/samples/simple_texture_2d/SimpleTexture2D.cpp -FILE: ../../../third_party/angle/samples/simple_texture_cubemap/SimpleTextureCubemap.cpp -FILE: ../../../third_party/angle/samples/simple_vertex_shader/SimpleVertexShader.cpp -FILE: ../../../third_party/angle/samples/stencil_operations/StencilOperations.cpp -FILE: ../../../third_party/angle/samples/tex_redef_microbench/TexRedefMicroBench.cpp -FILE: ../../../third_party/angle/samples/texture_wrap/TextureWrap.cpp -FILE: ../../../third_party/angle/samples/tri_fan_microbench/TriFanMicroBench.cpp FILE: ../../../third_party/angle/src/common/MemoryBuffer.cpp FILE: ../../../third_party/angle/src/common/MemoryBuffer.h FILE: ../../../third_party/angle/src/common/angle_version.h @@ -17817,22 +42821,17 @@ FILE: ../../../third_party/angle/src/libANGLE/Caps.cpp FILE: ../../../third_party/angle/src/libANGLE/Caps.h FILE: ../../../third_party/angle/src/libANGLE/Compiler.cpp FILE: ../../../third_party/angle/src/libANGLE/Compiler.h -FILE: ../../../third_party/angle/src/libANGLE/Config_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/Error.cpp FILE: ../../../third_party/angle/src/libANGLE/Error.h FILE: ../../../third_party/angle/src/libANGLE/Error.inc -FILE: ../../../third_party/angle/src/libANGLE/Fence_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/FramebufferAttachment.cpp FILE: ../../../third_party/angle/src/libANGLE/FramebufferAttachment.h FILE: ../../../third_party/angle/src/libANGLE/ImageIndex.cpp FILE: ../../../third_party/angle/src/libANGLE/ImageIndex.h -FILE: ../../../third_party/angle/src/libANGLE/ImageIndexIterator_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/State.cpp FILE: ../../../third_party/angle/src/libANGLE/State.h -FILE: ../../../third_party/angle/src/libANGLE/Surface_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/TransformFeedback.cpp FILE: ../../../third_party/angle/src/libANGLE/TransformFeedback.h -FILE: ../../../third_party/angle/src/libANGLE/TransformFeedback_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/VertexAttribute.cpp FILE: ../../../third_party/angle/src/libANGLE/features.h FILE: ../../../third_party/angle/src/libANGLE/queryconversions.cpp @@ -17885,12 +42884,10 @@ FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Trim11.h FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/VertexArray11.h FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/CoreWindowNativeWindow.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/CoreWindowNativeWindow.h -FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/CoreWindowNativeWindow_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/InspectableNativeWindow.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/InspectableNativeWindow.h FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/SwapChainPanelNativeWindow.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/SwapChainPanelNativeWindow.h -FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/SwapChainPanelNativeWindow_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Buffer9.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Buffer9.h FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Framebuffer9.cpp @@ -17900,26 +42897,6 @@ FILE: ../../../third_party/angle/src/libANGLE/renderer/gl/SamplerGL.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/gl/SamplerGL.h FILE: ../../../third_party/angle/src/libGLESv2/global_state.cpp FILE: ../../../third_party/angle/src/libGLESv2/global_state.h -FILE: ../../../third_party/angle/util/EGLWindow.h -FILE: ../../../third_party/angle/util/Event.h -FILE: ../../../third_party/angle/util/Matrix.cpp -FILE: ../../../third_party/angle/util/Matrix.h -FILE: ../../../third_party/angle/util/OSWindow.cpp -FILE: ../../../third_party/angle/util/OSWindow.h -FILE: ../../../third_party/angle/util/com_utils.h -FILE: ../../../third_party/angle/util/geometry_utils.cpp -FILE: ../../../third_party/angle/util/geometry_utils.h -FILE: ../../../third_party/angle/util/keyboard.h -FILE: ../../../third_party/angle/util/mouse.h -FILE: ../../../third_party/angle/util/random_utils.cpp -FILE: ../../../third_party/angle/util/random_utils.h -FILE: ../../../third_party/angle/util/shader_utils.cpp -FILE: ../../../third_party/angle/util/shader_utils.h -FILE: ../../../third_party/angle/util/test_utils.h -FILE: ../../../third_party/angle/util/windows/test_utils_win.cpp -FILE: ../../../third_party/angle/util/windows/win32/Win32Window.cpp -FILE: ../../../third_party/angle/util/windows/win32/Win32Window.h -FILE: ../../../third_party/angle/util/windows/win32/test_utils_win32.cpp ---------------------------------------------------------------------------------------------------- Copyright 2014 The ANGLE Project Authors. All rights reserved. @@ -17958,14 +42935,17 @@ POSSIBILITY OF SUCH DAMAGE. LIBRARY: base LIBRARY: icu LIBRARY: zlib -ORIGIN: ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/safe_conversions.h + ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/safe_conversions_impl.h + ../../../LICENSE +ORIGIN: ../../../third_party/icu/icu.isolate + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/google/compression_utils.cc + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/google/compression_utils.h + ../../../LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/safe_conversions.h FILE: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/safe_conversions_impl.h FILE: ../../../third_party/icu/icu.isolate FILE: ../../../third_party/zlib/google/compression_utils.cc FILE: ../../../third_party/zlib/google/compression_utils.h -FILE: ../../../third_party/zlib/google/compression_utils_unittest.cc ---------------------------------------------------------------------------------------------------- Copyright 2014 The Chromium Authors. All rights reserved. @@ -17998,7 +42978,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha256-armv8.S + ../../../third_party/boringssl/src/LICENSE +ORIGIN: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha256-armv8.S (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha512-armv8.S (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/sha256-armv8.S (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/sha512-armv8.S (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/sha256-armv8.S (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/sha512-armv8.S (with ../../../third_party/boringssl/src/LICENSE) TYPE: LicenseType.unknown FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha256-armv8.S FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha512-armv8.S @@ -18017,7 +43002,8 @@ https://www.openssl.org/source/license.html ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64.c + ../../../third_party/boringssl/src/LICENSE +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64.c (with ../../../third_party/boringssl/src/LICENSE) +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64.h (with ../../../third_party/boringssl/src/LICENSE) TYPE: LicenseType.unknown FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64.c FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64.h @@ -18033,9 +43019,8 @@ https://www.openssl.org/source/license.html ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/make_tables.go + ../../../third_party/boringssl/src/LICENSE +ORIGIN: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64-table.h (with ../../../third_party/boringssl/src/LICENSE) TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/make_tables.go FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64-table.h ---------------------------------------------------------------------------------------------------- Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. @@ -18047,9 +43032,40 @@ in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html ==================================================================================================== +==================================================================================================== +LIBRARY: spirv-cross +ORIGIN: ../../../third_party/vulkan-deps/spirv-cross/src/GLSL.std.450.h + MIT referenced by ../../../third_party/vulkan-deps/spirv-cross/src/GLSL.std.450.h +TYPE: LicenseType.mit +FILE: ../../../third_party/vulkan-deps/spirv-cross/src/GLSL.std.450.h +---------------------------------------------------------------------------------------------------- +Copyright 2014-2016,2021 The Khronos Group, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + ==================================================================================================== LIBRARY: libwebp ORIGIN: ../../../third_party/libwebp/extras/extras.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/extras/extras.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dec/common_dec.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/demux/anim_decode.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/alpha_processing_sse41.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/cost_sse2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/dec_sse41.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/enc_sse41.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/filters_sse2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless_enc_mips32.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless_enc_mips_dsp_r2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless_enc_neon.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless_enc_sse2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless_enc_sse41.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/rescaler_neon.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/rescaler_sse2.c + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd FILE: ../../../third_party/libwebp/extras/extras.c FILE: ../../../third_party/libwebp/extras/extras.h @@ -18103,25 +43119,151 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/include/platform/PlatformMethods.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/Optional.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/bitset_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/matrix_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/string_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/string_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/system_utils_ios.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/system_utils_ios.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/system_utils_linux.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/system_utils_mac.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ExtensionGLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ExtensionGLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/apple/RewriteDoWhile.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/apple/RewriteDoWhile.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/FindSymbolNode.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/FindSymbolNode.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/image_util/generatemip.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Debug.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Debug.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Device.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Device.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Image.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Image.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Platform.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/VaryingPacking.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/VaryingPacking.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Version.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Version.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/VertexAttribute.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/histogram_macros.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/BufferImpl_mock.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/DeviceImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/DeviceImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/FenceNVImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/FramebufferImpl_mock.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/GLImplFactory.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ImageImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ImageImpl_mock.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ProgramImpl_mock.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/RenderbufferImpl_mock.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/SyncImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/TextureImpl_mock.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/TransformFeedbackImpl_mock.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/CompilerD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/DeviceD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/DeviceD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/EGLImageD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/EGLImageD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/DebugAnnotator11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/DebugAnnotator11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/StateManager11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/StateManager11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/texture_format_table.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/texture_format_table_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/DebugAnnotator9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/DebugAnnotator9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/StateManager9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/StateManager9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/formatutilsD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/dxgi_support_table.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/dxgi_support_table_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/BlitGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/BlitGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/BufferGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/BufferGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/CompilerGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/CompilerGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/DisplayGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/DisplayGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/FenceNVGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/FenceNVGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/FramebufferGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/FramebufferGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/FunctionsGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/FunctionsGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/ProgramGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/ProgramGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/QueryGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/QueryGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/RenderbufferGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/RenderbufferGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/RendererGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/RendererGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/ShaderGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/ShaderGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/StateManagerGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/StateManagerGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/SurfaceGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/SurfaceGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/SyncGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/SyncGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/TextureGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/TextureGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/TransformFeedbackGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/TransformFeedbackGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/VertexArrayGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/VertexArrayGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/DisplayCGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/DisplayCGL.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/IOSurfaceSurfaceCGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/PbufferSurfaceCGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/PbufferSurfaceCGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/WindowSurfaceCGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/WindowSurfaceCGL.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/formatutilsgl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/formatutilsgl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/functionsgl_enums.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/functionsgl_typedefs.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/DisplayGLX.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/DisplayGLX.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/FunctionsGLX.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/FunctionsGLX.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/PbufferSurfaceGLX.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/PbufferSurfaceGLX.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/WindowSurfaceGLX.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/WindowSurfaceGLX.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/functionsglx_typedefs.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/platform_glx.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/D3DTextureSurfaceWGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/D3DTextureSurfaceWGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/DXGISwapChainWindowSurfaceWGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/DXGISwapChainWindowSurfaceWGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/DisplayWGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/DisplayWGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/FunctionsWGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/FunctionsWGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/PbufferSurfaceWGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/PbufferSurfaceWGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/WindowSurfaceWGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/WindowSurfaceWGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/functionswgl_typedefs.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/wgl_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/wgl_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/load_functions_table.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationEGL.h + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/include/platform/PlatformMethods.h -FILE: ../../../third_party/angle/samples/WindowTest/WindowTest.cpp -FILE: ../../../third_party/angle/samples/multi_window/MultiWindow.cpp FILE: ../../../third_party/angle/src/common/Optional.h -FILE: ../../../third_party/angle/src/common/Optional_unittest.cpp FILE: ../../../third_party/angle/src/common/bitset_utils.h -FILE: ../../../third_party/angle/src/common/bitset_utils_unittest.cpp -FILE: ../../../third_party/angle/src/common/mathutil_unittest.cpp FILE: ../../../third_party/angle/src/common/matrix_utils.h -FILE: ../../../third_party/angle/src/common/matrix_utils_unittest.cpp FILE: ../../../third_party/angle/src/common/string_utils.cpp FILE: ../../../third_party/angle/src/common/string_utils.h -FILE: ../../../third_party/angle/src/common/string_utils_unittest.cpp FILE: ../../../third_party/angle/src/common/system_utils_ios.cpp FILE: ../../../third_party/angle/src/common/system_utils_ios.mm FILE: ../../../third_party/angle/src/common/system_utils_linux.cpp FILE: ../../../third_party/angle/src/common/system_utils_mac.cpp -FILE: ../../../third_party/angle/src/common/utilities_unittest.cpp FILE: ../../../third_party/angle/src/compiler/translator/ExtensionGLSL.cpp FILE: ../../../third_party/angle/src/compiler/translator/ExtensionGLSL.h FILE: ../../../third_party/angle/src/compiler/translator/tree_ops/apple/RewriteDoWhile.cpp @@ -18129,18 +43271,13 @@ FILE: ../../../third_party/angle/src/compiler/translator/tree_ops/apple/RewriteD FILE: ../../../third_party/angle/src/compiler/translator/tree_util/FindSymbolNode.cpp FILE: ../../../third_party/angle/src/compiler/translator/tree_util/FindSymbolNode.h FILE: ../../../third_party/angle/src/image_util/generatemip.inc -FILE: ../../../third_party/angle/src/libANGLE/BinaryStream_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/Debug.cpp FILE: ../../../third_party/angle/src/libANGLE/Debug.h FILE: ../../../third_party/angle/src/libANGLE/Device.cpp FILE: ../../../third_party/angle/src/libANGLE/Device.h -FILE: ../../../third_party/angle/src/libANGLE/HandleAllocator_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/Image.cpp FILE: ../../../third_party/angle/src/libANGLE/Image.h -FILE: ../../../third_party/angle/src/libANGLE/Image_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/Platform.cpp -FILE: ../../../third_party/angle/src/libANGLE/Program_unittest.cpp -FILE: ../../../third_party/angle/src/libANGLE/ResourceManager_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/VaryingPacking.cpp FILE: ../../../third_party/angle/src/libANGLE/VaryingPacking.h FILE: ../../../third_party/angle/src/libANGLE/Version.h @@ -18252,18 +43389,6 @@ FILE: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/wgl_utils.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/wgl_utils.h FILE: ../../../third_party/angle/src/libANGLE/renderer/load_functions_table.h FILE: ../../../third_party/angle/src/libANGLE/validationEGL.h -FILE: ../../../third_party/angle/util/OSPixmap.h -FILE: ../../../third_party/angle/util/linux/x11/X11Pixmap.cpp -FILE: ../../../third_party/angle/util/linux/x11/X11Pixmap.h -FILE: ../../../third_party/angle/util/linux/x11/X11Window.cpp -FILE: ../../../third_party/angle/util/linux/x11/X11Window.h -FILE: ../../../third_party/angle/util/osx/OSXPixmap.h -FILE: ../../../third_party/angle/util/osx/OSXPixmap.mm -FILE: ../../../third_party/angle/util/osx/OSXWindow.h -FILE: ../../../third_party/angle/util/osx/OSXWindow.mm -FILE: ../../../third_party/angle/util/posix/test_utils_posix.cpp -FILE: ../../../third_party/angle/util/windows/win32/Win32Pixmap.cpp -FILE: ../../../third_party/angle/util/windows/win32/Win32Pixmap.h ---------------------------------------------------------------------------------------------------- Copyright 2015 The ANGLE Project Authors. All rights reserved. @@ -18298,90 +43423,9 @@ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: icu -LIBRARY: vulkan-deps -ORIGIN: ../../../third_party/icu/scripts/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/fuzzers/icu_unicode_string_codepage_create_fuzzer.cc -FILE: ../../../third_party/icu/scripts/accept_lang.list -FILE: ../../../third_party/icu/scripts/chrome_ui_languages.list -FILE: ../../../third_party/icu/scripts/currencies.list -FILE: ../../../third_party/vulkan-deps/.gitignore -FILE: ../../../third_party/vulkan-deps/DEPS -FILE: ../../../third_party/vulkan-deps/additional_readme_paths.json ----------------------------------------------------------------------------------------------------- -Copyright 2015 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/custom/gtest-port.h -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/custom/gtest-port.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/custom/gtest-printers.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/custom/gtest.h -FILE: ../../../third_party/boringssl/src/third_party/googletest/include/gtest/internal/gtest-port-arch.h ----------------------------------------------------------------------------------------------------- -Copyright 2015, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/evp/scrypt.c + ../../../third_party/boringssl/src/LICENSE +ORIGIN: ../../../third_party/boringssl/src/crypto/evp/scrypt.c (with ../../../third_party/boringssl/src/LICENSE) TYPE: LicenseType.unknown FILE: ../../../third_party/boringssl/src/crypto/evp/scrypt.c ---------------------------------------------------------------------------------------------------- @@ -18417,6 +43461,25 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ==================================================================================================== LIBRARY: libwebp ORIGIN: ../../../third_party/libwebp/extras/get_disto.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/extras/quality_estimate.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/image_dec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/image_dec.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/image_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/image_enc.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/imageio_util.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/imageio_util.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/common_sse2.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/common_sse41.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/dec_msa.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/enc_msa.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/filters_msa.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless_enc_msa.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/lossless_msa.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/msa_macro.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/rescaler_msa.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/upsampling_msa.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/predictor_enc.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/mux/animi.h + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd FILE: ../../../third_party/libwebp/extras/get_disto.c FILE: ../../../third_party/libwebp/extras/quality_estimate.c @@ -18473,13 +43536,210 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: angle LIBRARY: base +ORIGIN: ../../../third_party/angle/src/common/Color.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/Color.inc + ../../../third_party/angle/LICENSE ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/logging.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/vector_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/vulkan/vk_headers.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/fuzz/translator_fuzzer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ConstantUnion.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputVulkanGLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputVulkanGLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Severity.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TextureFunctionHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TextureFunctionHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorVulkan.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorVulkan.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateMaxParameters.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateMaxParameters.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/DeferGlobalInitializers.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/DeferGlobalInitializers.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RemoveInvariantDeclaration.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RemoveInvariantDeclaration.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewriteTexelFetchOffset.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewriteTexelFetchOffset.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/SimplifyLoopConditions.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/SimplifyLoopConditions.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/SplitSequenceOperator.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/SplitSequenceOperator.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/apple/AddAndTrueToLoopCondition.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/apple/AddAndTrueToLoopCondition.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/apple/RewriteUnaryMinusOperatorFloat.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/apple/RewriteUnaryMinusOperatorFloat.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/AddDefaultReturnStatements.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/AddDefaultReturnStatements.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/BreakVariableAliasingInInnerLoops.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/BreakVariableAliasingInInnerLoops.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/ExpandIntegerPowExpressions.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/ExpandIntegerPowExpressions.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/RewriteUnaryMinusOperatorInt.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/RewriteUnaryMinusOperatorInt.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/gl/UseInterfaceBlockFields.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/gl/UseInterfaceBlockFields.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/IntermNodePatternMatcher.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/IntermNodePatternMatcher.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/image_util/imageformats.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Observer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Stream.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Stream.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Thread.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Thread.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/WorkerThread.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/WorkerThread.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/es3_copy_conversion_table_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/format_map_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/queryutils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/queryutils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ContextImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ContextImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/EGLImplFactory.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/Format.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/FramebufferAttachmentObjectImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/StreamProducerImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/TextureImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/HLSLCompiler.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/NativeWindowD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/NativeWindowD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/SwapChainD3D.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Context11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Context11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/NativeWindow11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/StreamProducerD3DTexture.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/StreamProducerD3DTexture.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/VertexArray11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/texture_format_table.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/texture_format_table_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/win32/NativeWindow11Win32.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/win32/NativeWindow11Win32.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/NativeWindow11WinRT.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/winrt/NativeWindow11WinRT.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Context9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/Context9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/NativeWindow9.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/NativeWindow9.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/driver_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/driver_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/ContextGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/ContextGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/DisplayEGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/DisplayEGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/FunctionsEGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/FunctionsEGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/FunctionsEGLDL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/FunctionsEGLDL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/PbufferSurfaceEGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/PbufferSurfaceEGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/SurfaceEGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/SurfaceEGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/WindowSurfaceEGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/WindowSurfaceEGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/android/DisplayAndroid.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/android/DisplayAndroid.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/functionsegl_typedefs.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/gbm/DisplayGbm.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/gbm/DisplayGbm.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/gbm/SurfaceGbm.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/gbm/SurfaceGbm.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/SurfaceGLX.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/BufferNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/BufferNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/CompilerNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/CompilerNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/ContextNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/ContextNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/DeviceNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/DeviceNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/DisplayNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/DisplayNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/FenceNVNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/FenceNVNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/FramebufferNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/FramebufferNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/ImageNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/ImageNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/ProgramNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/ProgramNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/QueryNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/QueryNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/RenderbufferNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/RenderbufferNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/SamplerNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/SamplerNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/ShaderNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/ShaderNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/SurfaceNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/SurfaceNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/SyncNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/SyncNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/TextureNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/TextureNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/TransformFeedbackNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/TransformFeedbackNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/VertexArrayNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/VertexArrayNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/renderer_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/renderer_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/BufferVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/BufferVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CompilerVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CompilerVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ContextVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ContextVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/DeviceVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/DeviceVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/DisplayVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/DisplayVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/FenceNVVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/FenceNVVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/FramebufferVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/FramebufferVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/GlslangWrapperVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/GlslangWrapperVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ImageVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ImageVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ProgramVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ProgramVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/QueryVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/QueryVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/RenderTargetVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/RenderTargetVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/RenderbufferVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/RenderbufferVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/RendererVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/RendererVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/SamplerVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/SamplerVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ShaderVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ShaderVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/SurfaceVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/SurfaceVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/SyncVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/SyncVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/TextureVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/TextureVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/TransformFeedbackVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/TransformFeedbackVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/VertexArrayVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/VertexArrayVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/xcb/DisplayVkXcb.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/xcb/DisplayVkXcb.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/xcb/WindowSurfaceVkXcb.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/xcb/WindowSurfaceVkXcb.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_format_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_format_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/win32/DisplayVkWin32.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/win32/DisplayVkWin32.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/win32/WindowSurfaceVkWin32.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/win32/WindowSurfaceVkWin32.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationEGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES31.cpp + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/common/Color.h FILE: ../../../third_party/angle/src/common/Color.inc FILE: ../../../third_party/angle/src/common/third_party/base/anglebase/logging.h FILE: ../../../third_party/angle/src/common/vector_utils.h -FILE: ../../../third_party/angle/src/common/vector_utils_unittest.cpp FILE: ../../../third_party/angle/src/common/vulkan/vk_headers.h FILE: ../../../third_party/angle/src/compiler/fuzz/translator_fuzzer.cpp FILE: ../../../third_party/angle/src/compiler/translator/ConstantUnion.cpp @@ -18520,15 +43780,12 @@ FILE: ../../../third_party/angle/src/compiler/translator/tree_util/IntermNodePat FILE: ../../../third_party/angle/src/compiler/translator/tree_util/IntermNodePatternMatcher.h FILE: ../../../third_party/angle/src/image_util/imageformats.cpp FILE: ../../../third_party/angle/src/libANGLE/Observer.h -FILE: ../../../third_party/angle/src/libANGLE/Observer_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/Stream.cpp FILE: ../../../third_party/angle/src/libANGLE/Stream.h FILE: ../../../third_party/angle/src/libANGLE/Thread.cpp FILE: ../../../third_party/angle/src/libANGLE/Thread.h -FILE: ../../../third_party/angle/src/libANGLE/VaryingPacking_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/WorkerThread.cpp FILE: ../../../third_party/angle/src/libANGLE/WorkerThread.h -FILE: ../../../third_party/angle/src/libANGLE/WorkerThread_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/es3_copy_conversion_table_autogen.cpp FILE: ../../../third_party/angle/src/libANGLE/format_map_autogen.cpp FILE: ../../../third_party/angle/src/libANGLE/queryutils.cpp @@ -18678,12 +43935,6 @@ FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/win32/WindowSurfac FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/win32/WindowSurfaceVkWin32.h FILE: ../../../third_party/angle/src/libANGLE/validationEGL.cpp FILE: ../../../third_party/angle/src/libANGLE/validationES31.cpp -FILE: ../../../third_party/angle/util/android/AndroidPixmap.cpp -FILE: ../../../third_party/angle/util/android/AndroidWindow.cpp -FILE: ../../../third_party/angle/util/android/AndroidWindow.h -FILE: ../../../third_party/angle/util/ozone/OzonePixmap.cpp -FILE: ../../../third_party/angle/util/ozone/OzoneWindow.cpp -FILE: ../../../third_party/angle/util/ozone/OzoneWindow.h ---------------------------------------------------------------------------------------------------- Copyright 2016 The ANGLE Project Authors. All rights reserved. @@ -18718,46 +43969,19 @@ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/fuzzers/icu_converter_fuzzer.cc + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/fuzzers/icu_converter_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_regex.dict -FILE: ../../../third_party/icu/fuzzers/icu_uregex_open_fuzzer.cc ----------------------------------------------------------------------------------------------------- -Copyright 2016 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - ==================================================================================================== LIBRARY: libwebp ORIGIN: ../../../third_party/libwebp/extras/vwebp_sdl.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/extras/webp_to_sdl.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/extras/webp_to_sdl.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/pnmdec.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/imageio/pnmdec.h + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/alpha_processing_neon.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/filters_neon.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/ssim.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/ssim_sse2.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/yuv_neon.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/enc/backward_references_cost_enc.c + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd FILE: ../../../third_party/libwebp/extras/vwebp_sdl.c FILE: ../../../third_party/libwebp/extras/webp_to_sdl.c @@ -18806,10 +44030,96 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. LIBRARY: angle LIBRARY: base ORIGIN: ../../../third_party/angle/include/EGL/eglext_angle.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/GLES2/gl2ext_angle.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/PackedCLEnums_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/PackedCLEnums_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/PackedEGLEnums_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/PackedEGLEnums_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/PackedEnums.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/PackedGLEnums_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/PackedGLEnums_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/aligned_memory.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/aligned_memory.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/base_export.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/macros.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/sys_byteorder.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/uniform_type_info_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Declarator.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Declarator.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ExtensionBehavior.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/HashNames.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ImageFunctionHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ImageFunctionHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/IsASTDepthBelowLimit.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/IsASTDepthBelowLimit.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputTree.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/StaticType.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Symbol.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Symbol.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/SymbolUniqueId.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/SymbolUniqueId.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/emulated_builtin_functions_hlsl_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/ClampPointSize.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/ClampPointSize.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/DeclareAndInitBuiltinsForInstancedMultiview.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/DeclareAndInitBuiltinsForInstancedMultiview.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RemoveArrayLengthMethod.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RemoveArrayLengthMethod.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RemoveUnreferencedVariables.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RemoveUnreferencedVariables.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/WrapSwitchStatementsInBlocks.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/WrapSwitchStatementsInBlocks.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/gl/ClampFragDepth.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/gl/ClampFragDepth.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/FindMain.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/FindMain.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/IntermNode_util.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/IntermNode_util.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/IntermTraverse.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/RunAtTheEndOfShader.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/RunAtTheEndOfShader.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo_macos.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/ErrorStrings.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/LoggingAnnotator.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/LoggingAnnotator.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/MemoryProgramCache.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/MemoryProgramCache.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/ProgramLinkedResources.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/ProgramLinkedResources.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/ProgramPipeline.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/ProgramPipeline.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/ResourceMap.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/SizedMRUCache.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ProgramPipelineImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/ProgramPipeline11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/ProgramPipeline11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/ResourceManager11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/ResourceManager11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/shaders/Clear11.hlsl + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/ClearMultiviewGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/ClearMultiviewGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/DispatchTableGL_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/DispatchTableGL_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/ProgramPipelineGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/ProgramPipelineGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/IOSurfaceSurfaceCGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/egl_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/egl_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/null_functions.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/null_functions.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/SurfaceWGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/ProgramPipelineNULL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/null/ProgramPipelineNULL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ProgramPipelineVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ProgramPipelineVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ResourceVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ResourceVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/proc_table_egl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/proc_table_glx.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/proc_table_wgl.h + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/include/EGL/eglext_angle.h FILE: ../../../third_party/angle/include/GLES2/gl2ext_angle.h -FILE: ../../../third_party/angle/samples/multiview/Multiview.cpp FILE: ../../../third_party/angle/src/common/PackedCLEnums_autogen.cpp FILE: ../../../third_party/angle/src/common/PackedCLEnums_autogen.h FILE: ../../../third_party/angle/src/common/PackedEGLEnums_autogen.cpp @@ -18819,8 +44129,6 @@ FILE: ../../../third_party/angle/src/common/PackedGLEnums_autogen.cpp FILE: ../../../third_party/angle/src/common/PackedGLEnums_autogen.h FILE: ../../../third_party/angle/src/common/aligned_memory.cpp FILE: ../../../third_party/angle/src/common/aligned_memory.h -FILE: ../../../third_party/angle/src/common/aligned_memory_unittest.cpp -FILE: ../../../third_party/angle/src/common/angleutils_unittest.cpp FILE: ../../../third_party/angle/src/common/third_party/base/anglebase/base_export.h FILE: ../../../third_party/angle/src/common/third_party/base/anglebase/macros.h FILE: ../../../third_party/angle/src/common/third_party/base/anglebase/sys_byteorder.h @@ -18860,7 +44168,6 @@ FILE: ../../../third_party/angle/src/compiler/translator/tree_util/IntermTravers FILE: ../../../third_party/angle/src/compiler/translator/tree_util/RunAtTheEndOfShader.cpp FILE: ../../../third_party/angle/src/compiler/translator/tree_util/RunAtTheEndOfShader.h FILE: ../../../third_party/angle/src/gpu_info_util/SystemInfo_macos.mm -FILE: ../../../third_party/angle/src/gpu_info_util/SystemInfo_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/ErrorStrings.h FILE: ../../../third_party/angle/src/libANGLE/LoggingAnnotator.cpp FILE: ../../../third_party/angle/src/libANGLE/LoggingAnnotator.h @@ -18872,8 +44179,6 @@ FILE: ../../../third_party/angle/src/libANGLE/ProgramPipeline.cpp FILE: ../../../third_party/angle/src/libANGLE/ProgramPipeline.h FILE: ../../../third_party/angle/src/libANGLE/ResourceMap.h FILE: ../../../third_party/angle/src/libANGLE/SizedMRUCache.h -FILE: ../../../third_party/angle/src/libANGLE/SizedMRUCache_unittest.cpp -FILE: ../../../third_party/angle/src/libANGLE/VertexArray_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/ProgramPipelineImpl.h FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/ProgramPipeline11.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/ProgramPipeline11.h @@ -18939,6 +44244,23 @@ POSSIBILITY OF SUCH DAMAGE. LIBRARY: base LIBRARY: zlib ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/checked_math.h + ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/checked_math_impl.h + ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/clamped_math.h + ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/clamped_math_impl.h + ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/math_constants.h + ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/ranges.h + ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/safe_conversions_arm_impl.h + ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/safe_math.h + ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/safe_math_arm_impl.h + ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/safe_math_clang_gcc_impl.h + ../../../LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/safe_math_shared_impl.h + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/adler32_simd.c + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/adler32_simd.h + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/chromeconf.h + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/crc32_simd.c + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/crc32_simd.h + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/google/zip_writer.cc + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/google/zip_writer.h + ../../../LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/checked_math.h FILE: ../../../third_party/angle/src/common/third_party/base/anglebase/numerics/checked_math_impl.h @@ -18988,23 +44310,10 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/x509/x509_time_test.cc + ../../../third_party/boringssl/src/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_time_test.cc ----------------------------------------------------------------------------------------------------- -Copyright 2017 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html -==================================================================================================== - ==================================================================================================== LIBRARY: libwebp ORIGIN: ../../../third_party/libwebp/src/dsp/cost_neon.c + ../../../third_party/libwebp/COPYING +ORIGIN: ../../../third_party/libwebp/src/dsp/quant.h + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd FILE: ../../../third_party/libwebp/src/dsp/cost_neon.c FILE: ../../../third_party/libwebp/src/dsp/quant.h @@ -19044,81 +44353,15 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. LIBRARY: angle ORIGIN: ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/angle/.style.yapf -FILE: ../../../third_party/angle/.vpython -FILE: ../../../third_party/angle/.vpython3 -FILE: ../../../third_party/angle/.yapfignore -FILE: ../../../third_party/angle/CONTRIBUTORS -FILE: ../../../third_party/angle/DEPS -FILE: ../../../third_party/angle/DIR_METADATA -FILE: ../../../third_party/angle/additional_readme_paths.json -FILE: ../../../third_party/angle/doc/img/JobUnit.png -FILE: ../../../third_party/angle/doc/img/RegressionTestingArchitecture.png -FILE: ../../../third_party/angle/doc/img/StateChangeNotificationFlow.svg -FILE: ../../../third_party/angle/doc/img/StateNotificationExample.svg -FILE: ../../../third_party/angle/doc/img/VangleDebugOverlay.png -FILE: ../../../third_party/angle/infra/config/generated/commit-queue.cfg -FILE: ../../../third_party/angle/infra/config/generated/cr-buildbucket.cfg -FILE: ../../../third_party/angle/infra/config/generated/luci-logdog.cfg -FILE: ../../../third_party/angle/infra/config/generated/luci-milo.cfg -FILE: ../../../third_party/angle/infra/config/generated/luci-scheduler.cfg -FILE: ../../../third_party/angle/infra/config/generated/project.cfg -FILE: ../../../third_party/angle/infra/config/generated/project.pyl -FILE: ../../../third_party/angle/infra/config/generated/realms.cfg -FILE: ../../../third_party/angle/infra/specs/angle.json -FILE: ../../../third_party/angle/infra/specs/trybot_analyze_config.json -FILE: ../../../third_party/angle/samples/multi_texture/basemap.tga -FILE: ../../../third_party/angle/samples/multi_texture/lightmap.tga -FILE: ../../../third_party/angle/samples/multiple_draw_buffers/multiple_draw_buffers_copy_fs.glsl -FILE: ../../../third_party/angle/samples/multiple_draw_buffers/multiple_draw_buffers_fs.glsl -FILE: ../../../third_party/angle/samples/multiple_draw_buffers/multiple_draw_buffers_vs.glsl -FILE: ../../../third_party/angle/samples/particle_system/smoke.tga -FILE: ../../../third_party/angle/scripts/code_generation_hashes/ANGLE_features.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/ANGLE_format.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/ANGLE_load_functions_table.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/ANGLE_shader_preprocessor.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/ANGLE_shader_translator.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/D3D11_blit_shader_selection.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/D3D11_format.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/DXGI_format.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/DXGI_format_support.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/Emulated_HLSL_functions.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/Extension_files.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/GL_CTS_(dEQP)_build_files.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/GL_EGL_WGL_loader.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/GL_EGL_entry_points.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/GL_copy_conversion_table.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/GL_format_map.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/GLenum_value_to_string_map.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/Metal_default_shaders.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/Metal_format_table.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/OpenGL_dispatch_table.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/SPIR-V_helpers.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/Static_builtins.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/Test_spec_JSON.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/Vulkan_format.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/Vulkan_internal_shader_programs.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/Vulkan_mandatory_format_support_table.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/overlay_fonts.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/overlay_widgets.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/packed_enum.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/proc_table.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/restricted_traces.json -FILE: ../../../third_party/angle/scripts/code_generation_hashes/uniform_type.json -FILE: ../../../third_party/angle/scripts/extension_data/intel_630_linux.json -FILE: ../../../third_party/angle/scripts/extension_data/intel_630_win10.json -FILE: ../../../third_party/angle/scripts/extension_data/nvidia_1660_linux.json -FILE: ../../../third_party/angle/scripts/extension_data/nvidia_1660_win10.json -FILE: ../../../third_party/angle/scripts/extension_data/pixel_4_android_11.json -FILE: ../../../third_party/angle/scripts/extension_data/pixel_6_android_13.json -FILE: ../../../third_party/angle/scripts/extension_data/swiftshader_linux.json -FILE: ../../../third_party/angle/scripts/extension_data/swiftshader_win10.json -FILE: ../../../third_party/angle/scripts/extension_data/swiftshader_win10_gles1.json FILE: ../../../third_party/angle/src/android_system_settings/assets/a4a_rules.json FILE: ../../../third_party/angle/src/android_system_settings/res/drawable/icon.png +FILE: ../../../third_party/angle/src/common/fuchsia_egl/fuchsia_egl.c +FILE: ../../../third_party/angle/src/common/fuchsia_egl/fuchsia_egl.h +FILE: ../../../third_party/angle/src/common/fuchsia_egl/fuchsia_egl_backend.h FILE: ../../../third_party/angle/src/common/packed_cl_enums.json FILE: ../../../third_party/angle/src/common/packed_egl_enums.json FILE: ../../../third_party/angle/src/common/packed_gl_enums.json +FILE: ../../../third_party/angle/src/compiler/translator/builtin_function_declarations.txt FILE: ../../../third_party/angle/src/compiler/translator/emulated_builtin_function_data_hlsl.json FILE: ../../../third_party/angle/src/feature_support_util/a4a_rules.json FILE: ../../../third_party/angle/src/libANGLE/es3_copy_conversion_formats.json @@ -19325,12 +44568,9 @@ FILE: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d9/shaders/compiled FILE: ../../../third_party/angle/src/libANGLE/renderer/dxgi_format_data.json FILE: ../../../third_party/angle/src/libANGLE/renderer/dxgi_support_data.json FILE: ../../../third_party/angle/src/libANGLE/renderer/gl/gl_bindings_data.json +FILE: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/FBConfigCompatibility.md FILE: ../../../third_party/angle/src/libANGLE/renderer/load_functions_data.json FILE: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_default_shaders_compiled.inc -FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/doc/img/LineRasterComparison.gif -FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/doc/img/LineRasterHoles.jpg -FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/doc/img/LineRasterPixelExample.png -FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/doc/img/VulkanShaderTranslation.svg FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/OverlayDraw.inc FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_mandatory_format_support_data.json FILE: ../../../third_party/angle/src/libEGL/libEGL.rc @@ -19340,8 +44580,6 @@ FILE: ../../../third_party/angle/src/libGLESv1_CM/libGLESv1_CM.rc FILE: ../../../third_party/angle/src/libGLESv1_CM/resource.h FILE: ../../../third_party/angle/src/libGLESv2/libGLESv2.rc FILE: ../../../third_party/angle/src/libGLESv2/resource.h -FILE: ../../../third_party/angle/util/ios/Info.plist -FILE: ../../../third_party/angle/util/osx/supports_automatic_graphics_switching.plist ---------------------------------------------------------------------------------------------------- Copyright 2018 The ANGLE Project Authors. All rights reserved. @@ -19379,27 +44617,258 @@ POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: angle -ORIGIN: ../../../third_party/angle/android/AndroidManifest.xml.jinja2 + ../../../third_party/angle/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/angle/android/AndroidManifest.xml.jinja2 -FILE: ../../../third_party/angle/samples/gles1/DrawTexture.cpp -FILE: ../../../third_party/angle/samples/gles1/FlatShading.cpp -FILE: ../../../third_party/angle/samples/gles1/HelloTriangle.cpp -FILE: ../../../third_party/angle/samples/gles1/SimpleLighting.cpp -FILE: ../../../third_party/angle/samples/gles1/SimpleTexture2D.cpp -FILE: ../../../third_party/angle/scripts/egl_angle_ext.xml -FILE: ../../../third_party/angle/scripts/gl_angle_ext.xml -FILE: ../../../third_party/angle/scripts/vk_mandatory_format_support_capture_to_json.js +ORIGIN: ../../../third_party/angle/src/android_system_settings/res/values-v17/styles.xml + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/FastVector.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/FixedVector.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/PackedEnums.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/android_util.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/android_util.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/hash_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/matrix_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/system_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/system_utils_posix.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/AtomicCounterFunctionHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/AtomicCounterFunctionHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/FunctionLookup.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/FunctionLookup.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ImmutableString.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ImmutableStringBuilder.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ImmutableStringBuilder.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ShaderStorageBlockFunctionHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ShaderStorageBlockFunctionHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ShaderStorageBlockOutputHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ShaderStorageBlockOutputHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/NameEmbeddedUniformStructsMetal.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/NameEmbeddedUniformStructsMetal.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/builtin_variables.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/FoldExpressions.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/FoldExpressions.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/PruneEmptyCases.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/PruneEmptyCases.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewriteStructSamplers.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewriteStructSamplers.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/SeparateStructFromUniformDeclarations.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/SeparateStructFromUniformDeclarations.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/RewriteAtomicFunctionExpressions.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/RewriteAtomicFunctionExpressions.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/RewriteExpressionsWithShaderStorageBlock.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/RewriteExpressionsWithShaderStorageBlock.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/SeparateArrayConstructorStatements.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/SeparateArrayConstructorStatements.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/gl/RewriteRepeatedAssignToSwizzled.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/gl/RewriteRepeatedAssignToSwizzled.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/ReplaceVariable.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/ReplaceVariable.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/Visit.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/feature_support_util/feature_support_util.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/feature_support_util/feature_support_util.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo_android.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/BlobCache.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/BlobCache.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context.inl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context_gles_1_0.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/GLES1Renderer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/GLES1Renderer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/GLES1Shaders.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/GLES1State.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/GLES1State.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Observer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/entry_points_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/QueryImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/RenderTargetCache.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/ContextD3D.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Blit11Helper_autogen.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Program11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/Program11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/converged/CompositorNativeWindow11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/converged/CompositorNativeWindow11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/shaders/MultiplyAlpha.hlsl + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/shaders/Passthrough2DArray11.hlsl + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/shaders/Passthrough3D11.hlsl + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/ImageGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/ImageGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/ContextEGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/ContextEGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/ExternalImageSiblingEGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/ImageEGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/ImageEGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/RendererEGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/RendererEGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/android/NativeBufferImageSiblingAndroid.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/android/NativeBufferImageSiblingAndroid.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/ContextWGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/ContextWGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/RendererWGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/wgl/RendererWGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/UtilsVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/UtilsVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/android/DisplayVkAndroid.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/android/DisplayVkAndroid.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/android/WindowSurfaceVkAndroid.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/android/WindowSurfaceVkAndroid.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000000.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000001.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000002.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000003.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000004.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000005.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000006.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000007.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000008.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000009.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.0000000A.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.0000000B.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.0000000C.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.0000000D.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.0000000E.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.0000000F.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000010.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000011.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000012.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000013.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000014.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000015.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000016.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolve.frag.00000017.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolveStencilNoExport.comp.00000000.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolveStencilNoExport.comp.00000001.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolveStencilNoExport.comp.00000002.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/BlitResolveStencilNoExport.comp.00000003.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertIndex.comp.00000000.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertIndex.comp.00000001.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertIndex.comp.00000002.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertIndex.comp.00000003.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertIndexIndirectLineLoop.comp.00000000.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertIndexIndirectLineLoop.comp.00000001.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertIndexIndirectLineLoop.comp.00000002.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertIndirectLineLoop.comp.00000000.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000000.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000001.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000002.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000003.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000004.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000005.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000006.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ConvertVertex.comp.00000007.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/FullScreenTri.vert.00000000.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/GenerateMipmap.comp.00000000.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/GenerateMipmap.comp.00000001.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/GenerateMipmap.comp.00000002.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/GenerateMipmap.comp.00000003.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/GenerateMipmap.comp.00000004.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/GenerateMipmap.comp.00000005.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/GenerateMipmap.comp.00000006.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/GenerateMipmap.comp.00000007.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/GenerateMipmap.comp.00000008.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/GenerateMipmap.comp.00000009.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000000.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000001.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000002.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000003.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000004.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000005.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000006.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000007.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000008.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000009.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000000A.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000000B.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000000C.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000000D.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000000E.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000000F.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000010.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000011.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000012.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000013.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000014.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000015.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000016.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000017.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000018.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000019.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000001A.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000001B.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000001C.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000001D.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000001E.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000001F.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000020.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000021.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000022.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000023.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000024.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000025.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000026.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000027.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000028.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.00000029.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000002A.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000002B.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000002C.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000002D.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000002E.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageClear.frag.0000002F.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000000.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000001.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000002.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000004.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000005.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000006.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000008.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000009.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.0000000A.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000010.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000011.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000012.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000014.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000015.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000016.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000018.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000019.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.0000001A.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000020.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000021.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000022.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000024.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000025.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000026.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000028.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.00000029.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/ImageCopy.frag.0000002A.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/OverlayDraw.frag.00000000.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/gen/OverlayDraw.vert.00000000.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/ConvertVertex.comp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/ConvertVertex.comp.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/FullScreenTri.vert + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/ImageCopy.frag + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/ImageCopy.frag.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_cache_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_cache_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_caps_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_caps_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_format_map.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_helpers.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_helpers.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_internal_shaders_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_internal_shaders_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES1.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES1.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES2.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES3.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES31.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationESEXT.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libEGL/egl_loader_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libEGL/egl_loader_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv1_CM/libGLESv1_CM.cpp + ../../../third_party/angle/LICENSE +TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/android_system_settings/res/values-v17/styles.xml FILE: ../../../third_party/angle/src/common/FastVector.h -FILE: ../../../third_party/angle/src/common/FastVector_unittest.cpp FILE: ../../../third_party/angle/src/common/FixedVector.h -FILE: ../../../third_party/angle/src/common/FixedVector_unittest.cpp FILE: ../../../third_party/angle/src/common/PackedEnums.cpp FILE: ../../../third_party/angle/src/common/android_util.cpp FILE: ../../../third_party/angle/src/common/android_util.h FILE: ../../../third_party/angle/src/common/hash_utils.h -FILE: ../../../third_party/angle/src/common/hash_utils_unittest.cpp FILE: ../../../third_party/angle/src/common/matrix_utils.cpp FILE: ../../../third_party/angle/src/common/system_utils.cpp FILE: ../../../third_party/angle/src/common/system_utils_posix.cpp @@ -19438,11 +44907,9 @@ FILE: ../../../third_party/angle/src/compiler/translator/tree_util/ReplaceVariab FILE: ../../../third_party/angle/src/compiler/translator/tree_util/Visit.h FILE: ../../../third_party/angle/src/feature_support_util/feature_support_util.cpp FILE: ../../../third_party/angle/src/feature_support_util/feature_support_util.h -FILE: ../../../third_party/angle/src/feature_support_util/feature_support_util_unittest.cpp FILE: ../../../third_party/angle/src/gpu_info_util/SystemInfo_android.cpp FILE: ../../../third_party/angle/src/libANGLE/BlobCache.cpp FILE: ../../../third_party/angle/src/libANGLE/BlobCache.h -FILE: ../../../third_party/angle/src/libANGLE/BlobCache_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/Context.inl.h FILE: ../../../third_party/angle/src/libANGLE/Context_gles_1_0.cpp FILE: ../../../third_party/angle/src/libANGLE/GLES1Renderer.cpp @@ -19451,7 +44918,6 @@ FILE: ../../../third_party/angle/src/libANGLE/GLES1Shaders.inc FILE: ../../../third_party/angle/src/libANGLE/GLES1State.cpp FILE: ../../../third_party/angle/src/libANGLE/GLES1State.h FILE: ../../../third_party/angle/src/libANGLE/Observer.cpp -FILE: ../../../third_party/angle/src/libANGLE/ResourceMap_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/entry_points_utils.h FILE: ../../../third_party/angle/src/libANGLE/renderer/QueryImpl.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/RenderTargetCache.h @@ -19640,21 +45106,6 @@ FILE: ../../../third_party/angle/src/libANGLE/validationESEXT.h FILE: ../../../third_party/angle/src/libEGL/egl_loader_autogen.cpp FILE: ../../../third_party/angle/src/libEGL/egl_loader_autogen.h FILE: ../../../third_party/angle/src/libGLESv1_CM/libGLESv1_CM.cpp -FILE: ../../../third_party/angle/util/EGLPlatformParameters.h -FILE: ../../../third_party/angle/util/capture/trace_egl_loader_autogen.cpp -FILE: ../../../third_party/angle/util/capture/trace_egl_loader_autogen.h -FILE: ../../../third_party/angle/util/capture/trace_gles_loader_autogen.cpp -FILE: ../../../third_party/angle/util/capture/trace_gles_loader_autogen.h -FILE: ../../../third_party/angle/util/egl_loader_autogen.cpp -FILE: ../../../third_party/angle/util/egl_loader_autogen.h -FILE: ../../../third_party/angle/util/gles_loader_autogen.cpp -FILE: ../../../third_party/angle/util/gles_loader_autogen.h -FILE: ../../../third_party/angle/util/util_export.h -FILE: ../../../third_party/angle/util/util_gl.h -FILE: ../../../third_party/angle/util/windows/WGLWindow.cpp -FILE: ../../../third_party/angle/util/windows/WGLWindow.h -FILE: ../../../third_party/angle/util/windows/wgl_loader_autogen.cpp -FILE: ../../../third_party/angle/util/windows/wgl_loader_autogen.h ---------------------------------------------------------------------------------------------------- Copyright 2018 The ANGLE Project Authors. All rights reserved. @@ -19693,6 +45144,9 @@ POSSIBILITY OF SUCH DAMAGE. LIBRARY: base LIBRARY: zlib ORIGIN: ../../../third_party/angle/src/common/third_party/base/anglebase/no_destructor.h + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/contrib/bench/zlib_bench.cc + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/cpu_features.c + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/cpu_features.h + ../../../LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/common/third_party/base/anglebase/no_destructor.h FILE: ../../../third_party/zlib/contrib/bench/zlib_bench.cc @@ -19728,21 +45182,266 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: libcxx +ORIGIN: ../../../third_party/libcxx/src/include/ryu/common.h +ORIGIN: ../../../third_party/libcxx/src/include/ryu/d2fixed.h +ORIGIN: ../../../third_party/libcxx/src/include/ryu/d2fixed_full_table.h +ORIGIN: ../../../third_party/libcxx/src/include/ryu/d2s.h +ORIGIN: ../../../third_party/libcxx/src/include/ryu/d2s_full_table.h +ORIGIN: ../../../third_party/libcxx/src/include/ryu/d2s_intrinsics.h +ORIGIN: ../../../third_party/libcxx/src/include/ryu/digit_table.h +ORIGIN: ../../../third_party/libcxx/src/include/ryu/f2s.h +ORIGIN: ../../../third_party/libcxx/src/include/ryu/ryu.h +ORIGIN: ../../../third_party/libcxx/src/ryu/d2fixed.cpp +ORIGIN: ../../../third_party/libcxx/src/ryu/d2s.cpp +ORIGIN: ../../../third_party/libcxx/src/ryu/f2s.cpp +TYPE: LicenseType.unknown +FILE: ../../../third_party/libcxx/src/include/ryu/common.h +FILE: ../../../third_party/libcxx/src/include/ryu/d2fixed.h +FILE: ../../../third_party/libcxx/src/include/ryu/d2fixed_full_table.h +FILE: ../../../third_party/libcxx/src/include/ryu/d2s.h +FILE: ../../../third_party/libcxx/src/include/ryu/d2s_full_table.h +FILE: ../../../third_party/libcxx/src/include/ryu/d2s_intrinsics.h +FILE: ../../../third_party/libcxx/src/include/ryu/digit_table.h +FILE: ../../../third_party/libcxx/src/include/ryu/f2s.h +FILE: ../../../third_party/libcxx/src/include/ryu/ryu.h +FILE: ../../../third_party/libcxx/src/ryu/d2fixed.cpp +FILE: ../../../third_party/libcxx/src/ryu/d2s.cpp +FILE: ../../../third_party/libcxx/src/ryu/f2s.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2018 Ulf Adams +Copyright (c) Microsoft Corporation. All rights reserved. + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +==================================================================================================== + ==================================================================================================== LIBRARY: angle LIBRARY: xxhash ORIGIN: ../../../third_party/angle/include/platform/Feature.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/vulkan/vulkan_fuchsia_ext.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/PoolAlloc.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/PoolAlloc.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/apple_platform_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/system_utils_win32.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/system_utils_winuwp.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/third_party/xxhash/xxhash_fuzzer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/preprocessor.l + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/preprocessor.y + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/preprocessor_lex_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/preprocessor/preprocessor_tab_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/BuiltinsWorkaroundGLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/BuiltinsWorkaroundGLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetal.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetal.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateAST.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateAST.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/glslang.l + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/glslang.y + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/glslang_lex_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/glslang_tab_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/EmulateMultiDrawShaderBuiltins.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/EmulateMultiDrawShaderBuiltins.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/NameNamelessUniformBuffers.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/NameNamelessUniformBuffers.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RemoveInactiveInterfaceVariables.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RemoveInactiveInterfaceVariables.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewriteArrayOfArrayOfOpaqueUniforms.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewriteAtomicCounters.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewriteAtomicCounters.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewriteCubeMapSamplersAs2DArray.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewriteCubeMapSamplersAs2DArray.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewriteDfdy.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewriteDfdy.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/apple/RewriteRowMajorMatrices.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/apple/RewriteRowMajorMatrices.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/BuiltIn.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/FindFunction.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/FindFunction.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/ReplaceShadowingVariables.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/ReplaceShadowingVariables.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context_gl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/EGLSync.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/MemoryObject.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/MemoryObject.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Overlay.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Overlay.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/OverlayWidgets.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/OverlayWidgets.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Overlay_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Overlay_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Semaphore.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Semaphore.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/FrameCapture.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/FrameCapture.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/FrameCapture_mock.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_1_0_params.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_2_0_params.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_3_0_params.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_3_1_params.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_3_2_params.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_ext_params.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/gl_enum_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/gl_enum_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/gl_enum_utils_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/gl_enum_utils_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/format_map_desktop.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/overlay_widgets.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/EGLSyncImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/MemoryObjectImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/OverlayImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/SemaphoreImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ShaderImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/DynamicImage2DHLSL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/DynamicImage2DHLSL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/ExternalImageSiblingImpl11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/ExternalImageSiblingImpl11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/MappedSubresourceVerifier11.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/d3d11/MappedSubresourceVerifier11.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/driver_utils_mac.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/MemoryObjectGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/MemoryObjectGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/SemaphoreGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/SemaphoreGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/ContextCGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/ContextCGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/DeviceCGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/DeviceCGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/RendererCGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/cgl/RendererCGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/SyncEGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/SyncEGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/RendererGLX.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/RendererGLX.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/glslang_wrapper_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/glslang_wrapper_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/BufferMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/BufferMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/CompilerMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/CompilerMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/ContextMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/ContextMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/DisplayMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/DisplayMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/DisplayMtl_api.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/FrameBufferMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/FrameBufferMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/IOSurfaceSurfaceMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/ProgramMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/ProgramMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/RenderBufferMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/RenderBufferMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/RenderTargetMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/RenderTargetMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/ShaderMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/ShaderMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/SurfaceMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/SurfaceMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/TextureMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/TextureMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/VertexArrayMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/VertexArrayMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_buffer_pool.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_buffer_pool.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_command_buffer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_command_buffer.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_common.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_common.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_format_map.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_format_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_format_utils.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_glslang_mtl_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_glslang_mtl_utils.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_glslang_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_glslang_utils.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_render_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_render_utils.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_resources.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_resources.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_state_cache.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_state_cache.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_utils.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/serial_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/DisplayVk_api.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/MemoryObjectVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/MemoryObjectVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/OverlayVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/OverlayVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/PersistentCommandPool.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/PersistentCommandPool.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/SecondaryCommandBuffer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/SecondaryCommandBuffer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/SemaphoreVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/SemaphoreVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/android/HardwareBufferImageSiblingVkAndroid.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/android/HardwareBufferImageSiblingVkAndroid.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/fuchsia/DisplayVkFuchsia.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/fuchsia/DisplayVkFuchsia.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/fuchsia/WindowSurfaceVkFuchsia.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/fuchsia/WindowSurfaceVkFuchsia.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ggp/DisplayVkGGP.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ggp/DisplayVkGGP.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ggp/WindowSurfaceVkGGP.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ggp/WindowSurfaceVkGGP.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/mac/DisplayVkMac.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/mac/DisplayVkMac.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/mac/WindowSurfaceVkMac.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/mac/WindowSurfaceVkMac.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/BlitResolve.frag + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/BlitResolve.frag.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/BlitResolveStencilNoExport.comp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/BlitResolveStencilNoExport.comp.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/ConvertIndex.comp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/ConvertIndex.comp.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/ConvertIndexIndirectLineLoop.comp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/ConvertIndirectLineLoop.comp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/ConvertIndirectLineLoop.comp.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/ImageClear.frag + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/ImageClear.frag.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_wrapper.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/trace.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES32.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES32.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationESEXT.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL1.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL2.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL3.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL4.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_wgl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_wgl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/proc_table_egl_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/proc_table_glx_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/proc_table_wgl_autogen.cpp + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/angle/WATCHLISTS FILE: ../../../third_party/angle/include/platform/Feature.h FILE: ../../../third_party/angle/include/vulkan/vulkan_fuchsia_ext.h -FILE: ../../../third_party/angle/samples/capture_replay/CaptureReplay.cpp -FILE: ../../../third_party/angle/scripts/entry_point_packed_gl_enums.json FILE: ../../../third_party/angle/src/common/PoolAlloc.cpp FILE: ../../../third_party/angle/src/common/PoolAlloc.h -FILE: ../../../third_party/angle/src/common/PoolAlloc_unittest.cpp FILE: ../../../third_party/angle/src/common/apple_platform_utils.h -FILE: ../../../third_party/angle/src/common/system_utils_unittest.cpp FILE: ../../../third_party/angle/src/common/system_utils_win32.cpp FILE: ../../../third_party/angle/src/common/system_utils_winuwp.cpp FILE: ../../../third_party/angle/src/common/third_party/xxhash/xxhash_fuzzer.cpp @@ -19760,7 +45459,6 @@ FILE: ../../../third_party/angle/src/compiler/translator/glslang.l FILE: ../../../third_party/angle/src/compiler/translator/glslang.y FILE: ../../../third_party/angle/src/compiler/translator/glslang_lex_autogen.cpp FILE: ../../../third_party/angle/src/compiler/translator/glslang_tab_autogen.cpp -FILE: ../../../third_party/angle/src/compiler/translator/span_unittest.cpp FILE: ../../../third_party/angle/src/compiler/translator/tree_ops/EmulateMultiDrawShaderBuiltins.cpp FILE: ../../../third_party/angle/src/compiler/translator/tree_ops/EmulateMultiDrawShaderBuiltins.h FILE: ../../../third_party/angle/src/compiler/translator/tree_ops/NameNamelessUniformBuffers.cpp @@ -19884,7 +45582,6 @@ FILE: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_state_cache.mm FILE: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_utils.h FILE: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_utils.mm FILE: ../../../third_party/angle/src/libANGLE/renderer/serial_utils.h -FILE: ../../../third_party/angle/src/libANGLE/renderer/serial_utils_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/DisplayVk_api.h FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/MemoryObjectVk.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/MemoryObjectVk.h @@ -19935,16 +45632,6 @@ FILE: ../../../third_party/angle/src/libGLESv2/entry_points_wgl.h FILE: ../../../third_party/angle/src/libGLESv2/proc_table_egl_autogen.cpp FILE: ../../../third_party/angle/src/libGLESv2/proc_table_glx_autogen.cpp FILE: ../../../third_party/angle/src/libGLESv2/proc_table_wgl_autogen.cpp -FILE: ../../../third_party/angle/util/Timer.cpp -FILE: ../../../third_party/angle/util/Timer.h -FILE: ../../../third_party/angle/util/fuchsia/ScenicWindow.cpp -FILE: ../../../third_party/angle/util/fuchsia/ScenicWindow.h -FILE: ../../../third_party/angle/util/posix/crash_handler_posix.cpp -FILE: ../../../third_party/angle/util/test_utils.cpp -FILE: ../../../third_party/angle/util/test_utils_unittest.cpp -FILE: ../../../third_party/angle/util/test_utils_unittest_helper.cpp -FILE: ../../../third_party/angle/util/test_utils_unittest_helper.h -FILE: ../../../third_party/angle/util/windows/test_utils_winuwp.cpp ---------------------------------------------------------------------------------------------------- Copyright 2019 The ANGLE Project Authors. All rights reserved. @@ -19982,6 +45669,10 @@ POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/blit.metal + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/clear.metal + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/common.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/gen_indices.metal + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/visibility.metal + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/blit.metal FILE: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/clear.metal @@ -20025,6 +45716,8 @@ POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: zlib ORIGIN: ../../../third_party/zlib/contrib/optimizations/insert_string.h + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/google/compression_utils_portable.cc + ../../../LICENSE +ORIGIN: ../../../third_party/zlib/google/compression_utils_portable.h + ../../../LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/zlib/contrib/optimizations/insert_string.h FILE: ../../../third_party/zlib/google/compression_utils_portable.cc @@ -20059,88 +45752,301 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: angle -ORIGIN: ../../../third_party/angle/src/common/fuchsia_egl/fuchsia_egl.c + ../../../fuchsia/sdk/linux/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/angle/src/common/fuchsia_egl/fuchsia_egl.c -FILE: ../../../third_party/angle/src/common/fuchsia_egl/fuchsia_egl.h -FILE: ../../../third_party/angle/src/common/fuchsia_egl/fuchsia_egl_backend.h ----------------------------------------------------------------------------------------------------- -Copyright 2019 The Fuchsia Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/filters/android.json + ../../../third_party/dart/runtime/third_party/double-conversion/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/filters/android.json -FILE: ../../../third_party/icu/filters/cast.json -FILE: ../../../third_party/icu/filters/chromeos.json -FILE: ../../../third_party/icu/filters/common.json -FILE: ../../../third_party/icu/filters/flutter.json -FILE: ../../../third_party/icu/filters/ios.json ----------------------------------------------------------------------------------------------------- -Copyright 2019 the V8 project authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/include/platform/Platform.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/apple/SoftLinking.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/entry_points_enum_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/entry_points_enum_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/gl/cgl/FunctionsCGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/gl/cgl/FunctionsCGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/system_utils_apple.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/vulkan/vulkan_icd.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/vulkan/vulkan_icd.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/DriverUniformMetal.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/DriverUniformMetal.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ImmutableString_ESSL_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ImmutableString_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/SymbolTable_ESSL_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/SymbolTable_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/SymbolTable_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/AddExplicitTypeCasts.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/AddExplicitTypeCasts.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/AstHelpers.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/AstHelpers.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/DebugSink.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/DiscoverDependentFunctions.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/DiscoverDependentFunctions.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/DiscoverEnclosingFunctionTraverser.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/DiscoverEnclosingFunctionTraverser.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/EmitMetal.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/EmitMetal.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/FixTypeConstructors.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/FixTypeConstructors.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/HoistConstants.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/HoistConstants.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/IdGen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/IdGen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/IntermRebuild.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/IntroduceVertexIndexID.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/IntroduceVertexIndexID.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/Layout.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/Layout.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/MapFunctionsToDefinitions.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/MapFunctionsToDefinitions.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/MapSymbols.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/MapSymbols.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/ModifyStruct.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/ModifyStruct.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/Name.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/Name.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/Pipeline.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/Pipeline.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/ProgramPrelude.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/ProgramPrelude.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/ReduceInterfaceBlocks.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/ReduceInterfaceBlocks.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/Reference.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/RewriteCaseDeclarations.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/RewriteCaseDeclarations.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/RewriteOutArgs.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/RewriteOutArgs.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/RewritePipelines.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/RewritePipelines.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/RewriteUnaddressableReferences.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/RewriteUnaddressableReferences.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/SeparateCompoundExpressions.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/SeparateCompoundExpressions.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/SeparateCompoundStructDeclarations.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/SeparateCompoundStructDeclarations.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/SkippingTraverser.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/SymbolEnv.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/SymbolEnv.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/ToposortStructs.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/ToposortStructs.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/TransposeRowMajorMatrices.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/TransposeRowMajorMatrices.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/WrapMain.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/WrapMain.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateBarrierFunctionCall.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateBarrierFunctionCall.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateClipCullDistance.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateClipCullDistance.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/ConvertUnsupportedConstructorsToFunctionCalls.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/ConvertUnsupportedConstructorsToFunctionCalls.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/ForcePrecisionQualifier.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/ForcePrecisionQualifier.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RemoveAtomicCounterBuiltins.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RemoveAtomicCounterBuiltins.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/RecordUniformBlocksWithLargeArrayMember.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/RecordUniformBlocksWithLargeArrayMember.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/FlagSamplersWithTexelFetch.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/FlagSamplersWithTexelFetch.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/ReplaceForShaderFramebufferFetch.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/ReplaceForShaderFramebufferFetch.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/RewriteInterpolateAtOffset.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/RewriteInterpolateAtOffset.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/AsNode.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/BuiltIn_ESSL_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/BuiltIn_complete_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/DriverUniform.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/DriverUniform.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/IntermRebuild.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/IntermRebuild.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/NodeType.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/ReplaceArrayOfMatrixVarying.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/ReplaceArrayOfMatrixVarying.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/ReplaceClipCullDistanceVariable.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/ReplaceClipCullDistanceVariable.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/RewriteSampleMaskVariable.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/RewriteSampleMaskVariable.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/RunAtTheBeginningOfShader.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/RunAtTheBeginningOfShader.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/SpecializationConstant.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/SpecializationConstant.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo_apple.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo_fuchsia.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo_ios.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo_vulkan.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/gpu_info_util/SystemInfo_vulkan.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context_gl_1_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context_gl_2_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context_gl_3_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context_gl_4_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context_gles_1_0_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context_gles_2_0_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context_gles_3_0_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context_gles_3_1_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context_gles_3_2_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Context_gles_ext_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/InfoLog.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/ProgramExecutable.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/ProgramExecutable.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gl_1_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gl_1_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gl_2_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gl_2_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gl_3_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gl_3_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gl_4_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gl_4_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_1_0_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_1_0_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_2_0_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_2_0_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_3_0_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_3_0_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_3_1_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_3_1_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_3_2_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_3_2_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_ext_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gles_ext_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/frame_capture_replay_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/frame_capture_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/frame_capture_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/frame_capture_utils_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/frame_capture_utils_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/BufferImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/EGLReusableSync.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/EGLReusableSync.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/EGLSyncImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/FormatID_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/Format_table_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/driver_utils_d3d.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d/driver_utils_d3d.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d_format.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/d3d_format.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/dxgi_format_map.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/dxgi_format_map_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/apple/DisplayApple_api.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/apple/DisplayApple_api.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/ContextEAGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/ContextEAGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/DeviceEAGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/DeviceEAGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/DisplayEAGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/DisplayEAGL.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/FunctionsEAGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/FunctionsEAGL.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/IOSurfaceSurfaceEAGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/IOSurfaceSurfaceEAGL.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/PbufferSurfaceEAGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/PbufferSurfaceEAGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/RendererEAGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/RendererEAGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/WindowSurfaceEAGL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/eagl/WindowSurfaceEAGL.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/PixmapSurfaceGLX.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/PixmapSurfaceGLX.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/glx_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/glx/glx_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/load_functions_table_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/IOSurfaceSurfaceMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/SamplerMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/SamplerMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/TransformFeedbackMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/TransformFeedbackMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/file_hooking/shader_cache_file_hooking.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_format_table_autogen.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/format_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/mtl_default_shaders_src_autogen.inc + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/mtl_default_shaders_src_autogen.metal + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CommandProcessor.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CommandProcessor.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/DebugAnnotatorVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/DebugAnnotatorVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ProgramExecutableVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/ProgramExecutableVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/android/vk_android_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/android/vk_android_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/display/DisplayVkSimple.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/display/DisplayVkSimple.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/display/WindowSurfaceVkSimple.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/display/WindowSurfaceVkSimple.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/headless/DisplayVkHeadless.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/headless/DisplayVkHeadless.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/headless/WindowSurfaceVkHeadless.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/headless/WindowSurfaceVkHeadless.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/mac/IOSurfaceSurfaceVkMac.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/mac/IOSurfaceSurfaceVkMac.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/ConvertIndexIndirectLineLoop.comp.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/GenerateMipmap.comp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/GenerateMipmap.comp.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_format_table_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_mandatory_format_support_table_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_mem_alloc_wrapper.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_mem_alloc_wrapper.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationEGL_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES1_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES2_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES31_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES32_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationES3_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationESEXT_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL11_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL12_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL13_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL14_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL15_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL1_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL21_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL2_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL31_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL32_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL33_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL3_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL41_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL42_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL43_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL44_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL45_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL46_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationGL4_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libEGL/libEGL_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libEGL/libEGL_autogen.def + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/egl_ext_stubs.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/egl_ext_stubs_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/egl_get_labeled_object_data.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/egl_stubs.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/egl_stubs_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_cl_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_cl_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_egl_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_egl_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_egl_ext_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_egl_ext_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gl_1_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gl_1_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gl_2_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gl_2_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gl_3_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gl_3_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gl_4_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gl_4_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gles_1_0_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gles_1_0_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gles_2_0_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gles_2_0_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gles_3_0_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gles_3_0_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gles_3_1_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gles_3_1_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gles_3_2_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gles_3_2_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gles_ext_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_gles_ext_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/libGLESv2_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/libGLESv2_autogen.def + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/libGLESv2_no_capture_autogen.def + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/libGLESv2_with_capture_autogen.def + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/opengl32_autogen.def + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/opengl32_with_wgl_autogen.def + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libOpenCL/libOpenCL_autogen.cpp + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/include/platform/Platform.h -FILE: ../../../third_party/angle/infra/specs/gn_isolate_map.pyl -FILE: ../../../third_party/angle/samples/capture_replay/angle_trace_gl.h -FILE: ../../../third_party/angle/scripts/entry_point_packed_egl_enums.json FILE: ../../../third_party/angle/src/common/apple/SoftLinking.h FILE: ../../../third_party/angle/src/common/entry_points_enum_autogen.cpp FILE: ../../../third_party/angle/src/common/entry_points_enum_autogen.h @@ -20270,7 +46176,6 @@ FILE: ../../../third_party/angle/src/libANGLE/Context_gles_ext_autogen.h FILE: ../../../third_party/angle/src/libANGLE/InfoLog.h FILE: ../../../third_party/angle/src/libANGLE/ProgramExecutable.cpp FILE: ../../../third_party/angle/src/libANGLE/ProgramExecutable.h -FILE: ../../../third_party/angle/src/libANGLE/angletypes_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/capture/capture_gl_1_autogen.cpp FILE: ../../../third_party/angle/src/libANGLE/capture/capture_gl_1_autogen.h FILE: ../../../third_party/angle/src/libANGLE/capture/capture_gl_2_autogen.cpp @@ -20432,18 +46337,6 @@ FILE: ../../../third_party/angle/src/libGLESv2/libGLESv2_with_capture_autogen.de FILE: ../../../third_party/angle/src/libGLESv2/opengl32_autogen.def FILE: ../../../third_party/angle/src/libGLESv2/opengl32_with_wgl_autogen.def FILE: ../../../third_party/angle/src/libOpenCL/libOpenCL_autogen.cpp -FILE: ../../../third_party/angle/util/capture/angle_trace_gl.h -FILE: ../../../third_party/angle/util/capture/frame_capture_test_utils.h -FILE: ../../../third_party/angle/util/display/DisplayPixmap.cpp -FILE: ../../../third_party/angle/util/display/DisplayWindow.cpp -FILE: ../../../third_party/angle/util/display/DisplayWindow.h -FILE: ../../../third_party/angle/util/ios/IOSPixmap.h -FILE: ../../../third_party/angle/util/ios/IOSPixmap.mm -FILE: ../../../third_party/angle/util/ios/IOSWindow.h -FILE: ../../../third_party/angle/util/ios/IOSWindow.mm -FILE: ../../../third_party/angle/util/ios/ios_main.mm -FILE: ../../../third_party/angle/util/png_utils.cpp -FILE: ../../../third_party/angle/util/png_utils.h ---------------------------------------------------------------------------------------------------- Copyright 2020 The ANGLE Project Authors. All rights reserved. @@ -20481,6 +46374,8 @@ POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/constants.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/copy_buffer.metal + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/gen_mipmap.metal + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/constants.h FILE: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/copy_buffer.metal @@ -20519,60 +46414,188 @@ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: abseil-cpp -ORIGIN: ../../../third_party/abseil-cpp/absl_hardening_test.cc + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/abseil-cpp/absl_hardening_test.cc ----------------------------------------------------------------------------------------------------- -Copyright 2020 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - ==================================================================================================== LIBRARY: angle -ORIGIN: ../../../third_party/angle/android/AndroidManifest.xml + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/angle_cl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/CircularBuffer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/Spinlock.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/SynchronizedValue.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/angle_version_info.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/angle_version_info.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/apple/apple_platform.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/linux/dma_buf_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/linux/dma_buf_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/serializer/JsonSerializer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/serializer/JsonSerializer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/spirv/angle_spirv_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/spirv/spirv_instruction_builder_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/spirv/spirv_instruction_builder_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/spirv/spirv_instruction_parser_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/spirv/spirv_instruction_parser_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/spirv/spirv_types.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/vulkan/libvulkan_loader.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/vulkan/libvulkan_loader.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/BuildSPIRV.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/BuildSPIRV.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/Operator_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputSPIRV.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/OutputSPIRV.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateTypeSizeLimitations.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/ValidateTypeSizeLimitations.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/glslang_wrapper.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/glslang_wrapper.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/ClampIndirectIndices.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/ClampIndirectIndices.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/MonomorphizeUnsupportedFunctions.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/MonomorphizeUnsupportedFunctions.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewriteArrayOfArrayOfOpaqueUniforms.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/DeclarePerVertexBlocks.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/DeclarePerVertexBlocks.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/EmulateFragColorData.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/EmulateFragColorData.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/RewriteR32fImages.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/RewriteR32fImages.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/FindPreciseNodes.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_util/FindPreciseNodes.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLBitField.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLBuffer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLBuffer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLCommandQueue.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLCommandQueue.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLContext.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLContext.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLDevice.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLDevice.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLEvent.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLEvent.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLImage.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLImage.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLKernel.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLKernel.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLMemory.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLMemory.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLObject.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLObject.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLPlatform.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLPlatform.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLProgram.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLProgram.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLRefPointer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLSampler.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLSampler.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/CLtypes.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/frame_capture_utils_mock.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/trace_fixture.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/trace_fixture.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/cl_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/cl_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/gles_extensions_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/gles_extensions_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLCommandQueueImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLCommandQueueImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLContextImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLContextImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLDeviceImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLDeviceImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLEventImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLEventImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLExtensions.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLExtensions.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLKernelImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLKernelImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLMemoryImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLMemoryImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLPlatformImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLPlatformImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLProgramImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLProgramImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLSamplerImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLSamplerImpl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/CLtypes.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ImageImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ShaderInterfaceVariableInfoMap.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ShaderInterfaceVariableInfoMap.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLCommandQueueCL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLCommandQueueCL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLContextCL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLContextCL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLDeviceCL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLDeviceCL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLEventCL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLEventCL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLKernelCL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLKernelCL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLMemoryCL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLMemoryCL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLPlatformCL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLPlatformCL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLProgramCL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLProgramCL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLSamplerCL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/CLSamplerCL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/cl_types.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/cl_util.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/cl/cl_util.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/driver_utils_ios.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/DeviceMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/DeviceMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/ImageMtl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/ImageMtl.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/ProvokingVertexHelper.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/ProvokingVertexHelper.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_context_device.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_context_device.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/mtl_resource_spi.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/metal/shaders/rewrite_indices.metal + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLCommandQueueVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLCommandQueueVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLContextVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLContextVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLDeviceVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLDeviceVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLEventVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLEventVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLKernelVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLKernelVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLMemoryVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLMemoryVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLPlatformVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLPlatformVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLProgramVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLProgramVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLSamplerVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/CLSamplerVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/VkImageImageSiblingVk.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/VkImageImageSiblingVk.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/VulkanSecondaryCommandBuffer.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/VulkanSecondaryCommandBuffer.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/android/AHBFunctions.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/android/AHBFunctions.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/cl_types.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/DisplayVkLinux.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/DisplayVkLinux.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/DmaBufImageSiblingVkLinux.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/DmaBufImageSiblingVkLinux.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/null/DisplayVkNull.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/null/DisplayVkNull.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/vk_command_buffer_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationCL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationCL.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/validationCL_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/cl_dispatch_table.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/cl_dispatch_table.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/cl_stubs.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/cl_stubs_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_cl_utils.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_cl_utils.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/proc_table_cl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/proc_table_cl_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libOpenCL/dispatch.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libOpenCL/dispatch.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libOpenCL/libOpenCL_autogen.map + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/angle/android/AndroidManifest.xml FILE: ../../../third_party/angle/include/angle_cl.h -FILE: ../../../third_party/angle/infra/specs/angle_mb_config.pyl -FILE: ../../../third_party/angle/infra/specs/mixins.pyl -FILE: ../../../third_party/angle/infra/specs/test_suite_exceptions.pyl -FILE: ../../../third_party/angle/infra/specs/test_suites.pyl -FILE: ../../../third_party/angle/infra/specs/variants.pyl -FILE: ../../../third_party/angle/infra/specs/waterfalls.pyl -FILE: ../../../third_party/angle/samples/multiple_contexts/MultipleContexts.cpp -FILE: ../../../third_party/angle/samples/torus_lighting/TorusBufferStorage.cpp -FILE: ../../../third_party/angle/samples/torus_lighting/TorusLightingES1.cpp -FILE: ../../../third_party/angle/samples/torus_lighting/TorusLightingES2.cpp -FILE: ../../../third_party/angle/samples/torus_lighting/torus.h FILE: ../../../third_party/angle/src/common/CircularBuffer.h -FILE: ../../../third_party/angle/src/common/CircularBuffer_unittest.cpp FILE: ../../../third_party/angle/src/common/Spinlock.h FILE: ../../../third_party/angle/src/common/SynchronizedValue.h FILE: ../../../third_party/angle/src/common/angle_version_info.cpp @@ -20582,7 +46605,6 @@ FILE: ../../../third_party/angle/src/common/linux/dma_buf_utils.cpp FILE: ../../../third_party/angle/src/common/linux/dma_buf_utils.h FILE: ../../../third_party/angle/src/common/serializer/JsonSerializer.cpp FILE: ../../../third_party/angle/src/common/serializer/JsonSerializer.h -FILE: ../../../third_party/angle/src/common/serializer/JsonSerializer_unittest.cpp FILE: ../../../third_party/angle/src/common/spirv/angle_spirv_utils.cpp FILE: ../../../third_party/angle/src/common/spirv/spirv_instruction_builder_autogen.cpp FILE: ../../../third_party/angle/src/common/spirv/spirv_instruction_builder_autogen.h @@ -20693,7 +46715,6 @@ FILE: ../../../third_party/angle/src/libANGLE/renderer/cl/cl_types.h FILE: ../../../third_party/angle/src/libANGLE/renderer/cl/cl_util.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/cl/cl_util.h FILE: ../../../third_party/angle/src/libANGLE/renderer/driver_utils_ios.mm -FILE: ../../../third_party/angle/src/libANGLE/renderer/gl/DisplayGL_unittest.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/metal/DeviceMtl.h FILE: ../../../third_party/angle/src/libANGLE/renderer/metal/DeviceMtl.mm FILE: ../../../third_party/angle/src/libANGLE/renderer/metal/ImageMtl.h @@ -20750,8 +46771,6 @@ FILE: ../../../third_party/angle/src/libGLESv2/proc_table_cl_autogen.cpp FILE: ../../../third_party/angle/src/libOpenCL/dispatch.cpp FILE: ../../../third_party/angle/src/libOpenCL/dispatch.h FILE: ../../../third_party/angle/src/libOpenCL/libOpenCL_autogen.map -FILE: ../../../third_party/angle/util/capture/frame_capture_test_utils.cpp -FILE: ../../../third_party/angle/util/capture/traces_export.h ---------------------------------------------------------------------------------------------------- Copyright 2021 The ANGLE Project Authors. All rights reserved. @@ -20825,44 +46844,12 @@ ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== -==================================================================================================== -LIBRARY: angle -ORIGIN: ../../../third_party/angle/infra/config/main.star + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/angle/infra/config/main.star ----------------------------------------------------------------------------------------------------- -Copyright 2021 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/wayland/DisplayVkWayland.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/wayland/DisplayVkWayland.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/wayland/WindowSurfaceVkWayland.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/wayland/WindowSurfaceVkWayland.h + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/wayland/DisplayVkWayland.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/wayland/DisplayVkWayland.h @@ -20905,6 +46892,59 @@ POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/include/platform/FeaturesD3D_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/platform/FeaturesGL_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/platform/FeaturesMtl_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/platform/FeaturesVk_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/platform/FrontendFeatures_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/platform/d3d_features.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/platform/frontend_features.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/platform/gl_features.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/platform/mtl_features.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/include/platform/vk_features.json + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/common/apple_platform_utils.mm + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/BaseTypes.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalConstantNames.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/GuardFragDepthWrite.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/TranslatorMetalDirect/GuardFragDepthWrite.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewritePixelLocalStorage.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/RewritePixelLocalStorage.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/AggregateAssignArraysInSSBOs.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/AggregateAssignArraysInSSBOs.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/AggregateAssignStructsInSSBOs.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/d3d/AggregateAssignStructsInSSBOs.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/EmulateAdvancedBlendEquations.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/EmulateAdvancedBlendEquations.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/EmulateDithering.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/EmulateDithering.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/EmulateYUVBuiltIns.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/compiler/translator/tree_ops/vulkan/EmulateYUVBuiltIns.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/image_util/loadimage_astc.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/MemoryShaderCache.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/MemoryShaderCache.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Overlay_font_autogen.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/Overlay_font_autogen.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/PixelLocalStorage.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/PixelLocalStorage.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_egl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_egl.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gl_1_params.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gl_2_params.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gl_3_params.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/capture/capture_gl_4_params.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/FramebufferImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ProgramImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/ProgramPipelineImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/RenderbufferImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/TransformFeedbackImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/VertexArrayImpl.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/Suballocation.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/Suballocation.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/gbm/DisplayVkGbm.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/linux/gbm/DisplayVkGbm.h + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/OverlayDraw.frag + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/OverlayDraw.vert + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_glx.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libGLESv2/entry_points_glx.h + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/include/platform/FeaturesD3D_autogen.h FILE: ../../../third_party/angle/include/platform/FeaturesGL_autogen.h @@ -20916,8 +46956,6 @@ FILE: ../../../third_party/angle/include/platform/frontend_features.json FILE: ../../../third_party/angle/include/platform/gl_features.json FILE: ../../../third_party/angle/include/platform/mtl_features.json FILE: ../../../third_party/angle/include/platform/vk_features.json -FILE: ../../../third_party/angle/samples/hello_triangle_gl/HelloTriangleGL.cpp -FILE: ../../../third_party/angle/scripts/angle_android_codegen.go FILE: ../../../third_party/angle/src/common/apple_platform_utils.mm FILE: ../../../third_party/angle/src/compiler/translator/BaseTypes.cpp FILE: ../../../third_party/angle/src/compiler/translator/TranslatorMetalConstantNames.cpp @@ -20962,11 +47000,6 @@ FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/Overla FILE: ../../../third_party/angle/src/libANGLE/renderer/vulkan/shaders/src/OverlayDraw.vert FILE: ../../../third_party/angle/src/libGLESv2/entry_points_glx.cpp FILE: ../../../third_party/angle/src/libGLESv2/entry_points_glx.h -FILE: ../../../third_party/angle/util/angle_features_autogen.cpp -FILE: ../../../third_party/angle/util/angle_features_autogen.h -FILE: ../../../third_party/angle/util/linux/LinuxWindow.cpp -FILE: ../../../third_party/angle/util/linux/wayland/WaylandWindow.cpp -FILE: ../../../third_party/angle/util/linux/wayland/WaylandWindow.h ---------------------------------------------------------------------------------------------------- Copyright 2022 The ANGLE Project Authors. All rights reserved. @@ -21039,11 +47072,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: angle ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/DmaBufImageSiblingEGL.cpp + ../../../third_party/angle/LICENSE +ORIGIN: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/DmaBufImageSiblingEGL.h + ../../../third_party/angle/LICENSE TYPE: LicenseType.bsd FILE: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/DmaBufImageSiblingEGL.cpp FILE: ../../../third_party/angle/src/libANGLE/renderer/gl/egl/DmaBufImageSiblingEGL.h -FILE: ../../../third_party/angle/util/fuchsia/FuchsiaPixmap.cpp -FILE: ../../../third_party/angle/util/fuchsia/FuchsiaPixmap.h ---------------------------------------------------------------------------------------------------- Copyright The ANGLE Project Authors. All rights reserved. @@ -21088,7 +47120,7 @@ Copyright © 1998-2004 David Turner and Werner Lemberg Copyright © 2004,2007,2009 Red Hat, Inc. Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21112,6 +47144,7 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-buffer.cc FILE: ../../../third_party/harfbuzz/src/hb-buffer.hh @@ -21120,7 +47153,7 @@ Copyright © 1998-2004 David Turner and Werner Lemberg Copyright © 2004,2007,2009,2010 Red Hat, Inc. Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21152,7 +47185,7 @@ Copyright © 2006 Behdad Esfahbod Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21176,6 +47209,8 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-atomic.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-mutex.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-object.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-atomic.hh FILE: ../../../third_party/harfbuzz/src/hb-mutex.hh @@ -21185,7 +47220,7 @@ Copyright © 2007 Chris Wilson Copyright © 2009,2010 Red Hat, Inc. Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21214,7 +47249,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-layout.h ---------------------------------------------------------------------------------------------------- Copyright © 2007,2008,2009 Red Hat, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21244,7 +47279,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gdef-table.hh Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2010,2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21274,7 +47309,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-common.hh Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2010,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21298,6 +47333,7 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-common.h +ORIGIN: ../../../third_party/harfbuzz/src/hb.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-common.h FILE: ../../../third_party/harfbuzz/src/hb.hh @@ -21305,7 +47341,7 @@ FILE: ../../../third_party/harfbuzz/src/hb.hh Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21335,7 +47371,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-open-file.hh Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21359,6 +47395,7 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-face.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-face.hh FILE: ../../../third_party/harfbuzz/src/hb-ot-layout.hh @@ -21366,7 +47403,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-layout.hh Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21397,7 +47434,7 @@ Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2012,2013 Google, Inc. Copyright © 2019, Facebook Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21428,7 +47465,7 @@ Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2018,2019,2020 Ebrahim Byagowi Copyright © 2018 Khaled Hosny - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21458,7 +47495,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gsubgpos.hh Copyright © 2007,2008,2009,2010 Red Hat, Inc. Copyright © 2010,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21482,6 +47519,7 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-gpos-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-gsub-table.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gpos-table.hh FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gsub-table.hh @@ -21489,7 +47527,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gsub-table.hh Copyright © 2007,2008,2009,2010 Red Hat, Inc. Copyright © 2010,2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21519,7 +47557,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-open-type.hh Copyright © 2007,2008,2009,2010 Red Hat, Inc. Copyright © 2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21543,6 +47581,8 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-dispatch.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-machinery.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-sanitize.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-dispatch.hh FILE: ../../../third_party/harfbuzz/src/hb-machinery.hh @@ -21551,7 +47591,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-sanitize.hh Copyright © 2007,2008,2009,2010 Red Hat, Inc. Copyright © 2012,2018 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21582,7 +47622,7 @@ Copyright © 2007,2008,2009,2010 Red Hat, Inc. Copyright © 2012,2018 Google, Inc. Copyright © 2019 Facebook, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21606,6 +47646,10 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-blob.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-face.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-font.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot.h +ORIGIN: ../../../third_party/harfbuzz/src/hb.h TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-blob.h FILE: ../../../third_party/harfbuzz/src/hb-face.h @@ -21615,7 +47659,7 @@ FILE: ../../../third_party/harfbuzz/src/hb.h ---------------------------------------------------------------------------------------------------- Copyright © 2009 Red Hat, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21646,7 +47690,7 @@ Copyright © 2009 Red Hat, Inc. Copyright © 2009 Keith Stribley Copyright © 2011 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21677,7 +47721,7 @@ Copyright © 2009 Red Hat, Inc. Copyright © 2009 Keith Stribley Copyright © 2015 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21701,6 +47745,7 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-unicode.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-unicode.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-unicode.cc FILE: ../../../third_party/harfbuzz/src/hb-unicode.hh @@ -21709,7 +47754,7 @@ Copyright © 2009 Red Hat, Inc. Copyright © 2011 Codethink Limited Copyright © 2010,2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21740,7 +47785,7 @@ Copyright © 2009 Red Hat, Inc. Copyright © 2011 Codethink Limited Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21764,6 +47809,11 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-face.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-font.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-glib.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-glib.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-icu.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-tag.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-face.hh FILE: ../../../third_party/harfbuzz/src/hb-font.hh @@ -21775,7 +47825,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-tag.cc Copyright © 2009 Red Hat, Inc. Copyright © 2011 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21799,6 +47849,9 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-face.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-font.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-shape.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-shape.h TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-face.cc FILE: ../../../third_party/harfbuzz/src/hb-font.cc @@ -21808,7 +47861,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-shape.h Copyright © 2009 Red Hat, Inc. Copyright © 2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21838,7 +47891,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ft.h Copyright © 2009 Red Hat, Inc. Copyright © 2015 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21868,7 +47921,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-blob.cc Copyright © 2009 Red Hat, Inc. Copyright © 2018 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21898,7 +47951,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-blob.hh Copyright © 2009 Red Hat, Inc. Copyright © 2018 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21928,7 +47981,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-shape.cc Copyright © 2009,2010 Red Hat, Inc. Copyright © 2010,2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21958,7 +48011,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-map.hh Copyright © 2009,2010 Red Hat, Inc. Copyright © 2010,2011,2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -21982,6 +48035,7 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-map.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-map.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-aat-map.cc FILE: ../../../third_party/harfbuzz/src/hb-ot-map.cc @@ -21989,7 +48043,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-map.cc Copyright © 2009,2010 Red Hat, Inc. Copyright © 2010,2011,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22019,7 +48073,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-common.cc Copyright © 2009,2010 Red Hat, Inc. Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22048,7 +48102,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-shape.hh ---------------------------------------------------------------------------------------------------- Copyright © 2010 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22078,7 +48132,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-head-table.hh Copyright © 2010 Red Hat, Inc. Copyright © 2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22102,6 +48156,8 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/test-gpos-size-params.cc +ORIGIN: ../../../third_party/harfbuzz/src/test-gsub-would-substitute.cc +ORIGIN: ../../../third_party/harfbuzz/src/test.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/test-gpos-size-params.cc FILE: ../../../third_party/harfbuzz/src/test-gsub-would-substitute.cc @@ -22109,7 +48165,7 @@ FILE: ../../../third_party/harfbuzz/src/test.cc ---------------------------------------------------------------------------------------------------- Copyright © 2010,2011 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22138,7 +48194,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex.hh ---------------------------------------------------------------------------------------------------- Copyright © 2010,2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22167,7 +48223,7 @@ FILE: ../../../third_party/harfbuzz/src/test-buffer-serialize.cc ---------------------------------------------------------------------------------------------------- Copyright © 2010,2011,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22191,6 +48247,9 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-default.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-hebrew.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-thai.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic.cc FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-default.cc @@ -22199,7 +48258,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-thai.cc ---------------------------------------------------------------------------------------------------- Copyright © 2010,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22223,6 +48282,10 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-fallback-shape.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-gobject-structs.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-uniscribe.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-version.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-version.h.in TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-fallback-shape.cc FILE: ../../../third_party/harfbuzz/src/hb-gobject-structs.cc @@ -22232,7 +48295,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-version.h.in ---------------------------------------------------------------------------------------------------- Copyright © 2011 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22262,7 +48325,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-graphite2.h Copyright © 2011 Martin Hosken Copyright © 2011 SIL International - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22293,7 +48356,7 @@ Copyright © 2011 Martin Hosken Copyright © 2011 SIL International Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22317,6 +48380,19 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-hhea-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-hmtx-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-maxp-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-name-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic-machine.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic-machine.rl +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-khmer-machine.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-khmer-machine.rl +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-khmer.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar-machine.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar-machine.rl +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-fallback.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-normalize.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-hhea-table.hh FILE: ../../../third_party/harfbuzz/src/hb-ot-hmtx-table.hh @@ -22335,7 +48411,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-normalize.cc ---------------------------------------------------------------------------------------------------- Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22365,7 +48441,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-os2-table.hh Copyright © 2011,2012 Google, Inc. Copyright © 2018 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22389,13 +48465,14 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-uniscribe.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar.cc FILE: ../../../third_party/harfbuzz/src/hb-uniscribe.cc ---------------------------------------------------------------------------------------------------- Copyright © 2011,2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22419,6 +48496,7 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ms-feature-ranges.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ms-feature-ranges.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ms-feature-ranges.cc FILE: ../../../third_party/harfbuzz/src/hb-ms-feature-ranges.hh @@ -22426,7 +48504,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ms-feature-ranges.hh Copyright © 2011,2012,2013 Google, Inc. Copyright © 2021 Khaled Hosny - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22455,7 +48533,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-utf.hh ---------------------------------------------------------------------------------------------------- Copyright © 2011,2012,2014 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22484,7 +48562,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-font.cc ---------------------------------------------------------------------------------------------------- Copyright © 2011,2014 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22508,6 +48586,19 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-cache.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-fallback.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-fallback.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-normalize.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-set-digest.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-set.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-set.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-shape-plan.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-shape-plan.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-shaper-impl.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-shaper-list.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-shaper.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-shaper.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-cache.hh FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-fallback.hh @@ -22526,7 +48617,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-shaper.hh ---------------------------------------------------------------------------------------------------- Copyright © 2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22555,7 +48646,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-coretext.h ---------------------------------------------------------------------------------------------------- Copyright © 2012 Mozilla Foundation. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22584,7 +48675,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-buffer-serialize.cc ---------------------------------------------------------------------------------------------------- Copyright © 2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22614,7 +48705,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-coretext.cc Copyright © 2012,2013 Mozilla Foundation. Copyright © 2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22638,6 +48729,9 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-bit-page.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-bit-set-invertible.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-bit-set.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-set.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-bit-page.hh FILE: ../../../third_party/harfbuzz/src/hb-bit-set-invertible.hh @@ -22647,7 +48741,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-set.hh Copyright © 2012,2017 Google, Inc. Copyright © 2021 Behdad Esfahbod - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22676,7 +48770,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-shape-plan.hh ---------------------------------------------------------------------------------------------------- Copyright © 2012,2018 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22700,6 +48794,12 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-json.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-json.rl +ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-text.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-text.rl +ORIGIN: ../../../third_party/harfbuzz/src/hb-deprecated.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-jstf-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-hangul.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-json.hh FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-json.rl @@ -22711,7 +48811,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-hangul.cc ---------------------------------------------------------------------------------------------------- Copyright © 2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22740,7 +48840,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-shape.h ---------------------------------------------------------------------------------------------------- Copyright © 2013 Red Hat, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22764,6 +48864,8 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cmap-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-font.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-win1256.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-cmap-table.hh FILE: ../../../third_party/harfbuzz/src/hb-ot-font.h @@ -22771,7 +48873,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-win1256.hh ---------------------------------------------------------------------------------------------------- Copyright © 2014 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22802,7 +48904,7 @@ Copyright © 2015 Google, Inc. Copyright © 2019 Adobe Inc. Copyright © 2019 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22826,6 +48928,9 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use-machine.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use-machine.rl +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic.hh FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use-machine.hh @@ -22835,7 +48940,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use.cc Copyright © 2015 Mozilla Foundation. Copyright © 2015 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22859,13 +48964,14 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-directwrite.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-directwrite.h TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-directwrite.cc FILE: ../../../third_party/harfbuzz/src/hb-directwrite.h ---------------------------------------------------------------------------------------------------- Copyright © 2015-2019 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22896,7 +49002,7 @@ Copyright © 2016 Elie Roux Copyright © 2018 Google, Inc. Copyright © 2018-2019 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22920,13 +49026,14 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-color-cbdt-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-post-table.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-color-cbdt-table.hh FILE: ../../../third_party/harfbuzz/src/hb-ot-post-table.hh ---------------------------------------------------------------------------------------------------- Copyright © 2016 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22950,6 +49057,7 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-color-cpal-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-color.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-color-cpal-table.hh FILE: ../../../third_party/harfbuzz/src/hb-ot-color.cc @@ -22957,7 +49065,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-color.cc Copyright © 2016 Google, Inc. Copyright © 2018 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -22988,7 +49096,7 @@ Copyright © 2016 Google, Inc. Copyright © 2018 Khaled Hosny Copyright © 2018 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23012,6 +49120,8 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-math-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-math.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-math.h TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-math-table.hh FILE: ../../../third_party/harfbuzz/src/hb-ot-math.cc @@ -23019,7 +49129,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-math.h ---------------------------------------------------------------------------------------------------- Copyright © 2016 Igalia S.L. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23043,6 +49153,19 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-common.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-morx-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-debug.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-kern.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-kern-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-post-macroman.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var-avar-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var-fvar-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var-hvar-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var-mvar-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-string-array.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-common.hh FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-morx-table.hh @@ -23061,7 +49184,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-string-array.hh ---------------------------------------------------------------------------------------------------- Copyright © 2017 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23091,7 +49214,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-aat-layout.cc Copyright © 2017 Google, Inc. Copyright © 2018 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23121,7 +49244,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-algs.hh Copyright © 2017 Google, Inc. Copyright © 2019 Facebook, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23150,7 +49273,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-vector.hh ---------------------------------------------------------------------------------------------------- Copyright © 2017,2018 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23174,6 +49297,17 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-ankr-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-bsln-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-feat-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-just-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-ltag-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-aat.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-color-svg-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-gasp-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-metrics.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-metrics.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-stat-table.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-ankr-table.hh FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-bsln-table.hh @@ -23190,7 +49324,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-stat-table.hh ---------------------------------------------------------------------------------------------------- Copyright © 2018 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23214,6 +49348,7 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-kerx-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-trak-table.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-kerx-table.hh FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-trak-table.hh @@ -23221,7 +49356,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-trak-table.hh Copyright © 2018 Ebrahim Byagowi Copyright © 2018 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23245,6 +49380,8 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-color-colr-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-color-colrv1-closure.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-color-sbix-table.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-color-colr-table.hh FILE: ../../../third_party/harfbuzz/src/hb-ot-color-colrv1-closure.hh @@ -23253,7 +49390,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-color-sbix-table.hh Copyright © 2018 Ebrahim Byagowi Copyright © 2020 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23282,7 +49419,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-name.h ---------------------------------------------------------------------------------------------------- Copyright © 2018 Ebrahim Byagowi. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23306,6 +49443,33 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-map.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-array.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-map.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-map.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-map.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-meta.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-null.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-deprecated.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-face.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-hdmx-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-name-language-static.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-name-language.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-name.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-os2-unicode-ranges.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-khmer.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-vowel-constraints.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-static.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-input.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-input.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-plan.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-plan.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-subset.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-subset.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-subset.hh +ORIGIN: ../../../third_party/harfbuzz/src/test-iter.cc +ORIGIN: ../../../third_party/harfbuzz/src/test-ot-name.cc +ORIGIN: ../../../third_party/harfbuzz/src/test-unicode-ranges.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-aat-map.hh FILE: ../../../third_party/harfbuzz/src/hb-array.hh @@ -23338,7 +49502,7 @@ FILE: ../../../third_party/harfbuzz/src/test-unicode-ranges.cc ---------------------------------------------------------------------------------------------------- Copyright © 2018 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23368,7 +49532,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-iter.hh Copyright © 2018 Google, Inc. Copyright © 2019 Facebook, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23392,6 +49556,22 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-cff-interp-common.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-cff-interp-cs-common.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-cff-interp-dict-common.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-cff1-interp-cs.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-cff2-interp-cs.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cff-common.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cff1-table.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cff1-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cff2-table.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cff2-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-vorg-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-cff-common.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-cff-common.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-cff1.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-cff1.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-cff2.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-subset-cff2.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-cff-interp-common.hh FILE: ../../../third_party/harfbuzz/src/hb-cff-interp-cs-common.hh @@ -23413,7 +49593,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-subset-cff2.hh ---------------------------------------------------------------------------------------------------- Copyright © 2018 Adobe Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23442,7 +49622,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-metrics.cc ---------------------------------------------------------------------------------------------------- Copyright © 2018-2019 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23472,7 +49652,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-ot-var-gvar-table.hh Copyright © 2019 Adobe Inc. Copyright © 2019 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23496,6 +49676,8 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cff1-std-str.hh +ORIGIN: ../../../third_party/harfbuzz/src/test-bimap.cc +ORIGIN: ../../../third_party/harfbuzz/src/test-ot-glyphname.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-cff1-std-str.hh FILE: ../../../third_party/harfbuzz/src/test-bimap.cc @@ -23503,7 +49685,7 @@ FILE: ../../../third_party/harfbuzz/src/test-ot-glyphname.cc ---------------------------------------------------------------------------------------------------- Copyright © 2019 Adobe, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23527,6 +49709,19 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-opbd-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-gdi.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-gdi.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-number-parser.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-number-parser.rl +ORIGIN: ../../../third_party/harfbuzz/src/hb-number.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-number.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-meta-table.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-meta.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-meta.h +ORIGIN: ../../../third_party/harfbuzz/src/hb-style.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-style.h +ORIGIN: ../../../third_party/harfbuzz/src/test-number.cc +ORIGIN: ../../../third_party/harfbuzz/src/test-ot-meta.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-opbd-table.hh FILE: ../../../third_party/harfbuzz/src/hb-gdi.cc @@ -23545,7 +49740,7 @@ FILE: ../../../third_party/harfbuzz/src/test-ot-meta.cc ---------------------------------------------------------------------------------------------------- Copyright © 2019 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23569,6 +49764,8 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-config.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-pool.hh +ORIGIN: ../../../third_party/harfbuzz/src/test-algs.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-config.hh FILE: ../../../third_party/harfbuzz/src/hb-pool.hh @@ -23576,7 +49773,7 @@ FILE: ../../../third_party/harfbuzz/src/test-algs.cc ---------------------------------------------------------------------------------------------------- Copyright © 2019 Facebook, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23605,7 +49802,7 @@ FILE: ../../../third_party/harfbuzz/src/hb-bimap.hh ---------------------------------------------------------------------------------------------------- Copyright © 2019 Adobe Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23629,13 +49826,14 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-draw.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-draw.h TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-draw.cc FILE: ../../../third_party/harfbuzz/src/hb-draw.h ---------------------------------------------------------------------------------------------------- Copyright © 2019-2020 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23659,13 +49857,14 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/failing-alloc.c +ORIGIN: ../../../third_party/harfbuzz/src/hb-draw.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/failing-alloc.c FILE: ../../../third_party/harfbuzz/src/hb-draw.hh ---------------------------------------------------------------------------------------------------- Copyright © 2020 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23689,6 +49888,10 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-priority-queue.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-repacker.hh +ORIGIN: ../../../third_party/harfbuzz/src/test-array.cc +ORIGIN: ../../../third_party/harfbuzz/src/test-priority-queue.cc +ORIGIN: ../../../third_party/harfbuzz/src/test-repacker.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-priority-queue.hh FILE: ../../../third_party/harfbuzz/src/hb-repacker.hh @@ -23698,7 +49901,7 @@ FILE: ../../../third_party/harfbuzz/src/test-repacker.cc ---------------------------------------------------------------------------------------------------- Copyright © 2020 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23722,6 +49925,8 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/test-map.cc +ORIGIN: ../../../third_party/harfbuzz/src/test-set.cc +ORIGIN: ../../../third_party/harfbuzz/src/test-vector.cc TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/test-map.cc FILE: ../../../third_party/harfbuzz/src/test-set.cc @@ -23729,7 +49934,7 @@ FILE: ../../../third_party/harfbuzz/src/test-vector.cc ---------------------------------------------------------------------------------------------------- Copyright © 2021 Behdad Esfahbod - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23753,13 +49958,14 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-syllabic.cc +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-syllabic.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-syllabic.cc FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-syllabic.hh ---------------------------------------------------------------------------------------------------- Copyright © 2021 Behdad Esfahbod. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23783,13 +49989,14 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== LIBRARY: harfbuzz ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-post-table-v2subset.hh +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var-common.hh TYPE: LicenseType.unknown FILE: ../../../third_party/harfbuzz/src/hb-ot-post-table-v2subset.hh FILE: ../../../third_party/harfbuzz/src/hb-ot-var-common.hh ---------------------------------------------------------------------------------------------------- Copyright © 2021 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -23811,383 +50018,139 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== ==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/COPYING -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/.circleci/config.yml -FILE: ../../../third_party/harfbuzz/.codecov.yml -FILE: ../../../third_party/harfbuzz/.editorconfig -FILE: ../../../third_party/harfbuzz/THANKS -FILE: ../../../third_party/harfbuzz/TODO -FILE: ../../../third_party/harfbuzz/docs/HarfBuzz.png -FILE: ../../../third_party/harfbuzz/docs/HarfBuzz.svg -FILE: ../../../third_party/harfbuzz/docs/harfbuzz-docs.xml -FILE: ../../../third_party/harfbuzz/docs/meson.build -FILE: ../../../third_party/harfbuzz/docs/usermanual-buffers-language-script-and-direction.xml -FILE: ../../../third_party/harfbuzz/docs/usermanual-clusters.xml -FILE: ../../../third_party/harfbuzz/docs/usermanual-fonts-and-faces.xml -FILE: ../../../third_party/harfbuzz/docs/usermanual-getting-started.xml -FILE: ../../../third_party/harfbuzz/docs/usermanual-glyph-information.xml -FILE: ../../../third_party/harfbuzz/docs/usermanual-install-harfbuzz.xml -FILE: ../../../third_party/harfbuzz/docs/usermanual-integration.xml -FILE: ../../../third_party/harfbuzz/docs/usermanual-object-model.xml -FILE: ../../../third_party/harfbuzz/docs/usermanual-opentype-features.xml -FILE: ../../../third_party/harfbuzz/docs/usermanual-shaping-concepts.xml -FILE: ../../../third_party/harfbuzz/docs/usermanual-utilities.xml -FILE: ../../../third_party/harfbuzz/docs/usermanual-what-is-harfbuzz.xml -FILE: ../../../third_party/harfbuzz/docs/version.xml.in -FILE: ../../../third_party/harfbuzz/harfbuzz.doap -FILE: ../../../third_party/harfbuzz/meson.build -FILE: ../../../third_party/harfbuzz/perf/fonts/Amiri-Regular.ttf -FILE: ../../../third_party/harfbuzz/perf/fonts/NotoNastaliqUrdu-Regular.ttf -FILE: ../../../third_party/harfbuzz/perf/fonts/NotoSansDevanagari-Regular.ttf -FILE: ../../../third_party/harfbuzz/perf/fonts/Roboto-Regular.ttf -FILE: ../../../third_party/harfbuzz/perf/meson.build -FILE: ../../../third_party/harfbuzz/perf/perf-draw.hh -FILE: ../../../third_party/harfbuzz/perf/perf-extents.hh -FILE: ../../../third_party/harfbuzz/perf/perf-shaping.hh -FILE: ../../../third_party/harfbuzz/perf/perf.cc -FILE: ../../../third_party/harfbuzz/src/Makefile.sources -FILE: ../../../third_party/harfbuzz/src/harfbuzz-config.cmake.in -FILE: ../../../third_party/harfbuzz/src/harfbuzz-gobject.pc.in -FILE: ../../../third_party/harfbuzz/src/harfbuzz-icu.pc.in -FILE: ../../../third_party/harfbuzz/src/harfbuzz-subset.pc.in -FILE: ../../../third_party/harfbuzz/src/harfbuzz.cc -FILE: ../../../third_party/harfbuzz/src/harfbuzz.pc.in -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-joining-list.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic-table.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-vowel-constraints.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-tag-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ucd-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-unicode-emoji-table.hh -FILE: ../../../third_party/harfbuzz/src/meson.build -FILE: ../../../third_party/harfbuzz/src/update-unicode-tables.make -FILE: ../../../third_party/harfbuzz/subprojects/cairo.wrap -FILE: ../../../third_party/harfbuzz/subprojects/freetype2.wrap -FILE: ../../../third_party/harfbuzz/subprojects/glib.wrap -FILE: ../../../third_party/harfbuzz/subprojects/google-benchmark.wrap -FILE: ../../../third_party/harfbuzz/subprojects/packagefiles/ragel/meson.build -FILE: ../../../third_party/harfbuzz/subprojects/ragel.wrap -FILE: ../../../third_party/harfbuzz/subprojects/ttf-parser.wrap ----------------------------------------------------------------------------------------------------- -HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. -For parts of HarfBuzz that are licensed under different licenses see individual -files names COPYING in subdirectories where applicable. - -Copyright © 2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020 Google, Inc. -Copyright © 2018,2019,2020 Ebrahim Byagowi -Copyright © 2019,2020 Facebook, Inc. -Copyright © 2012 Mozilla Foundation -Copyright © 2011 Codethink Limited -Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) -Copyright © 2009 Keith Stribley -Copyright © 2009 Martin Hosken and SIL International -Copyright © 2007 Chris Wilson -Copyright © 2005,2006,2020,2021 Behdad Esfahbod -Copyright © 2005 David Turner -Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc. -Copyright © 1998-2004 David Turner and Werner Lemberg - -For full copyright notices consult the individual files in the package. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: json -ORIGIN: ../../../third_party/json/LICENSE.MIT -TYPE: LicenseType.mit -FILE: ../../../third_party/json/.clang-tidy -FILE: ../../../third_party/json/.lgtm.yml -FILE: ../../../third_party/json/BUILD.bazel -FILE: ../../../third_party/json/CITATION.cff -FILE: ../../../third_party/json/WORKSPACE.bazel -FILE: ../../../third_party/json/cmake/config.cmake.in -FILE: ../../../third_party/json/cmake/nlohmann_jsonConfigVersion.cmake.in -FILE: ../../../third_party/json/cmake/pkg-config.pc.in -FILE: ../../../third_party/json/include/nlohmann/detail/json_custom_base_class.hpp -FILE: ../../../third_party/json/meson.build -FILE: ../../../third_party/json/nlohmann_json.natvis -FILE: ../../../third_party/json/tools/amalgamate/config_json.json -FILE: ../../../third_party/json/tools/amalgamate/config_json_fwd.json -FILE: ../../../third_party/json/tools/generate_natvis/nlohmann_json.natvis.j2 -FILE: ../../../third_party/json/tools/macro_builder/main.cpp -FILE: ../../../third_party/json/tools/serve_header/demo.png -FILE: ../../../third_party/json/tools/serve_header/serve_header.yml.example -FILE: ../../../third_party/json/wsjcpp.yml ----------------------------------------------------------------------------------------------------- -MIT License - -Copyright (c) 2013-2022 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: angle -ORIGIN: ../../../third_party/angle/src/third_party/ceval/LICENSE -TYPE: LicenseType.mit -FILE: ../../../third_party/angle/src/third_party/ceval/ceval.h -FILE: ../../../third_party/angle/src/third_party/ceval/package.json -FILE: ../../../third_party/angle/src/third_party/ceval/patches/0001-remove-sprintf.patch ----------------------------------------------------------------------------------------------------- -MIT License - -Copyright (c) 2021 e_t - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: root_certificates -ORIGIN: ../../../third_party/root_certificates/certdata.pem -TYPE: LicenseType.mpl -FILE: ../../../third_party/root_certificates/certdata.pem +LIBRARY: glslang +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/SpirvIntrinsics.h +ORIGIN: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/SpirvIntrinsics.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/Include/SpirvIntrinsics.h +FILE: ../../../third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/SpirvIntrinsics.cpp ---------------------------------------------------------------------------------------------------- -Mozilla Public License -Version 2.0 - -1. Definitions +Copyright(C) 2021 Advanced Micro Devices, Inc. -1.1. “Contributor” - -means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. - -1.2. “Contributor Version” - -means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - -means Covered Software of a particular Contributor. - -1.4. “Covered Software” - -means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. - -1.5. “Incompatible With Secondary Licenses” - -means - - a. that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or - - b. that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. - -1.6. “Executable Form” - -means any form of the work other than Source Code Form. - -1.7. “Larger Work” - -means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. - -1.8. “License” - -means this document. - -1.9. “Licensable” - -means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. - -1.10. “Modifications” - -means any of the following: - - a. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or - - b. any new file in Source Code Form that contains any Covered Software. - -1.11. “Patent Claims” of a Contributor - -means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. - -1.12. “Secondary License” - -means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. - -1.13. “Source Code Form” - -means the form of the work preferred for making modifications. - -1.14. “You” (or “Your”) - -means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. - -2. License Grants and Conditions - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: - - a. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and - - b. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: - - a. for any code that a Contributor has removed from Covered Software; or - - b. for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or - - c. under Patent Claims infringed by Covered Software in the absence of its Contributions. - -This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. - -3. Responsibilities - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - - a. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and - - b. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - -Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - -This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. - -10. Versions of the License +All rights reserved. -10.1. New Versions +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -10.2. Effect of New Versions + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. -You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -10.3. Modified Versions +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/ssl/d1_srtp.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/src/ssl/d1_srtp.cc +---------------------------------------------------------------------------------------------------- +DTLS code by Eric Rescorla -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses +Copyright (C) 2006, Network Resonance, Inc. +Copyright (C) 2011, RTFM, Inc. +==================================================================================================== -If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/COPYING +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/.ci/win32-cross-file.txt +FILE: ../../../third_party/harfbuzz/.ci/win64-cross-file.txt +FILE: ../../../third_party/harfbuzz/.circleci/config.yml +FILE: ../../../third_party/harfbuzz/.codecov.yml +FILE: ../../../third_party/harfbuzz/harfbuzz.doap +FILE: ../../../third_party/harfbuzz/meson_options.txt +FILE: ../../../third_party/harfbuzz/perf/fonts/Amiri-Regular.ttf +FILE: ../../../third_party/harfbuzz/perf/fonts/NotoNastaliqUrdu-Regular.ttf +FILE: ../../../third_party/harfbuzz/perf/fonts/NotoSansDevanagari-Regular.ttf +FILE: ../../../third_party/harfbuzz/perf/fonts/Roboto-Regular.ttf +FILE: ../../../third_party/harfbuzz/perf/perf-draw.hh +FILE: ../../../third_party/harfbuzz/perf/perf-extents.hh +FILE: ../../../third_party/harfbuzz/perf/perf-shaping.hh +FILE: ../../../third_party/harfbuzz/perf/perf.cc +FILE: ../../../third_party/harfbuzz/perf/texts/en-thelittleprince.txt +FILE: ../../../third_party/harfbuzz/perf/texts/en-words.txt +FILE: ../../../third_party/harfbuzz/perf/texts/fa-monologue.txt +FILE: ../../../third_party/harfbuzz/perf/texts/fa-thelittleprince.txt +FILE: ../../../third_party/harfbuzz/src/harfbuzz-config.cmake.in +FILE: ../../../third_party/harfbuzz/src/harfbuzz-gobject.pc.in +FILE: ../../../third_party/harfbuzz/src/harfbuzz-icu.pc.in +FILE: ../../../third_party/harfbuzz/src/harfbuzz-subset.pc.in +FILE: ../../../third_party/harfbuzz/src/harfbuzz.cc +FILE: ../../../third_party/harfbuzz/src/harfbuzz.pc.in +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-joining-list.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic-table.cc +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-vowel-constraints.cc +FILE: ../../../third_party/harfbuzz/src/hb-ot-tag-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ucd-table.hh +FILE: ../../../third_party/harfbuzz/subprojects/cairo.wrap +FILE: ../../../third_party/harfbuzz/subprojects/freetype2.wrap +FILE: ../../../third_party/harfbuzz/subprojects/glib.wrap +FILE: ../../../third_party/harfbuzz/subprojects/google-benchmark.wrap +FILE: ../../../third_party/harfbuzz/subprojects/ragel.wrap +FILE: ../../../third_party/harfbuzz/subprojects/ttf-parser.wrap +---------------------------------------------------------------------------------------------------- +HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. +For parts of HarfBuzz that are licensed under different licenses see individual +files names COPYING in subdirectories where applicable. -Exhibit A - Source Code Form License Notice +Copyright © 2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020 Google, Inc. +Copyright © 2018,2019,2020 Ebrahim Byagowi +Copyright © 2019,2020 Facebook, Inc. +Copyright © 2012 Mozilla Foundation +Copyright © 2011 Codethink Limited +Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) +Copyright © 2009 Keith Stribley +Copyright © 2009 Martin Hosken and SIL International +Copyright © 2007 Chris Wilson +Copyright © 2005,2006,2020,2021 Behdad Esfahbod +Copyright © 2005 David Turner +Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc. +Copyright © 1998-2004 David Turner and Werner Lemberg - This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. +For full copyright notices consult the individual files in the package. -If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. -You may add additional accurate notices of copyright ownership. +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. -Exhibit B - “Incompatible With Secondary Licenses” Notice +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. - This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0. +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== ==================================================================================================== @@ -24200,6 +50163,7 @@ Mozilla Public License Version 2.0 ================================== 1. Definitions +-------------- 1.1. "Contributor" means each individual or legal entity that creates, contributes to @@ -24251,1292 +50215,873 @@ Mozilla Public License Version 2.0 Software; or (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -* 6. Disclaimer of Warranty - -* Covered Software is provided under this License on an "as is" -* basis, without warranty of any kind, either expressed, implied, or -* statutory, including, without limitation, warranties that the -* Covered Software is free of defects, merchantable, fit for a -* particular purpose or non-infringing. The entire risk as to the -* quality and performance of the Covered Software is with You. -* Should any Covered Software prove defective in any respect, You -* (not any Contributor) assume the cost of any necessary servicing, -* repair, or correction. This disclaimer of warranty constitutes an -* essential part of this License. No use of any Covered Software is -* authorized under this License except under this disclaimer. - -* 7. Limitation of Liability - -* Under no circumstances and under no legal theory, whether tort -* (including negligence), contract, or otherwise, shall any -* Contributor, or anyone who distributes Covered Software as -* permitted above, be liable to You for any direct, indirect, -* special, incidental, or consequential damages of any character -* including, without limitation, damages for lost profits, loss of -* goodwill, work stoppage, computer failure or malfunction, or any -* and all other commercial damages or losses, even if such party -* shall have been informed of the possibility of such damages. This -* limitation of liability shall not apply to liability for death or -* personal injury resulting from such party's negligence to the -* extent applicable law prohibits such limitation. Some -* jurisdictions do not allow the exclusion or limitation of -* incidental or consequential damages, so this exclusion and -* limitation may not apply to You. - -8. Litigation - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. -==================================================================================================== - -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/LICENSE -TYPE: LicenseType.openssl -FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha256-armv8.S -FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha512-armv8.S -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/bsaes-armv7.S -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha256-armv4.S -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha512-armv4.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/sha256-armv8.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/sha512-armv8.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/bsaes-armv7.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha256-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha512-armv4.S -FILE: ../../../third_party/boringssl/src/crypto/asn1/charmap.h -FILE: ../../../third_party/boringssl/src/crypto/err/asn1.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/bio.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/bn.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/cipher.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/conf.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/dh.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/digest.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/dsa.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/ec.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/ecdh.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/ecdsa.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/engine.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/evp.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/hkdf.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/obj.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/pem.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/pkcs7.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/pkcs8.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/rsa.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/ssl.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/trust_token.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/x509.errordata -FILE: ../../../third_party/boringssl/src/crypto/err/x509v3.errordata -FILE: ../../../third_party/boringssl/src/crypto/evp/scrypt.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/asm/x86_64-gcc.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/rsaz_exp.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/rsaz_exp.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/make_tables.go -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64-table.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/fips_shared.lds -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/intcheck1.png -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/intcheck2.png -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/intcheck3.png -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/[Content_Types].xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/_rels/.rels -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/customXml/_rels/item1.xml.rels -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/customXml/item1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/customXml/itemProps1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/docProps/app.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/docProps/core.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/_rels/document.xml.rels -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/document.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/endnotes.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/fontTable.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/footer1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/footer2.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/footer3.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/footnotes.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/header1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/header2.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/header3.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/media/image1.png -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/media/image2.png -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/numbering.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/settings.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/styles.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/theme/theme1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/webSettings.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/[Content_Types].xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/_rels/.rels -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/customXml/_rels/item1.xml.rels -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/customXml/item1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/customXml/itemProps1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/docProps/app.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/docProps/core.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/docProps/thumbnail.emf -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/_rels/document.xml.rels -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/document.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/endnotes.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/fontTable.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/footer1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/footnotes.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/media/image1.jpeg -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/media/image2.png -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/numbering.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/settings.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/styles.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/theme/theme1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/webSettings.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/[Content_Types].xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/_rels/.rels -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/customXml/_rels/item1.xml.rels -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/customXml/item1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/customXml/itemProps1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/docProps/app.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/docProps/core.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/docProps/thumbnail.emf -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/_rels/document.xml.rels -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/document.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/endnotes.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/fontTable.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/footer1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/footer2.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/footer3.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/footnotes.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/header1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/header2.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/header3.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/media/image1.png -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/media/image2.png -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/numbering.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/settings.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/styles.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/theme/theme1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/webSettings.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/[Content_Types].xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/_rels/.rels -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/customXml/_rels/item1.xml.rels -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/customXml/item1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/customXml/itemProps1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/docProps/app.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/docProps/core.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/_rels/document.xml.rels -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/document.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/endnotes.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/fontTable.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/footer1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/footnotes.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/media/image1.png -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/media/image2.png -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/numbering.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/settings.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/styles.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/theme/theme1.xml -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/webSettings.xml -FILE: ../../../third_party/boringssl/src/crypto/hpke/test-vectors.json -FILE: ../../../third_party/boringssl/src/crypto/obj/obj_mac.num -FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_arm_asm.S -FILE: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_print.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_time_test.cc -FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_ocsp.c -FILE: ../../../third_party/boringssl/src/go.mod -FILE: ../../../third_party/boringssl/src/go.sum -FILE: ../../../third_party/boringssl/src/ssl/bio_ssl.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_c_test.c -FILE: ../../../third_party/boringssl/src/util/all_tests.json -FILE: ../../../third_party/boringssl/src/util/bot/UPDATING -FILE: ../../../third_party/boringssl/src/util/bot/cmake-win32.zip.sha1 -FILE: ../../../third_party/boringssl/src/util/bot/nasm-win32.exe.sha1 -FILE: ../../../third_party/boringssl/src/util/bot/perl-win32.zip.sha1 -FILE: ../../../third_party/boringssl/src/util/bot/sde-linux64.tar.bz2.sha1 -FILE: ../../../third_party/boringssl/src/util/bot/sde-win32.tar.bz2.sha1 -FILE: ../../../third_party/boringssl/src/util/doc.config -FILE: ../../../third_party/boringssl/src/util/doc.go -FILE: ../../../third_party/boringssl/src/util/fipstools/acvp/acvptool/parser.peg.go -FILE: ../../../third_party/boringssl/src/util/fipstools/cavp/run_cavp.go -FILE: ../../../third_party/boringssl/src/util/fipstools/delocate/delocate.peg.go -FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/sha256-armv8.S -FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/sha512-armv8.S ----------------------------------------------------------------------------------------------------- -OpenSSL License + Software. - ==================================================================== - Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +1.13. "Source Code Form" + means the form of the work preferred for making modifications. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - - 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - - 5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - - THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - ==================================================================== - - This product includes cryptographic software written by Eric Young - (eay@cryptsoft.com). This product includes software written by Tim - Hudson (tjh@cryptsoft.com). +2. License Grants and Conditions +-------------------------------- -Original SSLeay License +2.1. Grants -* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -* All rights reserved. - -* This package is an SSL implementation written -* by Eric Young (eay@cryptsoft.com). -* The implementation was written so as to conform with Netscapes SSL. - -* This library is free for commercial and non-commercial use as long as -* the following conditions are aheared to. The following conditions -* apply to all code found in this distribution, be it the RC4, RSA, -* lhash, DES, etc., code; not just the SSL code. The SSL documentation -* included with this distribution is covered by the same copyright terms -* except that the holder is Tim Hudson (tjh@cryptsoft.com). - -* Copyright remains Eric Young's, and as such any Copyright notices in -* the code are not to be removed. -* If this package is used in a product, Eric Young should be given attribution -* as the author of the parts of the library used. -* This can be in the form of a textual message at program startup or -* in documentation (online or textual) provided with the package. - -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions -* are met: -* 1. Redistributions of source code must retain the copyright -* notice, this list of conditions and the following disclaimer. -* 2. Redistributions in binary form must reproduce the above copyright -* notice, this list of conditions and the following disclaimer in the -* documentation and/or other materials provided with the distribution. -* 3. All advertising materials mentioning features or use of this software -* must display the following acknowledgement: -* "This product includes cryptographic software written by -* Eric Young (eay@cryptsoft.com)" -* The word 'cryptographic' can be left out if the rouines from the library -* being used are not cryptographic related :-). -* 4. If you include any Windows specific code (or a derivative thereof) from -* the apps directory (application code) you must include an acknowledgement: -* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -* SUCH DAMAGE. - -* The licence and distribution terms for any publically available version or -* derivative of this code cannot be changed. i.e. this code cannot simply be -* copied and put under another distribution licence -* [including the GNU Public Licence.] +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: -ISC license used for completely new code in BoringSSL: +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and -/* Copyright (c) 2015, Google Inc. +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. - * Permission to use, copy, modify, and/or distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. +2.2. Effective Date - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY - * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION - * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. -The code in third_party/fiat carries the MIT license: +2.3. Limitations on Grant Scope -Copyright (c) 2015-2016 the fiat-crypto authors (see -https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +(a) for any code that a Contributor has removed from Covered Software; + or -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. -Licenses for support code +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). -Parts of the TLS test suite are under the Go license. This code is not included -in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so -distributing code linked against BoringSSL does not trigger this license: +2.4. Subsequent Licenses -Copyright (c) 2009 The Go Authors. All rights reserved. +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +2.5. Representation - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +2.6. Fair Use -==================================================================================================== -LIBRARY: angle -LIBRARY: json -LIBRARY: rapidjson -ORIGIN: ../../../third_party/angle/include/GLES2/gl2.h -TYPE: LicenseType.mit -FILE: ../../../third_party/angle/include/GLES2/gl2.h -FILE: ../../../third_party/angle/include/GLES2/gl2ext.h -FILE: ../../../third_party/angle/include/GLES3/gl3.h -FILE: ../../../third_party/angle/include/GLES3/gl31.h -FILE: ../../../third_party/angle/include/GLES3/gl32.h -FILE: ../../../third_party/angle/include/GLX/glxext.h -FILE: ../../../third_party/json/include/nlohmann/adl_serializer.hpp -FILE: ../../../third_party/json/include/nlohmann/byte_container_with_subtype.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/abi_macros.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/conversions/from_json.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/conversions/to_chars.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/conversions/to_json.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/exceptions.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/hash.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/input/binary_reader.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/input/input_adapters.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/input/json_sax.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/input/lexer.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/input/parser.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/input/position_t.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/iterators/internal_iterator.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/iterators/iter_impl.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/iterators/iteration_proxy.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/iterators/iterator_traits.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/iterators/json_reverse_iterator.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/iterators/primitive_iterator.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/json_pointer.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/json_ref.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/macro_scope.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/macro_unscope.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/meta/call_std/begin.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/meta/call_std/end.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/meta/cpp_future.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/meta/detected.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/meta/identity_tag.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/meta/is_sax.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/meta/std_fs.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/meta/type_traits.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/meta/void_t.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/output/binary_writer.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/output/output_adapters.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/output/serializer.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/string_concat.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/string_escape.hpp -FILE: ../../../third_party/json/include/nlohmann/detail/value_t.hpp -FILE: ../../../third_party/json/include/nlohmann/json.hpp -FILE: ../../../third_party/json/include/nlohmann/json_fwd.hpp -FILE: ../../../third_party/json/include/nlohmann/ordered_map.hpp -FILE: ../../../third_party/json/include/nlohmann/thirdparty/hedley/hedley.hpp -FILE: ../../../third_party/json/include/nlohmann/thirdparty/hedley/hedley_undef.hpp -FILE: ../../../third_party/json/single_include/nlohmann/json.hpp -FILE: ../../../third_party/json/single_include/nlohmann/json_fwd.hpp -FILE: ../../../third_party/rapidjson/include/rapidjson/allocators.h -FILE: ../../../third_party/rapidjson/include/rapidjson/cursorstreamwrapper.h -FILE: ../../../third_party/rapidjson/include/rapidjson/document.h -FILE: ../../../third_party/rapidjson/include/rapidjson/encodedstream.h -FILE: ../../../third_party/rapidjson/include/rapidjson/encodings.h -FILE: ../../../third_party/rapidjson/include/rapidjson/error/en.h -FILE: ../../../third_party/rapidjson/include/rapidjson/error/error.h -FILE: ../../../third_party/rapidjson/include/rapidjson/filereadstream.h -FILE: ../../../third_party/rapidjson/include/rapidjson/filewritestream.h -FILE: ../../../third_party/rapidjson/include/rapidjson/fwd.h -FILE: ../../../third_party/rapidjson/include/rapidjson/internal/biginteger.h -FILE: ../../../third_party/rapidjson/include/rapidjson/internal/diyfp.h -FILE: ../../../third_party/rapidjson/include/rapidjson/internal/dtoa.h -FILE: ../../../third_party/rapidjson/include/rapidjson/internal/ieee754.h -FILE: ../../../third_party/rapidjson/include/rapidjson/internal/itoa.h -FILE: ../../../third_party/rapidjson/include/rapidjson/internal/meta.h -FILE: ../../../third_party/rapidjson/include/rapidjson/internal/pow10.h -FILE: ../../../third_party/rapidjson/include/rapidjson/internal/regex.h -FILE: ../../../third_party/rapidjson/include/rapidjson/internal/stack.h -FILE: ../../../third_party/rapidjson/include/rapidjson/internal/strfunc.h -FILE: ../../../third_party/rapidjson/include/rapidjson/internal/strtod.h -FILE: ../../../third_party/rapidjson/include/rapidjson/internal/swap.h -FILE: ../../../third_party/rapidjson/include/rapidjson/istreamwrapper.h -FILE: ../../../third_party/rapidjson/include/rapidjson/memorybuffer.h -FILE: ../../../third_party/rapidjson/include/rapidjson/memorystream.h -FILE: ../../../third_party/rapidjson/include/rapidjson/ostreamwrapper.h -FILE: ../../../third_party/rapidjson/include/rapidjson/pointer.h -FILE: ../../../third_party/rapidjson/include/rapidjson/prettywriter.h -FILE: ../../../third_party/rapidjson/include/rapidjson/rapidjson.h -FILE: ../../../third_party/rapidjson/include/rapidjson/reader.h -FILE: ../../../third_party/rapidjson/include/rapidjson/schema.h -FILE: ../../../third_party/rapidjson/include/rapidjson/stream.h -FILE: ../../../third_party/rapidjson/include/rapidjson/stringbuffer.h -FILE: ../../../third_party/rapidjson/include/rapidjson/writer.h ----------------------------------------------------------------------------------------------------- -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +2.7. Conditions -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. -==================================================================================================== -LIBRARY: libtess2 -ORIGIN: ../../../third_party/libtess2/LICENSE.txt -TYPE: LicenseType.mit -FILE: ../../../third_party/libtess2/Bin/bg.svg -FILE: ../../../third_party/libtess2/Bin/fg.svg -FILE: ../../../third_party/libtess2/premake4.lua ----------------------------------------------------------------------------------------------------- -SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) -Copyright (C) [dates of first publication] Silicon Graphics, Inc. -All Rights Reserved. +3. Responsibilities +------------------- -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: +3.1. Distribution of Source Form -The above copyright notice including the dates of first publication and either this -permission notice or a reference to http://oss.sgi.com/projects/FreeB/ shall be -included in all copies or substantial portions of the Software. +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, -INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC. -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE -OR OTHER DEALINGS IN THE SOFTWARE. +3.2. Distribution of Executable Form -Except as contained in this notice, the name of Silicon Graphics, Inc. shall not -be used in advertising or otherwise to promote the sale, use or other dealings in -this Software without prior written authorization from Silicon Graphics, Inc. -==================================================================================================== +If You distribute Covered Software in Executable Form then: -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../third_party/icu/DIR_METADATA -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/cast/brkitr.patch -FILE: ../../../third_party/icu/cast/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat.hash -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/flutter/brkitr.patch -FILE: ../../../third_party/icu/flutter/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_appendable_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_to_case_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/ardatepattern.patch -FILE: ../../../third_party/icu/patches/atomic_template_instantiation.patch -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/configure.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fix-bool-mix-use.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/iso2022jp.patch -FILE: ../../../third_party/icu/patches/isvalidenum.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/restrace.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/uemoji.icu -FILE: ../../../third_party/icu/source/data/in/ulayout.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/tzres/metaZones.res -FILE: ../../../third_party/icu/tzres/timezoneTypes.res -FILE: ../../../third_party/icu/tzres/zoneinfo64.res ----------------------------------------------------------------------------------------------------- -See Terms of Use -for definitions of Unicode Inc.’s Data Files and Software. +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and -NOTICE TO USER: Carefully read the following legal agreement. -BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S -DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), -YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE -TERMS AND CONDITIONS OF THIS AGREEMENT. -IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE -THE DATA FILES OR SOFTWARE. +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. -COPYRIGHT AND PERMISSION NOTICE +3.3. Distribution of a Larger Work -Copyright © 1991-2022 Unicode, Inc. All rights reserved. -Distributed under the Terms of Use in https://www.unicode.org/copyright.html. +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. +3.4. Notices -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. -==================================================================================================== +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. -==================================================================================================== -LIBRARY: rapidjson -ORIGIN: ../../../third_party/rapidjson/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/rapidjson/.gitmodules -FILE: ../../../third_party/rapidjson/RapidJSON.pc.in -FILE: ../../../third_party/rapidjson/RapidJSONConfig.cmake.in -FILE: ../../../third_party/rapidjson/RapidJSONConfigVersion.cmake.in -FILE: ../../../third_party/rapidjson/appveyor.yml -FILE: ../../../third_party/rapidjson/doc/Doxyfile.in -FILE: ../../../third_party/rapidjson/doc/Doxyfile.zh-cn.in -FILE: ../../../third_party/rapidjson/doc/diagram/architecture.dot -FILE: ../../../third_party/rapidjson/doc/diagram/architecture.png -FILE: ../../../third_party/rapidjson/doc/diagram/insituparsing.dot -FILE: ../../../third_party/rapidjson/doc/diagram/insituparsing.png -FILE: ../../../third_party/rapidjson/doc/diagram/iterative-parser-states-diagram.dot -FILE: ../../../third_party/rapidjson/doc/diagram/iterative-parser-states-diagram.png -FILE: ../../../third_party/rapidjson/doc/diagram/move1.dot -FILE: ../../../third_party/rapidjson/doc/diagram/move1.png -FILE: ../../../third_party/rapidjson/doc/diagram/move2.dot -FILE: ../../../third_party/rapidjson/doc/diagram/move2.png -FILE: ../../../third_party/rapidjson/doc/diagram/move3.dot -FILE: ../../../third_party/rapidjson/doc/diagram/move3.png -FILE: ../../../third_party/rapidjson/doc/diagram/normalparsing.dot -FILE: ../../../third_party/rapidjson/doc/diagram/normalparsing.png -FILE: ../../../third_party/rapidjson/doc/diagram/simpledom.dot -FILE: ../../../third_party/rapidjson/doc/diagram/simpledom.png -FILE: ../../../third_party/rapidjson/doc/diagram/tutorial.dot -FILE: ../../../third_party/rapidjson/doc/diagram/tutorial.png -FILE: ../../../third_party/rapidjson/doc/diagram/utilityclass.dot -FILE: ../../../third_party/rapidjson/doc/diagram/utilityclass.png -FILE: ../../../third_party/rapidjson/doc/logo/rapidjson.png -FILE: ../../../third_party/rapidjson/doc/logo/rapidjson.svg -FILE: ../../../third_party/rapidjson/doc/misc/DoxygenLayout.xml -FILE: ../../../third_party/rapidjson/doc/misc/footer.html -FILE: ../../../third_party/rapidjson/doc/misc/header.html -FILE: ../../../third_party/rapidjson/docker/debian/Dockerfile -FILE: ../../../third_party/rapidjson/example/archiver/archiver.cpp -FILE: ../../../third_party/rapidjson/example/archiver/archiver.h -FILE: ../../../third_party/rapidjson/example/archiver/archivertest.cpp -FILE: ../../../third_party/rapidjson/example/capitalize/capitalize.cpp -FILE: ../../../third_party/rapidjson/example/condense/condense.cpp -FILE: ../../../third_party/rapidjson/example/filterkey/filterkey.cpp -FILE: ../../../third_party/rapidjson/example/filterkeydom/filterkeydom.cpp -FILE: ../../../third_party/rapidjson/example/jsonx/jsonx.cpp -FILE: ../../../third_party/rapidjson/example/lookaheadparser/lookaheadparser.cpp -FILE: ../../../third_party/rapidjson/example/messagereader/messagereader.cpp -FILE: ../../../third_party/rapidjson/example/parsebyparts/parsebyparts.cpp -FILE: ../../../third_party/rapidjson/example/pretty/pretty.cpp -FILE: ../../../third_party/rapidjson/example/prettyauto/prettyauto.cpp -FILE: ../../../third_party/rapidjson/example/schemavalidator/schemavalidator.cpp -FILE: ../../../third_party/rapidjson/example/serialize/serialize.cpp -FILE: ../../../third_party/rapidjson/example/simpledom/simpledom.cpp -FILE: ../../../third_party/rapidjson/example/simplepullreader/simplepullreader.cpp -FILE: ../../../third_party/rapidjson/example/simplereader/simplereader.cpp -FILE: ../../../third_party/rapidjson/example/simplewriter/simplewriter.cpp -FILE: ../../../third_party/rapidjson/example/sortkeys/sortkeys.cpp -FILE: ../../../third_party/rapidjson/example/tutorial/tutorial.cpp -FILE: ../../../third_party/rapidjson/include_dirs.js -FILE: ../../../third_party/rapidjson/library.json -FILE: ../../../third_party/rapidjson/package.json ----------------------------------------------------------------------------------------------------- -Tencent is pleased to support the open source community by making RapidJSON available. - -Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. - -If you have downloaded a copy of the RapidJSON binary from Tencent, please note that the RapidJSON binary is licensed under the MIT License. -If you have downloaded a copy of the RapidJSON source code from Tencent, please note that RapidJSON source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of RapidJSON into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within RapidJSON. - -A copy of the MIT License is included in this file. - -Other dependencies and licenses: - -Open Source Software Licensed Under the BSD License: - -The msinttypes r29 -Copyright (c) 2006-2013 Alexander Chemeris -All rights reserved. +Exhibit A - Source Code Form License Notice +------------------------------------------- -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -* Neither the name of copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +You may add additional accurate notices of copyright ownership. -Terms of the MIT License: +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +You may obtain a copy of this library's Source Code Form from: https://dart.googlesource.com/root_certificates/+/692f6d6488af68e0121317a9c2c9eb393eb0ee50 -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== ==================================================================================================== -LIBRARY: rapidjson -ORIGIN: ../../../third_party/rapidjson/license.txt -TYPE: LicenseType.bsd -FILE: ../../../third_party/rapidjson/.gitmodules -FILE: ../../../third_party/rapidjson/RapidJSON.pc.in -FILE: ../../../third_party/rapidjson/RapidJSONConfig.cmake.in -FILE: ../../../third_party/rapidjson/RapidJSONConfigVersion.cmake.in -FILE: ../../../third_party/rapidjson/appveyor.yml -FILE: ../../../third_party/rapidjson/doc/Doxyfile.in -FILE: ../../../third_party/rapidjson/doc/Doxyfile.zh-cn.in -FILE: ../../../third_party/rapidjson/doc/diagram/architecture.dot -FILE: ../../../third_party/rapidjson/doc/diagram/architecture.png -FILE: ../../../third_party/rapidjson/doc/diagram/insituparsing.dot -FILE: ../../../third_party/rapidjson/doc/diagram/insituparsing.png -FILE: ../../../third_party/rapidjson/doc/diagram/iterative-parser-states-diagram.dot -FILE: ../../../third_party/rapidjson/doc/diagram/iterative-parser-states-diagram.png -FILE: ../../../third_party/rapidjson/doc/diagram/move1.dot -FILE: ../../../third_party/rapidjson/doc/diagram/move1.png -FILE: ../../../third_party/rapidjson/doc/diagram/move2.dot -FILE: ../../../third_party/rapidjson/doc/diagram/move2.png -FILE: ../../../third_party/rapidjson/doc/diagram/move3.dot -FILE: ../../../third_party/rapidjson/doc/diagram/move3.png -FILE: ../../../third_party/rapidjson/doc/diagram/normalparsing.dot -FILE: ../../../third_party/rapidjson/doc/diagram/normalparsing.png -FILE: ../../../third_party/rapidjson/doc/diagram/simpledom.dot -FILE: ../../../third_party/rapidjson/doc/diagram/simpledom.png -FILE: ../../../third_party/rapidjson/doc/diagram/tutorial.dot -FILE: ../../../third_party/rapidjson/doc/diagram/tutorial.png -FILE: ../../../third_party/rapidjson/doc/diagram/utilityclass.dot -FILE: ../../../third_party/rapidjson/doc/diagram/utilityclass.png -FILE: ../../../third_party/rapidjson/doc/logo/rapidjson.png -FILE: ../../../third_party/rapidjson/doc/logo/rapidjson.svg -FILE: ../../../third_party/rapidjson/doc/misc/DoxygenLayout.xml -FILE: ../../../third_party/rapidjson/doc/misc/footer.html -FILE: ../../../third_party/rapidjson/doc/misc/header.html -FILE: ../../../third_party/rapidjson/docker/debian/Dockerfile -FILE: ../../../third_party/rapidjson/example/archiver/archiver.cpp -FILE: ../../../third_party/rapidjson/example/archiver/archiver.h -FILE: ../../../third_party/rapidjson/example/archiver/archivertest.cpp -FILE: ../../../third_party/rapidjson/example/capitalize/capitalize.cpp -FILE: ../../../third_party/rapidjson/example/condense/condense.cpp -FILE: ../../../third_party/rapidjson/example/filterkey/filterkey.cpp -FILE: ../../../third_party/rapidjson/example/filterkeydom/filterkeydom.cpp -FILE: ../../../third_party/rapidjson/example/jsonx/jsonx.cpp -FILE: ../../../third_party/rapidjson/example/lookaheadparser/lookaheadparser.cpp -FILE: ../../../third_party/rapidjson/example/messagereader/messagereader.cpp -FILE: ../../../third_party/rapidjson/example/parsebyparts/parsebyparts.cpp -FILE: ../../../third_party/rapidjson/example/pretty/pretty.cpp -FILE: ../../../third_party/rapidjson/example/prettyauto/prettyauto.cpp -FILE: ../../../third_party/rapidjson/example/schemavalidator/schemavalidator.cpp -FILE: ../../../third_party/rapidjson/example/serialize/serialize.cpp -FILE: ../../../third_party/rapidjson/example/simpledom/simpledom.cpp -FILE: ../../../third_party/rapidjson/example/simplepullreader/simplepullreader.cpp -FILE: ../../../third_party/rapidjson/example/simplereader/simplereader.cpp -FILE: ../../../third_party/rapidjson/example/simplewriter/simplewriter.cpp -FILE: ../../../third_party/rapidjson/example/sortkeys/sortkeys.cpp -FILE: ../../../third_party/rapidjson/example/tutorial/tutorial.cpp -FILE: ../../../third_party/rapidjson/include_dirs.js -FILE: ../../../third_party/rapidjson/library.json -FILE: ../../../third_party/rapidjson/package.json ----------------------------------------------------------------------------------------------------- -Tencent is pleased to support the open source community by making RapidJSON available. - -Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. - -If you have downloaded a copy of the RapidJSON binary from Tencent, please note that the RapidJSON binary is licensed under the MIT License. -If you have downloaded a copy of the RapidJSON source code from Tencent, please note that RapidJSON source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of RapidJSON into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within RapidJSON. To avoid the problematic JSON license in your own projects, it's sufficient to exclude the bin/jsonchecker/ directory, as it's the only code under the JSON license. -A copy of the MIT License is included in this file. - -Other dependencies and licenses: - -Open Source Software Licensed Under the BSD License: - -The msinttypes r29 -Copyright (c) 2006-2013 Alexander Chemeris -All rights reserved. +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/LICENSE +TYPE: LicenseType.openssl +FILE: ../../../third_party/boringssl/ios-aarch64/crypto/chacha/chacha-armv8.S +FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/aesv8-armx64.S +FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/armv8-mont.S +FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/ghash-neon-armv8.S +FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/ghashv8-armx64.S +FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha1-armv8.S +FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha256-armv8.S +FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha512-armv8.S +FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/vpaes-armv8.S +FILE: ../../../third_party/boringssl/ios-arm/crypto/chacha/chacha-armv4.S +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/aesv8-armx32.S +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/armv4-mont.S +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/bsaes-armv7.S +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/ghash-armv4.S +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/ghashv8-armx32.S +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha1-armv4-large.S +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha256-armv4.S +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha512-armv4.S +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/vpaes-armv7.S +FILE: ../../../third_party/boringssl/linux-aarch64/crypto/chacha/chacha-armv8.S +FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/aesv8-armx64.S +FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/armv8-mont.S +FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/ghash-neon-armv8.S +FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/ghashv8-armx64.S +FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/sha1-armv8.S +FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/sha256-armv8.S +FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/sha512-armv8.S +FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/vpaes-armv8.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/chacha/chacha-armv4.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/aesv8-armx32.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/armv4-mont.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/bsaes-armv7.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/ghash-armv4.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/ghashv8-armx32.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha1-armv4-large.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha256-armv4.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha512-armv4.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/vpaes-armv7.S +FILE: ../../../third_party/boringssl/linux-ppc64le/crypto/fipsmodule/aesp8-ppc.S +FILE: ../../../third_party/boringssl/linux-ppc64le/crypto/fipsmodule/ghashp8-ppc.S +FILE: ../../../third_party/boringssl/linux-x86/crypto/chacha/chacha-x86.S +FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/aesni-x86.S +FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/bn-586.S +FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/co-586.S +FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/ghash-ssse3-x86.S +FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/ghash-x86.S +FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/md5-586.S +FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/sha1-586.S +FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/sha256-586.S +FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/sha512-586.S +FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/vpaes-x86.S +FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/x86-mont.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/chacha/chacha-x86_64.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-x86_64.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/ghash-x86_64.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/md5-x86_64.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/rdrand-x86_64.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/rsaz-avx2.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha1-x86_64.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha256-x86_64.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha512-x86_64.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont.S +FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont5.S +FILE: ../../../third_party/boringssl/mac-x86/crypto/chacha/chacha-x86.S +FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/aesni-x86.S +FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/bn-586.S +FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/co-586.S +FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/ghash-ssse3-x86.S +FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/ghash-x86.S +FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/md5-586.S +FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/sha1-586.S +FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/sha256-586.S +FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/sha512-586.S +FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/vpaes-x86.S +FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/x86-mont.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/chacha/chacha-x86_64.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/aesni-x86_64.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/ghash-x86_64.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/md5-x86_64.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/p256-x86_64-asm.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/rdrand-x86_64.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/rsaz-avx2.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/sha1-x86_64.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/sha256-x86_64.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/sha512-x86_64.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/vpaes-x86_64.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/x86_64-mont.S +FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/x86_64-mont5.S +FILE: ../../../third_party/boringssl/src/crypto/asn1/charmap.h +FILE: ../../../third_party/boringssl/src/crypto/cmac/cavp_3des_cmac_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/cmac/cavp_aes128_cmac_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/cmac/cavp_aes192_cmac_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/cmac/cavp_aes256_cmac_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/curve25519/ed25519_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/ecdh_extra/ecdh_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/err/asn1.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/bio.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/bn.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/cipher.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/conf.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/dh.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/digest.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/dsa.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/ec.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/ecdh.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/ecdsa.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/engine.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/evp.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/hkdf.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/obj.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/pem.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/pkcs7.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/pkcs8.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/rsa.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/ssl.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/trust_token.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/x509.errordata +FILE: ../../../third_party/boringssl/src/crypto/err/x509v3.errordata +FILE: ../../../third_party/boringssl/src/crypto/evp/evp_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/evp/scrypt.c +FILE: ../../../third_party/boringssl/src/crypto/evp/scrypt_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/aes_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/asm/x86_64-gcc.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/miller_rabin_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/rsaz_exp.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/rsaz_exp.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_scalar_base_mult_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64-table.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdsa/ecdsa_sign_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdsa/ecdsa_verify_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/fips_shared.lds +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/intcheck1.png +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/intcheck2.png +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/intcheck3.png +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/gcm_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/[Content_Types].xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/_rels/.rels +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/customXml/_rels/item1.xml.rels +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/customXml/item1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/customXml/itemProps1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/docProps/app.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/docProps/core.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/_rels/document.xml.rels +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/document.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/endnotes.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/fontTable.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/footer1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/footer2.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/footer3.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/footnotes.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/header1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/header2.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/header3.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/media/image1.png +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/media/image2.png +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/numbering.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/settings.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/styles.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/theme/theme1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Android-Security-Policy-20191020.docx!/word/webSettings.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/[Content_Types].xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/_rels/.rels +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/customXml/_rels/item1.xml.rels +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/customXml/item1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/customXml/itemProps1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/docProps/app.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/docProps/core.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/docProps/thumbnail.emf +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/_rels/document.xml.rels +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/document.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/endnotes.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/fontTable.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/footer1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/footnotes.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/media/image1.jpeg +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/media/image2.png +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/numbering.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/settings.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/styles.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/theme/theme1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/webSettings.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/[Content_Types].xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/_rels/.rels +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/customXml/_rels/item1.xml.rels +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/customXml/item1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/customXml/itemProps1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/docProps/app.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/docProps/core.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/docProps/thumbnail.emf +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/_rels/document.xml.rels +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/document.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/endnotes.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/fontTable.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/footer1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/footer2.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/footer3.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/footnotes.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/header1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/header2.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/header3.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/media/image1.png +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/media/image2.png +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/numbering.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/settings.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/styles.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/theme/theme1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20180730.docx!/word/webSettings.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/[Content_Types].xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/_rels/.rels +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/customXml/_rels/item1.xml.rels +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/customXml/item1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/customXml/itemProps1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/docProps/app.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/docProps/core.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/_rels/document.xml.rels +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/document.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/endnotes.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/fontTable.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/footer1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/footnotes.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/media/image1.png +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/media/image2.png +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/numbering.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/settings.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/styles.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/theme/theme1.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20190808.docx!/word/webSettings.xml +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/ctrdrbg_vectors.txt +FILE: ../../../third_party/boringssl/src/crypto/hmac_extra/hmac_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/hpke/hpke_test_vectors.txt +FILE: ../../../third_party/boringssl/src/crypto/hpke/test-vectors.json +FILE: ../../../third_party/boringssl/src/crypto/obj/obj_mac.num +FILE: ../../../third_party/boringssl/src/crypto/obj/objects.txt +FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_arm_asm.S +FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_print.c +FILE: ../../../third_party/boringssl/src/crypto/siphash/siphash_tests.txt +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_ocsp.c +FILE: ../../../third_party/boringssl/src/go.mod +FILE: ../../../third_party/boringssl/src/go.sum +FILE: ../../../third_party/boringssl/src/include/openssl/ssl.h +FILE: ../../../third_party/boringssl/src/include/openssl/ssl3.h +FILE: ../../../third_party/boringssl/src/include/openssl/tls1.h +FILE: ../../../third_party/boringssl/src/include/openssl/x509.h +FILE: ../../../third_party/boringssl/src/ssl/bio_ssl.cc +FILE: ../../../third_party/boringssl/src/ssl/handshake.cc +FILE: ../../../third_party/boringssl/src/ssl/handshake_client.cc +FILE: ../../../third_party/boringssl/src/ssl/handshake_server.cc +FILE: ../../../third_party/boringssl/src/ssl/internal.h +FILE: ../../../third_party/boringssl/src/ssl/s3_both.cc +FILE: ../../../third_party/boringssl/src/ssl/s3_lib.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_asn1.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_cert.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_cipher.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_lib.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_session.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_stat.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_transcript.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_x509.cc +FILE: ../../../third_party/boringssl/src/ssl/t1_enc.cc +FILE: ../../../third_party/boringssl/win-aarch64/crypto/chacha/chacha-armv8.S +FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/aesv8-armx64.S +FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/armv8-mont.S +FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/ghash-neon-armv8.S +FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/ghashv8-armx64.S +FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/sha1-armv8.S +FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/sha256-armv8.S +FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/sha512-armv8.S +FILE: ../../../third_party/boringssl/win-aarch64/crypto/fipsmodule/vpaes-armv8.S +FILE: ../../../third_party/boringssl/win-x86/crypto/chacha/chacha-x86.asm +FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/aesni-x86.asm +FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/bn-586.asm +FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/co-586.asm +FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/ghash-ssse3-x86.asm +FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/ghash-x86.asm +FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/md5-586.asm +FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/sha1-586.asm +FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/sha256-586.asm +FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/sha512-586.asm +FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/vpaes-x86.asm +FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/x86-mont.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/chacha/chacha-x86_64.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/aesni-x86_64.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/ghash-ssse3-x86_64.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/ghash-x86_64.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/md5-x86_64.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/p256-x86_64-asm.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/p256_beeu-x86_64-asm.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/rdrand-x86_64.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/rsaz-avx2.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/sha1-x86_64.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/sha256-x86_64.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/sha512-x86_64.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/vpaes-x86_64.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/x86_64-mont.asm +FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/x86_64-mont5.asm +---------------------------------------------------------------------------------------------------- +OpenSSL License +--------------- -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -* Neither the name of copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -Open Source Software Licensed Under the JSON License: +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -json.org -Copyright (c) 2002 JSON.org -All Rights Reserved. +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -JSON_checker -Copyright (c) 2002 JSON.org -All Rights Reserved. +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. -Terms of the JSON License: +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -The Software shall be used for Good, not Evil. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +This product includes cryptographic software written by Eric Young +(eay@cryptsoft.com). This product includes software written by Tim +Hudson (tjh@cryptsoft.com). -Terms of the MIT License: +Original SSLeay License +----------------------- -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) +All rights reserved. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +This package is an SSL implementation written +by Eric Young (eay@cryptsoft.com). +The implementation was written so as to conform with Netscapes SSL. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== +This library is free for commercial and non-commercial use as long as +the following conditions are aheared to. The following conditions +apply to all code found in this distribution, be it the RC4, RSA, +lhash, DES, etc., code; not just the SSL code. The SSL documentation +included with this distribution is covered by the same copyright terms +except that the holder is Tim Hudson (tjh@cryptsoft.com). -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/DIR_METADATA -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/cast/brkitr.patch -FILE: ../../../third_party/icu/cast/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat -FILE: ../../../third_party/icu/chromeos/icudtl.dat.hash -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/flutter/brkitr.patch -FILE: ../../../third_party/icu/flutter/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_appendable_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_to_case_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/ardatepattern.patch -FILE: ../../../third_party/icu/patches/atomic_template_instantiation.patch -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/configure.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fix-bool-mix-use.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/iso2022jp.patch -FILE: ../../../third_party/icu/patches/isvalidenum.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/restrace.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan-icu4x.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/uemoji.icu -FILE: ../../../third_party/icu/source/data/in/ulayout.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/tzres/metaZones.res -FILE: ../../../third_party/icu/tzres/timezoneTypes.res -FILE: ../../../third_party/icu/tzres/zoneinfo64.res ----------------------------------------------------------------------------------------------------- -The BSD License -http://opensource.org/licenses/bsd-license.php -Copyright (C) 2006-2008, Google Inc. +Copyright remains Eric Young's, and as such any Copyright notices in +the code are not to be removed. +If this package is used in a product, Eric Young should be given attribution +as the author of the parts of the library used. +This can be in the form of a textual message at program startup or +in documentation (online or textual) provided with the package. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + "This product includes cryptographic software written by + Eric Young (eay@cryptsoft.com)" + The word 'cryptographic' can be left out if the rouines from the library + being used are not cryptographic related :-). +4. If you include any Windows specific code (or a derivative thereof) from + the apps directory (application code) you must include an acknowledgement: + "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + +THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. -All rights reserved. +The licence and distribution terms for any publically available version or +derivative of this code cannot be changed. i.e. this code cannot simply be +copied and put under another distribution licence +[including the GNU Public Licence.] + +ISC license used for completely new code in BoringSSL: + +Copyright (c) 2015, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +The code in third_party/fiat carries the MIT license: + +Copyright (c) 2015-2016 the fiat-crypto authors (see +https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + +Licenses for support code +------------------------- + +Parts of the TLS test suite are under the Go license. This code is not included +in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so +distributing code linked against BoringSSL does not trigger this license: + +Copyright (c) 2009 The Go Authors. All rights reserved. Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +modification, are permitted provided that the following conditions are +met: - Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided with -the distribution. - Neither the name of Google Inc. nor the names of its + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +BoringSSL uses the Chromium test infrastructure to run a continuous build, +trybots etc. The scripts which manage this, and the script for generating build +metadata, are under the Chromium license. Distributing code linked against +BoringSSL does not trigger this license. + +Copyright 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== LIBRARY: freetype2 ORIGIN: ../../../third_party/freetype2/docs/FTL.TXT TYPE: LicenseType.freetype -FILE: ../../../third_party/freetype2/.gitlab-ci.yml -FILE: ../../../third_party/freetype2/.gitmodules FILE: ../../../third_party/freetype2/devel/ft2build.h FILE: ../../../third_party/freetype2/devel/ftoption.h FILE: ../../../third_party/freetype2/include/freetype-flutter-config/freetype/config/public-macros.h @@ -25640,7 +51185,7 @@ FILE: ../../../third_party/freetype2/include/freetype/ttnameid.h FILE: ../../../third_party/freetype2/include/freetype/tttables.h FILE: ../../../third_party/freetype2/include/freetype/tttags.h FILE: ../../../third_party/freetype2/include/ft2build.h -FILE: ../../../third_party/freetype2/meson.build +FILE: ../../../third_party/freetype2/meson_options.txt FILE: ../../../third_party/freetype2/modules.cfg FILE: ../../../third_party/freetype2/src/autofit/afblue.c FILE: ../../../third_party/freetype2/src/autofit/afblue.cin @@ -25714,8 +51259,6 @@ FILE: ../../../third_party/freetype2/src/base/fttype1.c FILE: ../../../third_party/freetype2/src/base/ftutil.c FILE: ../../../third_party/freetype2/src/base/ftver.rc FILE: ../../../third_party/freetype2/src/base/ftwinfnt.c -FILE: ../../../third_party/freetype2/src/base/md5.c -FILE: ../../../third_party/freetype2/src/base/md5.h FILE: ../../../third_party/freetype2/src/bzip2/ftbzip2.c FILE: ../../../third_party/freetype2/src/cache/ftcache.c FILE: ../../../third_party/freetype2/src/cache/ftcbasic.c @@ -25988,11 +51531,14 @@ FILE: ../../../third_party/freetype2/subprojects/libpng.wrap FILE: ../../../third_party/freetype2/subprojects/zlib.wrap ---------------------------------------------------------------------------------------------------- The FreeType Project LICENSE +---------------------------- + + 2006-Jan-27 + + Copyright 1996-2002, 2006 by + David Turner, Robert Wilhelm, and Werner Lemberg - 2006-Jan-27 -Copyright 1996-2002, 2006 by -David Turner, Robert Wilhelm, and Werner Lemberg Introduction ============ @@ -26028,252 +51574,6124 @@ Introduction We disclaim all warranties covering The FreeType Project and assume no liability related to The FreeType Project. + Finally, many people asked us for a preferred form for a credit/disclaimer to use in compliance with this license. We thus encourage you to use the following text: - Portions of this software are copyright © The FreeType - Project (www.freetype.org). All rights reserved. + """ + Portions of this software are copyright © The FreeType + Project (www.freetype.org). All rights reserved. + """ + + Please replace with the value from the FreeType version you + actually use. + + +Legal Terms +=========== + +0. Definitions +-------------- + + Throughout this license, the terms `package', `FreeType Project', + and `FreeType archive' refer to the set of files originally + distributed by the authors (David Turner, Robert Wilhelm, and + Werner Lemberg) as the `FreeType Project', be they named as alpha, + beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source + code as well as linking it to form a `program' or `executable'. + This program is referred to as `a program using the FreeType + engine'. + + This license applies to all files distributed in the original + FreeType Project, including all source code, binaries and + documentation, unless otherwise stated in the file in its + original, unmodified form as distributed in the original archive. + If you are unsure whether or not a particular file is covered by + this license, you must contact us to verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, + Robert Wilhelm, and Werner Lemberg. All rights reserved except as + specified below. + +1. No Warranty +-------------- + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO + USE, OF THE FREETYPE PROJECT. + +2. Redistribution +----------------- + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and + sublicense the FreeType Project (in both source and object code + forms) and derivative works thereof for any purpose; and to + authorize others to exercise some or all of the rights granted + herein, subject to the following conditions: + + o Redistribution of source code must retain this license file + (`FTL.TXT') unaltered; any additions, deletions or changes to + the original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, + original files must be preserved in all copies of source + files. + + o Redistribution in binary form must provide a disclaimer that + states that the software is based in part of the work of the + FreeType Team, in the distribution documentation. We also + encourage you to put an URL to the FreeType web page in your + documentation, though this isn't mandatory. + + These conditions apply to any software derived from or based on + the FreeType Project, not just the unmodified files. If you use + our work, you must acknowledge us. However, no fee need be paid + to us. + +3. Advertising +-------------- + + Neither the FreeType authors and contributors nor you shall use + the name of the other for commercial, advertising, or promotional + purposes without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation + or advertising materials: `FreeType Project', `FreeType Engine', + `FreeType library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to + accept it. However, as the FreeType Project is copyrighted + material, only this license, or another one contracted with the + authors, grants you the right to use, distribute, and modify it. + Therefore, by using, distributing, or modifying the FreeType + Project, you indicate that you understand and accept all the terms + of this license. + +4. Contacts +----------- + + There are two mailing lists related to FreeType: + + o freetype@nongnu.org + + Discusses general use and applications of FreeType, as well as + future and wanted additions to the library and distribution. + If you are looking for support, start in this list if you + haven't found anything to help you in the documentation. + + o freetype-devel@nongnu.org + + Discusses bugs, as well as engine internals, design issues, + specific licenses, porting, etc. + + Our home page can be found at + + https://www.freetype.org + + +--- end of FTL.TXT --- +==================================================================================================== + +==================================================================================================== +LIBRARY: rapidjson +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/msinttypes/inttypes.h +ORIGIN: ../../../third_party/rapidjson/include/rapidjson/msinttypes/stdint.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/rapidjson/include/rapidjson/msinttypes/inttypes.h +FILE: ../../../third_party/rapidjson/include/rapidjson/msinttypes/stdint.h +---------------------------------------------------------------------------------------------------- +The above software in this distribution may have been modified by +THL A29 Limited ("Tencent Modifications"). +All Tencent Modifications are Copyright (C) 2015 THL A29 Limited. +==================================================================================================== + +==================================================================================================== +LIBRARY: sqlite +ORIGIN: ../../../third_party/sqlite/LICENSE +TYPE: LicenseType.unknown +FILE: ../../../third_party/sqlite/sqlite3.c +FILE: ../../../third_party/sqlite/sqlite3.h +---------------------------------------------------------------------------------------------------- +The source code for SQLite is in the public domain. No claim of +copyright is made on any part of the core source code. (The +documentation and test code is a different matter - some sections of +documentation and test logic are governed by open-source licenses.) +All contributors to the SQLite core software have signed affidavits +specifically disavowing any copyright interest in the code. This means +that anybody is able to legally do anything they want with the SQLite +source code. + +There are other SQL database engines with liberal licenses that allow +the code to be broadly and freely used. But those other engines are +still governed by copyright law. SQLite is different in that copyright +law simply does not apply. + +The source code files for other SQL database engines typically begin +with a comment describing your legal rights to view and copy that +file. The SQLite source code contains no license since it is not +governed by copyright. Instead of a license, the SQLite source code +offers a blessing: + +May you do good and not evil +May you find forgiveness for yourself and forgive others +May you share freely, never taking more than you give. +==================================================================================================== + +==================================================================================================== +LIBRARY: zlib +ORIGIN: ../../../third_party/zlib/contrib/minizip/unzip.h +ORIGIN: ../../../third_party/zlib/contrib/minizip/zip.h +TYPE: LicenseType.zlib +FILE: ../../../third_party/zlib/contrib/minizip/unzip.h +FILE: ../../../third_party/zlib/contrib/minizip/zip.h +---------------------------------------------------------------------------------------------------- +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/base/md5.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/freetype2/src/base/md5.h +---------------------------------------------------------------------------------------------------- +This software was written by Alexander Peslyak in 2001. No copyright is +claimed, and the software is hereby placed in the public domain. +In case this attempt to disclaim copyright and place the software in the +public domain is deemed null and void, then the software is +Copyright (c) 2001 Alexander Peslyak and it is hereby released to the +general public under the following terms: + +Redistribution and use in source and binary forms, with or without +modification, are permitted. + +There's ABSOLUTELY NO WARRANTY, express or implied. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/base/md5.c +TYPE: LicenseType.unknown +FILE: ../../../third_party/freetype2/src/base/md5.c +---------------------------------------------------------------------------------------------------- +This software was written by Alexander Peslyak in 2001. No copyright is +claimed, and the software is hereby placed in the public domain. +In case this attempt to disclaim copyright and place the software in the +public domain is deemed null and void, then the software is +Copyright (c) 2001 Alexander Peslyak and it is hereby released to the +general public under the following terms: + +Redistribution and use in source and binary forms, with or without +modification, are permitted. + +There's ABSOLUTELY NO WARRANTY, express or implied. + +(This is a heavily cut-down "BSD license".) +==================================================================================================== + +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/LICENSE +TYPE: LicenseType.icu +FILE: ../../../third_party/icu/android/icudtl.dat +FILE: ../../../third_party/icu/cast/brkitr.patch +FILE: ../../../third_party/icu/cast/icudtl.dat +FILE: ../../../third_party/icu/chromeos/icudtl.dat +FILE: ../../../third_party/icu/chromeos/icudtl.dat.hash +FILE: ../../../third_party/icu/common/icudtb.dat +FILE: ../../../third_party/icu/common/icudtl.dat +FILE: ../../../third_party/icu/flutter/brkitr.patch +FILE: ../../../third_party/icu/flutter/icudtl.dat +FILE: ../../../third_party/icu/ios/icudtl.dat +FILE: ../../../third_party/icu/patches/ardatepattern.patch +FILE: ../../../third_party/icu/patches/atomic_template_instantiation.patch +FILE: ../../../third_party/icu/patches/cjdict.patch +FILE: ../../../third_party/icu/patches/configure.patch +FILE: ../../../third_party/icu/patches/data_symb.patch +FILE: ../../../third_party/icu/patches/fix-bool-mix-use.patch +FILE: ../../../third_party/icu/patches/fuchsia.patch +FILE: ../../../third_party/icu/patches/gb_table.patch +FILE: ../../../third_party/icu/patches/iso2022jp.patch +FILE: ../../../third_party/icu/patches/isvalidenum.patch +FILE: ../../../third_party/icu/patches/khmer-dictbe.patch +FILE: ../../../third_party/icu/patches/locale1.patch +FILE: ../../../third_party/icu/patches/locale_google.patch +FILE: ../../../third_party/icu/patches/restrace.patch +FILE: ../../../third_party/icu/patches/wordbrk.patch +FILE: ../../../third_party/icu/patches/wpo.patch +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan-icu4x.icu +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan-icu4x.icu +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu +FILE: ../../../third_party/icu/source/data/in/nfc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm +FILE: ../../../third_party/icu/source/data/in/pnames.icu +FILE: ../../../third_party/icu/source/data/in/ubidi.icu +FILE: ../../../third_party/icu/source/data/in/ucase.icu +FILE: ../../../third_party/icu/source/data/in/uemoji.icu +FILE: ../../../third_party/icu/source/data/in/ulayout.icu +FILE: ../../../third_party/icu/source/data/in/unames.icu +FILE: ../../../third_party/icu/source/data/in/uprops.icu +FILE: ../../../third_party/icu/source/data/in/uts46.nrm +FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm +FILE: ../../../third_party/icu/source/data/unidata/UnicodeData.txt +FILE: ../../../third_party/icu/source/data/unidata/confusablesWholeScript.txt +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw +FILE: ../../../third_party/icu/source/i18n/decContext.cpp +FILE: ../../../third_party/icu/source/i18n/decContext.h +FILE: ../../../third_party/icu/source/i18n/decNumber.cpp +FILE: ../../../third_party/icu/source/i18n/decNumber.h +FILE: ../../../third_party/icu/source/i18n/decNumberLocal.h +FILE: ../../../third_party/icu/source/tools/icuinfo/plugin_sources.txt +FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c +FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c +FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c +FILE: ../../../third_party/icu/source/tools/tzcode/private.h +FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c +FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h +FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c +FILE: ../../../third_party/icu/source/tools/tzcode/zic.c +FILE: ../../../third_party/icu/tzres/metaZones.res +FILE: ../../../third_party/icu/tzres/timezoneTypes.res +FILE: ../../../third_party/icu/tzres/zoneinfo64.res +---------------------------------------------------------------------------------------------------- +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + +See Terms of Use +for definitions of Unicode Inc.’s Data Files and Software. + +NOTICE TO USER: Carefully read the following legal agreement. +BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S +DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), +YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. +IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE +THE DATA FILES OR SOFTWARE. + +COPYRIGHT AND PERMISSION NOTICE + +Copyright © 1991-2022 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in https://www.unicode.org/copyright.html. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. + +Third-Party Software Licenses + +This section contains third-party software notices and/or additional +terms for licensed third-party software components included within ICU +libraries. + +ICU License - ICU 1.8.1 to ICU 57.1 + +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1995-2016 International Business Machines Corporation and others +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. + +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. + +Chinese/Japanese Word Break Dictionary Data (cjdict.txt) + +The Google Chrome software developed by Google is licensed under +the BSD license. Other software included in this distribution is +provided under other licenses, as set forth below. + +The BSD License +http://opensource.org/licenses/bsd-license.php +Copyright (C) 2006-2008, Google Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: - Please replace with the value from the FreeType version you - actually use. +Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. +Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following +disclaimer in the documentation and/or other materials provided with +the distribution. +Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. -Legal Terms -=========== -0. Definitions +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND +CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - Throughout this license, the terms `package', `FreeType Project', - and `FreeType archive' refer to the set of files originally - distributed by the authors (David Turner, Robert Wilhelm, and - Werner Lemberg) as the `FreeType Project', be they named as alpha, - beta or final release. +The word list in cjdict.txt are generated by combining three word lists +listed below with further processing for compound word breaking. The +frequency is generated with an iterative training against Google web +corpora. - `You' refers to the licensee, or person using the project, where - `using' is a generic term including compiling the project's source - code as well as linking it to form a `program' or `executable'. - This program is referred to as `a program using the FreeType - engine'. +* Libtabe (Chinese) + - https://sourceforge.net/project/?group_id=1519 + - Its license terms and conditions are shown below. - This license applies to all files distributed in the original - FreeType Project, including all source code, binaries and - documentation, unless otherwise stated in the file in its - original, unmodified form as distributed in the original archive. - If you are unsure whether or not a particular file is covered by - this license, you must contact us to verify this. +* IPADIC (Japanese) + - http://chasen.aist-nara.ac.jp/chasen/distribution.html + - Its license terms and conditions are shown below. - The FreeType Project is copyright (C) 1996-2000 by David Turner, - Robert Wilhelm, and Werner Lemberg. All rights reserved except as - specified below. +Copyright (c) 1999 TaBE Project. +Copyright (c) 1999 Pai-Hsiang Hsiao. +All rights reserved. -1. No Warranty +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: - THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY - KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO - USE, OF THE FREETYPE PROJECT. +. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. +. Neither the name of the TaBE Project nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -2. Redistribution +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. - This license grants a worldwide, royalty-free, perpetual and - irrevocable right and license to use, execute, perform, compile, - display, copy, create derivative works of, distribute and - sublicense the FreeType Project (in both source and object code - forms) and derivative works thereof for any purpose; and to - authorize others to exercise some or all of the rights granted - herein, subject to the following conditions: +Copyright (c) 1999 Computer Systems and Communication Lab, + Institute of Information Science, Academia + Sinica. All rights reserved. - o Redistribution of source code must retain this license file - (`FTL.TXT') unaltered; any additions, deletions or changes to - the original files must be clearly indicated in accompanying - documentation. The copyright notices of the unaltered, - original files must be preserved in all copies of source - files. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: - o Redistribution in binary form must provide a disclaimer that - states that the software is based in part of the work of the - FreeType Team, in the distribution documentation. We also - encourage you to put an URL to the FreeType web page in your - documentation, though this isn't mandatory. +. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. +. Neither the name of the Computer Systems and Communication Lab + nor the names of its contributors may be used to endorse or + promote products derived from this software without specific + prior written permission. - These conditions apply to any software derived from or based on - the FreeType Project, not just the unmodified files. If you use - our work, you must acknowledge us. However, no fee need be paid - to us. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -3. Advertising +Copyright 1996 Chih-Hao Tsai @ Beckman Institute, + University of Illinois +c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 - Neither the FreeType authors and contributors nor you shall use - the name of the other for commercial, advertising, or promotional - purposes without specific prior written permission. +Copyright 2000, 2001, 2002, 2003 Nara Institute of Science +and Technology. All Rights Reserved. - We suggest, but do not require, that you use one or more of the - following phrases to refer to this software in your documentation - or advertising materials: `FreeType Project', `FreeType Engine', - `FreeType library', or `FreeType Distribution'. +Use, reproduction, and distribution of this software is permitted. +Any copy of this software, whether in its original form or modified, +must include both the above copyright notice and the following +paragraphs. - As you have not signed this license, you are not required to - accept it. However, as the FreeType Project is copyrighted - material, only this license, or another one contracted with the - authors, grants you the right to use, distribute, and modify it. - Therefore, by using, distributing, or modifying the FreeType - Project, you indicate that you understand and accept all the terms - of this license. +Nara Institute of Science and Technology (NAIST), +the copyright holders, disclaims all warranties with regard to this +software, including all implied warranties of merchantability and +fitness, in no event shall NAIST be liable for +any special, indirect or consequential damages or any damages +whatsoever resulting from loss of use, data or profits, whether in an +action of contract, negligence or other tortuous action, arising out +of or in connection with the use or performance of this software. -4. Contacts +A large portion of the dictionary entries +originate from ICOT Free Software. The following conditions for ICOT +Free Software applies to the current dictionary as well. - There are two mailing lists related to FreeType: +Each User may also freely distribute the Program, whether in its +original form or modified, to any third party or parties, PROVIDED +that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear +on, or be attached to, the Program, which is distributed substantially +in the same form as set out herein and that such intended +distribution, if actually made, will neither violate or otherwise +contravene any of the laws and regulations of the countries having +jurisdiction over the User or the intended distribution itself. - o freetype@nongnu.org +NO WARRANTY - Discusses general use and applications of FreeType, as well as - future and wanted additions to the library and distribution. - If you are looking for support, start in this list if you - haven't found anything to help you in the documentation. +The program was produced on an experimental basis in the course of the +research and development conducted during the project and is provided +to users as so produced on an experimental basis. Accordingly, the +program is provided without any warranty whatsoever, whether express, +implied, statutory or otherwise. The term "warranty" used herein +includes, but is not limited to, any warranty of the quality, +performance, merchantability and fitness for a particular purpose of +the program and the nonexistence of any infringement or violation of +any right of any third party. - o freetype-devel@nongnu.org +Each user of the program will agree and understand, and be deemed to +have agreed and understood, that there is no warranty whatsoever for +the program and, accordingly, the entire risk arising from or +otherwise connected with the program is assumed by the user. - Discusses bugs, as well as engine internals, design issues, - specific licenses, porting, etc. +Therefore, neither ICOT, the copyright holder, or any other +organization that participated in or was otherwise related to the +development of the program and their respective officials, directors, +officers and other employees shall be held liable for any and all +damages, including, without limitation, general, special, incidental +and consequential damages, arising out of or otherwise in connection +with the use or inability to use the program or any product, material +or result produced or otherwise obtained by using the program, +regardless of whether they have been advised of, or otherwise had +knowledge of, the possibility of such damages at any time during the +project or thereafter. Each user will be deemed to have agreed to the +foregoing by his or her commencement of use of the program. The term +"use" as used herein includes, but is not limited to, the use, +modification, copying and distribution of the program and the +production of secondary products from the program. - Our home page can be found at +In the case where the program, whether in its original form or +modified, was distributed or delivered to or received by a user from +any person, organization or entity other than ICOT, unless it makes or +grants independently of ICOT any specific warranty to the user in +writing, such person, organization or entity, will also be exempted +from and not be held liable to the user for any such damages as noted +above as far as the program is concerned. - https://www.freetype.org +Lao Word Break Dictionary Data (laodict.txt) ---- end of FTL.TXT --- -==================================================================================================== +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2015 International Business Machines Corporation +and others. All Rights Reserved. -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/third_party/fiat/LICENSE -TYPE: LicenseType.mit -FILE: ../../../third_party/boringssl/src/third_party/fiat/METADATA -FILE: ../../../third_party/boringssl/src/third_party/fiat/curve25519_32.h -FILE: ../../../third_party/boringssl/src/third_party/fiat/curve25519_64.h -FILE: ../../../third_party/boringssl/src/third_party/fiat/p256_32.h -FILE: ../../../third_party/boringssl/src/third_party/fiat/p256_64.h ----------------------------------------------------------------------------------------------------- -The MIT License (MIT) +Project: https://github.com/rober42539/lao-dictionary +Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt +License: https://github.com/rober42539/lao-dictionary/LICENSE.txt + (copied below) -Copyright (c) 2015-2016 the fiat-crypto authors (see -https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). +This file is derived from the above dictionary version of Nov 22, 2020 -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. +All rights reserved. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -==================================================================================================== +Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. Redistributions in binary +form must reproduce the above copyright notice, this list of conditions and +the following disclaimer in the documentation and/or other materials +provided with the distribution. -==================================================================================================== -LIBRARY: rapidjson -ORIGIN: ../../../third_party/rapidjson/contrib/natvis/LICENSE -TYPE: LicenseType.mit -FILE: ../../../third_party/rapidjson/contrib/natvis/rapidjson.natvis ----------------------------------------------------------------------------------------------------- -The MIT License (MIT) +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -Copyright (c) 2017 Bart Muzzin +Burmese Word Break Dictionary Data (burmesedict.txt) -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Copyright (c) 2014 International Business Machines Corporation +and others. All Rights Reserved. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +This list is part of a project hosted at: + github.com/kanyawtech/myanmar-karen-word-lists -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +Copyright (c) 2013, LeRoy Benjamin Sharon +All rights reserved. -Derived from: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: Redistributions of source code must retain the above +copyright notice, this list of conditions and the following +disclaimer. Redistributions in binary form must reproduce the +above copyright notice, this list of conditions and the following +disclaimer in the documentation and/or other materials provided +with the distribution. -The MIT License (MIT) + Neither the name Myanmar Karen Word Lists, nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -Copyright (c) 2015 mojmir svoboda +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND +CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS +BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR +TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF +THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Google double-conversion -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -==================================================================================================== + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -==================================================================================================== -LIBRARY: sqlite -ORIGIN: ../../../third_party/sqlite/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../third_party/sqlite/GIT_REVISION -FILE: ../../../third_party/sqlite/LAST_UPDATE -FILE: ../../../third_party/sqlite/VERSION -FILE: ../../../third_party/sqlite/sqlite3.c -FILE: ../../../third_party/sqlite/sqlite3.h ----------------------------------------------------------------------------------------------------- -The source code for SQLite is in the public domain. No claim of -copyright is made on any part of the core source code. (The -documentation and test code is a different matter - some sections of -documentation and test logic are governed by open-source licenses.) -All contributors to the SQLite core software have signed affidavits -specifically disavowing any copyright interest in the code. This means -that anybody is able to legally do anything they want with the SQLite -source code. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -There are other SQL database engines with liberal licenses that allow -the code to be broadly and freely used. But those other engines are -still governed by copyright law. SQLite is different in that copyright -law simply does not apply. +File: install-sh (only for ICU4C) -The source code files for other SQL database engines typically begin -with a comment describing your legal rights to view and copy that -file. The SQLite source code contains no license since it is not -governed by copyright. Instead of a license, the SQLite source code -offers a blessing: -May you do good and not evil -May you find forgiveness for yourself and forgive others -May you share freely, never taking more than you give. +Copyright 1991 by the Massachusetts Institute of Technology + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation, and that the name of M.I.T. not be used in advertising or +publicity pertaining to distribution of the software without specific, +written prior permission. M.I.T. makes no representations about the +suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. ==================================================================================================== ==================================================================================================== +LIBRARY: harfbuzz LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/common/unicode/appendable.h -TYPE: LicenseType.icu +ORIGIN: http://unicode.org/copyright.html#Exhibit1 referenced by ../../../third_party/icu/source/data/translit/Hans_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/APIChangeReport.html +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/Doxyfile.in +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/appendable.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/bmpset.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/bmpset.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/brkeng.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/brkeng.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/brkiter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/bytesinkutil.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/bytesinkutil.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/bytestream.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/bytestrie.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/bytestriebuilder.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/bytestrieiterator.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/caniter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/capi_helper.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/characterproperties.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/chariter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/charstr.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/charstr.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/charstrmap.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/cmemory.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/cmemory.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/common.rc +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/cpputils.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/cstr.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/cstr.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/cstring.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/cstring.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/cwchar.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/cwchar.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/dictbe.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/dictbe.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/dictionarydata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/dictionarydata.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/dtintrv.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/edits.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/errorcode.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/filteredbrk.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/filterednormalizer2.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/hash.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/icudataver.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/icuplug.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/icuplugimp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/loadednormalizer2impl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/localebuilder.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/localefallback_data.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/localematcher.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/localeprioritylist.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/localeprioritylist.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/localsvc.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/locavailable.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/locbased.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/locbased.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/locdispnames.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/locdistance.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/locdistance.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/locdspnm.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/locid.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/loclikely.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/loclikelysubtags.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/loclikelysubtags.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/locmap.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/locmap.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/locresdata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/locutil.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/locutil.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/lsr.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/lsr.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/lstmbe.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/lstmbe.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/messageimpl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/messagepattern.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/msvcres.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/mutex.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/norm2_nfc_data.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/norm2allmodes.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/normalizer2.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/normalizer2impl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/normalizer2impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/normlzr.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/parsepos.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/patternprops.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/patternprops.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/pluralmap.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/pluralmap.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/propname.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/propname.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/propname_data.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/propsvec.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/propsvec.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/punycode.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/punycode.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/putil.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/putilimp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbi.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbi_cache.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbi_cache.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbidata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbidata.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbinode.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbinode.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbirb.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbirb.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbirpt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbirpt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbiscan.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbiscan.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbisetb.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbisetb.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbistbl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbitblb.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/rbbitblb.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/resbund.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/resbund_cnv.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/resource.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/resource.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/restrace.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/restrace.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ruleiter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ruleiter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/schriter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/serv.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/serv.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/servlk.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/servlkf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/servloc.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/servls.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/servnotf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/servnotf.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/servrbf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/servslkf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/sharedobject.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/sharedobject.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/simpleformatter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/sprpimpl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/static_unicode_sets.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/static_unicode_sets.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/stringpiece.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/stringtriebuilder.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uarrsort.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uarrsort.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uassert.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ubidi.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ubidi_props.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ubidi_props.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ubidi_props_data.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ubidiimp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ubidiln.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ubiditransform.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ubidiwrt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ubrk.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ubrkimpl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucase.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucase.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucase_props_data.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucasemap.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucasemap_imp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucasemap_titlecase_brkiter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucat.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uchar.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uchar_props_data.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucharstrie.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucharstriebuilder.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucharstrieiterator.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uchriter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucln.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucln_cmn.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucln_cmn.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucln_imp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucmndata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucmndata.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv2022.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_bld.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_bld.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_cb.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_cnv.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_cnv.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_ct.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_err.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_ext.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_ext.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_imp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_io.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_io.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_lmb.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_set.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_u16.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_u32.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_u7.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnv_u8.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnvbocu.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnvdisp.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnvhz.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnvisci.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnvlat1.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnvmbcs.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnvmbcs.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnvscsu.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucnvsel.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucol_data.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucol_swp.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucol_swp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucptrie.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucptrie_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucurr.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ucurrimp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/udata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/udatamem.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/udatamem.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/udataswp.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/udataswp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uelement.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uenum.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uenumimp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uhash.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uhash.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uhash_us.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uidna.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uinit.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uinvchar.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uinvchar.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uiter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ulayout_props.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ulist.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ulist.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uloc.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uloc_keytype.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uloc_tag.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ulocimp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/umapfile.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/umapfile.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/umath.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/umutablecptrie.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/umutex.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/umutex.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unames.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/appendable.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/brkiter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/bytestream.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/bytestrie.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/bytestriebuilder.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/caniter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/casemap.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/char16ptr.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/chariter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/dbbi.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/docmain.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/dtintrv.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/edits.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/enumset.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/errorcode.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/filteredbrk.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/icudataver.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/icuplug.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/idna.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/localebuilder.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/localematcher.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/localpointer.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/locdspnm.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/locid.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/messagepattern.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/normalizer2.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/normlzr.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/parseerr.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/parsepos.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/platform.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ptypes.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/putil.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/rbbi.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/rep.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/resbund.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/schriter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/simpleformatter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/std_string.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/strenum.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/stringoptions.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/stringpiece.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/stringtriebuilder.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/symtable.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ubidi.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ubiditransform.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ubrk.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ucasemap.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ucat.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uchar.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ucharstrie.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ucharstriebuilder.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uchriter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uclean.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ucnv.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ucnv_cb.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ucnv_err.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ucnvsel.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uconfig.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ucpmap.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ucptrie.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ucurr.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/udata.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/udisplaycontext.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uenum.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uidna.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uiter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uldnames.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uloc.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/umachine.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/umisc.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/umutablecptrie.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/unifilt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/unifunct.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/unimatch.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uniset.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/unistr.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/unorm.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/unorm2.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uobject.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/urename.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/urep.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ures.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uscript.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uset.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/usetiter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ushape.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/usprep.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ustring.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/ustringtrie.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/utext.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/utf.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/utf16.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/utf32.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/utf8.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/utf_old.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/utrace.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/utypes.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unicode/uversion.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unifiedcache.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unifiedcache.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unifilt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unifunct.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uniquecharstr.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uniset.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uniset_closure.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uniset_props.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unisetspan.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unisetspan.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unistr.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unistr_case.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unistr_case_locale.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unistr_cnv.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unistr_props.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unistr_titlecase_brkiter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unistrappender.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unorm.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unormcmp.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/unormimp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uobject.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uposixdefs.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uprops.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uprops.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ures_cnv.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uresbund.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uresdata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uresdata.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uresimp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ureslocs.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/usc_impl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/usc_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uscript.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uscript_props.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uset.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uset_imp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uset_props.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/usetiter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ushape.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/usprep.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustack.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustr_cnv.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustr_cnv.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustr_imp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustr_titlecase_brkiter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustr_wcs.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustrcase.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustrcase_locale.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustrenum.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustrenum.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustrfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustrfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustring.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/ustrtrns.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/utext.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/utf_impl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/util.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/util.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/util_props.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/utrace.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/utracimp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/utrie.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/utrie.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/utrie2.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/utrie2.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/utrie2_builder.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/utrie2_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/utrie_swap.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uts46.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/utypeinfo.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/utypes.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uvector.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uvector.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uvectr32.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uvectr32.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uvectr64.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/uvectr64.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/wintz.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/wintz.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/de.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/dictionaries/thaidict.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/el.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/en.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/en_US.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/en_US_POSIX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/es.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/fi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/fr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/it.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/lstm/Burmese_codepoints_exclusive_model4_heavy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/lstm/Burmese_codepoints_exclusive_model5_heavy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/lstm/Burmese_codepoints_exclusive_model7_heavy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/lstm/Burmese_graphclust_model4_heavy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/lstm/Burmese_graphclust_model5_heavy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/lstm/Burmese_graphclust_model7_heavy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/lstm/Thai_codepoints_exclusive_model4_heavy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/lstm/Thai_codepoints_exclusive_model5_heavy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/lstm/Thai_codepoints_exclusive_model7_heavy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/lstm/Thai_graphclust_model4_heavy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/lstm/Thai_graphclust_model5_heavy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/lstm/Thai_graphclust_model7_heavy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/pt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/ru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/char.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/line.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/line_cj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/line_loose.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/line_loose_cj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/line_loose_phrase_cj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/line_normal.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/line_normal_cj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/line_normal_phrase_cj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/line_phrase_cj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/sent.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/sent_el.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/title.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/word.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/word_POSIX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/rules/word_fi_sv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/brkitr/sv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/cldr-icu-readme.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/af.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ar_SA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ars.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/as.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/az.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/be.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/bg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/bn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/bo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/br.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/bs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/bs_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ca.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ceb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/cs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/cy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/da.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/de.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/de_AT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/dsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/dz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ee.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/el.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/en.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/en_US.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/en_US_POSIX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/eo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/es.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/et.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/fa_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ff.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ff_Adlm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/fi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/fil.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/fo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/fr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/fr_CA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/fy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ga.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/gl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/gu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ha.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/haw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/he.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/he_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/hi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/hr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/hsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/hu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/hy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/id.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/id_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ig.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/in.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/in_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/is.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/it.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/iw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/iw_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ka.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/kk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/kl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/km.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/kn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ko.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/kok.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ku.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ky.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/lb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/lkt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ln.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/lo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/lt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/lv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/mk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/mn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/mo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/mr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ms.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/mt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/my.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/nb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/nb_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ne.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/nl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/nn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/no.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/no_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/om.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/or.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/pa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/pa_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/pa_Guru_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/pa_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/pl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ps.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/pt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ro.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/root.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/se.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sh_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sh_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sh_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/si.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/smn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sr_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sr_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sr_Cyrl_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sr_Cyrl_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sr_Cyrl_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sr_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sr_Latn_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sr_Latn_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sr_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sr_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/sw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ta.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/te.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/th.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/tk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/to.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/tr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ug.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/uk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/uz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/vi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/wae.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/wo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/xh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/yi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/yo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/yue.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/yue_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/yue_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/yue_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/yue_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zh_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zh_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zh_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zh_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zh_Hans_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zh_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zh_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zh_Hant_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zh_Hant_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zh_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zh_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zh_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/coll/zu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/af.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/af_NA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/agq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ak.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ar_AE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ar_DJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ar_ER.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ar_KM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ar_LB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ar_SA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ar_SO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ar_SS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ars.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/as.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/asa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ast.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/az.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/az_AZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/az_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/az_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/az_Latn_AZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bas.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/be.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bem.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bez.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bgc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bho.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bn_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bo_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/br.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/brx.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bs_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bs_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bs_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/bs_Latn_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ca.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ca_FR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ccp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ce.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ceb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/cgg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ckb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/cs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/cv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/cy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/da.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/dav.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/de.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/de_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/de_LI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/de_LU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/dje.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/doi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/dsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/dua.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/dyo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/dz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ebu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ee.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/el.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_001.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_150.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_AE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_AG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_AI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_AT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_AU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_BB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_BE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_BI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_BM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_BS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_BW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_BZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_CA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_CC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_CK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_CX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_CY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_DE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_DG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_DK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_DM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_ER.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_FJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_FK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_FM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_GB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_GD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_GG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_GI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_GM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_GY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_IE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_IM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_IO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_JE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_JM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_KI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_KN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_KY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_LC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_LS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_MG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_MS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_MT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_MU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_MV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_MW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_MY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_NA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_NF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_NH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_NL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_NR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_NU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_NZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_PG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_PN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_PW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_RH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_RW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_SB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_SC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_SD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_SE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_SH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_SI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_SL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_SS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_SX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_SZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_TC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_TK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_TO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_TT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_TV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_UG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_VC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_VG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_VU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_WS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_ZA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_ZM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/en_ZW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/eo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_419.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_AR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_BO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_BR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_BZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_CL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_CO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_CR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_CU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_DO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_EC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_GQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_GT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_HN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_MX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_NI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_PA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_PE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_PR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_PY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_SV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_US.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_UY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/es_VE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/et.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/eu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ewo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fa_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Adlm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Adlm_BF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Adlm_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Adlm_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Adlm_GM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Adlm_GW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Adlm_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Adlm_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Adlm_NE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Adlm_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Adlm_SL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Adlm_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Latn_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Latn_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Latn_GM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Latn_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Latn_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Latn_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Latn_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Latn_SL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_Latn_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ff_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fil.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fil_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fo_DK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_BI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_CA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_CD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_DJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_DZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_HT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_KM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_LU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_MG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_MU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_RW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_SC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_SY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_TN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fr_VU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/fy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ga.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/gd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/gl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/gsw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/gu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/guz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/gv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ha.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ha_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/haw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/he.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/he_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/hi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/hi_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/hr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/hr_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/hsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/hu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/hy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ia.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/id.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/id_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ig.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ii.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/in.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/in_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/is.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/it.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/iw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/iw_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/jgo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/jmc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/jv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ka.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/kab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/kam.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/kde.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/kea.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/kgp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/khq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ki.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/kk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/kkj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/kl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/kln.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/km.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/kn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ko.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/kok.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ks.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ks_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ks_Arab_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ks_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ks_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ksb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ksf.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ksh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ku.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/kw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ky.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/lag.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/lb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/lg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/lkt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ln.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ln_AO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/lo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/lrc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/lt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/lu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/luo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/luy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/lv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mas.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mas_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mer.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mfe.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mgh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mgo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mni.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mni_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mni_Beng_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mni_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ms.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ms_BN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ms_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ms_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mua.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/my.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/mzn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/naq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ne.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nl_AW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nl_BQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nl_CW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nl_SR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nl_SX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nmg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nn_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nnh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/no.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/no_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/no_NO_NY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nus.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/nyn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/om.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/om_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/or.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/os.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/os_RU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pa_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pa_Arab_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pa_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pa_Guru_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pa_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pa_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pcm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ps.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ps_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pt_AO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pt_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pt_CV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pt_GQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pt_GW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pt_LU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pt_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pt_MZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pt_PT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pt_ST.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/pt_TL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/qu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/qu_BO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/qu_EC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/raj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/rm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/rn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ro.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ro_MD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/rof.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/root.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ru_BY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ru_KG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ru_KZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ru_MD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/rw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/rwk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sah.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/saq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sat.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sat_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sat_Olck.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sat_Olck_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sbp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sd_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sd_Arab_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sd_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sd_Deva_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sd_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sd_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/se.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/se_SE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/seh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ses.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sh_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sh_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sh_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/shi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/shi_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/shi_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/shi_Tfng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/shi_Tfng_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/si.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/smn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/so.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/so_DJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/so_ET.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/so_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sq_MK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_Cyrl_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_Cyrl_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_Cyrl_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_Cyrl_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_Cyrl_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_Latn_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_Latn_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_Latn_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_Latn_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_Latn_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sr_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/su.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/su_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/su_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/su_Latn_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/supplementalData.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sw_CD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sw_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/sw_UG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ta.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ta_LK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ta_MY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ta_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/te.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/teo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/teo_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/tg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/th.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ti.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ti_ER.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/tk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/tl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/tl_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/to.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/tr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/tt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/twq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/tzm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ug.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/uk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/ur_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/uz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/uz_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/uz_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/uz_Arab_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/uz_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/uz_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/uz_Latn_UZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/uz_UZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/vai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/vai_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/vai_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/vai_Vaii.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/vai_Vaii_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/vi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/vun.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/wae.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/wo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/xh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/xog.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yav.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yo_BJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yrl_CO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yrl_VE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yue.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yue_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yue_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yue_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yue_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yue_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/yue_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zgh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_Hans_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_Hans_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_Hans_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_Hant_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_Hant_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zh_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/curr/zu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/icu4j-readme.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/icupkg.inc.in +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/af.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/agq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ak.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ar_EG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ar_LY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ar_SA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ars.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/as.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/asa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ast.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/az.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/az_AZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/az_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/az_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/az_Latn_AZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bas.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/be.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bem.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bez.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bgc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bho.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bn_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/br.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/brx.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bs_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bs_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bs_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/bs_Latn_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ca.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ccp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ce.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ceb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/cgg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ckb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/cs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/cv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/cy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/da.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/dav.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/de.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/de_AT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/de_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/dje.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/doi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/dsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/dua.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/dyo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/dz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ebu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ee.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/el.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_001.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_150.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_AG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_AI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_AT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_AU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_BB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_BE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_BM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_BS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_BW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_BZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_CA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_CC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_CK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_CX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_CY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_DE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_DG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_DK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_DM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_ER.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_FJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_FK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_FM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_GB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_GD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_GG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_GI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_GM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_GY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_IE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_IM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_IO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_JE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_JM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_KI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_KN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_KY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_LC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_LS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_MG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_MS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_MT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_MU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_MV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_MW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_MY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_NA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_NF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_NH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_NL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_NR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_NU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_NZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_PG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_PN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_PW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_RH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_RW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_SB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_SC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_SD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_SE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_SH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_SI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_SL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_SS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_SX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_SZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_TC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_TK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_TO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_TT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_TV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_UG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_VC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_VG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_VU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_WS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_ZA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_ZM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/en_ZW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/eo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_419.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_AR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_BO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_BR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_BZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_CL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_CO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_CR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_CU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_DO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_EC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_GT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_HN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_MX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_NI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_PA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_PE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_PR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_PY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_SV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_US.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_UY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/es_VE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/et.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/eu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ewo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/fa_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ff.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ff_Adlm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ff_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ff_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ff_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ff_Latn_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ff_Latn_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ff_Latn_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ff_Latn_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ff_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ff_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/fi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/fil.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/fil_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/fo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/fr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/fr_BE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/fr_CA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/fr_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/fur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/fy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ga.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/gd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/gl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/gsw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/gu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/guz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/gv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ha.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ha_NE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/haw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/he.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/he_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/hi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/hi_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/hr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/hsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/hu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/hy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ia.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/id.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/id_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ig.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ii.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/in.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/in_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/is.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/it.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/iw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/iw_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/jgo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/jmc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/jv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ka.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/kab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/kam.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/kde.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/kea.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/kgp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/khq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ki.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/kk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/kkj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/kl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/kln.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/km.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/kn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ko.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/kok.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ks.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ks_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ks_Arab_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ks_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ks_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ksb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ksf.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ksh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/kw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ky.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/lag.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/lb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/lg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/lkt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ln.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/lo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/lrc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/lt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/lu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/luo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/luy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/lv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mas.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mer.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mfe.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mgh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mgo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mni.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mni_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mni_Beng_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mni_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ms.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mua.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/my.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/mzn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/naq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/nb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/nd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ne.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/nl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/nmg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/nn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/nn_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/nnh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/no.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/no_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/no_NO_NY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/nus.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/nyn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/om.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/or.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/os.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pa_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pa_Arab_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pa_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pa_Guru_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pa_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pa_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pcm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ps.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ps_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pt_AO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pt_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pt_CV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pt_GQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pt_GW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pt_LU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pt_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pt_MZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pt_PT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pt_ST.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/pt_TL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/qu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/raj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/rm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/rn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ro.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ro_MD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/rof.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/root.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/rw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/rwk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sah.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/saq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sat.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sat_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sat_Olck.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sat_Olck_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sbp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sd_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sd_Arab_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sd_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sd_Deva_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sd_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sd_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/se.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/se_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/seh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ses.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sh_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sh_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sh_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/shi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/shi_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/shi_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/shi_Tfng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/shi_Tfng_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/si.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/smn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/so.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Cyrl_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Cyrl_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Cyrl_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Cyrl_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Cyrl_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Cyrl_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Latn_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Latn_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Latn_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Latn_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Latn_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_Latn_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sr_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/su.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/su_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/su_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/su_Latn_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sv_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sw_CD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/sw_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ta.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/te.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/teo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/th.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ti.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ti_ER.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/tk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/tl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/tl_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/to.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/tr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/tt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/twq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/tzm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ug.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/uk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/ur_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/uz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/uz_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/uz_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/uz_Arab_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/uz_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/uz_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/uz_Latn_UZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/uz_UZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/vai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/vai_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/vai_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/vai_Vaii.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/vai_Vaii_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/vi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/vun.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/wae.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/wo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/xh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/xog.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yav.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yo_BJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yrl_CO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yrl_VE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yue.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yue_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yue_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yue_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yue_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yue_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/yue_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zgh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zh_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zh_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zh_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zh_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zh_Hans_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zh_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zh_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zh_Hant_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zh_Hant_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zh_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zh_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zh_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/lang/zu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/af.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/af_NA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/af_ZA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/agq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/agq_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ak.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ak_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/am_ET.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_001.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_AE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_BH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_DJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_DZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_EG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_EH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_ER.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_IQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_JO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_KM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_KW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_LB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_LY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_OM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_PS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_QA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_SA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_SD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_SO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_SS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_SY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_TD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_TN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ar_YE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ars.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/as.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/as_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/asa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/asa_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ast.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ast_ES.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/az.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/az_AZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/az_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/az_Cyrl_AZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/az_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/az_Latn_AZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bas.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bas_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/be.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/be_BY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bem.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bem_ZM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bez.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bez_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bg_BG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bgc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bgc_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bho.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bho_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bm_ML.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bn_BD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bn_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bo_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bo_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/br.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/br_FR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/brx.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/brx_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bs_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bs_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bs_Cyrl_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bs_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/bs_Latn_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ca.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ca_AD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ca_ES.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ca_FR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ca_IT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ccp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ccp_BD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ccp_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ce.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ce_RU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ceb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ceb_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/cgg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/cgg_UG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/chr_US.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ckb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ckb_IQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ckb_IR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/cs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/cs_CZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/cv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/cv_RU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/cy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/cy_GB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/da.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/da_DK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/da_GL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/dav.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/dav_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/de.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/de_AT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/de_BE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/de_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/de_DE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/de_IT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/de_LI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/de_LU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/dje.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/dje_NE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/doi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/doi_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/dsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/dsb_DE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/dua.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/dua_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/dyo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/dyo_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/dz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/dz_BT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ebu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ebu_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ee.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ee_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ee_TG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/el.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/el_CY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/el_GR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_001.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_150.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_AE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_AG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_AI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_AS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_AT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_AU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_BB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_BE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_BI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_BM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_BS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_BW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_BZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_CA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_CC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_CK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_CX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_CY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_DE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_DG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_DK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_DM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_ER.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_FJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_FK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_FM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_GB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_GD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_GG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_GI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_GM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_GU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_GY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_IE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_IM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_IO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_JE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_JM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_KI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_KN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_KY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_LC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_LS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_MG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_MH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_MP.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_MS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_MT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_MU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_MV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_MW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_MY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_NA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_NF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_NH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_NL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_NR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_NU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_NZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_PG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_PN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_PR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_PW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_RH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_RW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_SB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_SC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_SD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_SE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_SH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_SI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_SL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_SS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_SX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_SZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_TC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_TK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_TO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_TT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_TV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_UG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_UM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_US.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_US_POSIX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_VC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_VG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_VI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_VU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_WS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_ZA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_ZM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/en_ZW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/eo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/eo_001.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_419.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_AR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_BO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_BR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_BZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_CL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_CO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_CR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_CU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_DO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_EA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_EC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_ES.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_GQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_GT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_HN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_IC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_MX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_NI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_PA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_PE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_PR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_PY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_SV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_US.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_UY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/es_VE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/et.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/et_EE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/eu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/eu_ES.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ewo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ewo_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fa_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fa_IR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Adlm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Adlm_BF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Adlm_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Adlm_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Adlm_GM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Adlm_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Adlm_GW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Adlm_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Adlm_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Adlm_NE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Adlm_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Adlm_SL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Adlm_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Latn_BF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Latn_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Latn_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Latn_GM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Latn_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Latn_GW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Latn_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Latn_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Latn_NE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Latn_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Latn_SL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_Latn_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ff_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fi_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fil.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fil_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fo_DK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fo_FO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_BE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_BF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_BI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_BJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_BL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_CA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_CD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_CF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_CG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_CI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_DJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_DZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_FR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_GA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_GF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_GP.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_GQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_HT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_KM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_LU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_MC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_MF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_MG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_ML.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_MQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_MU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_NC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_NE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_PF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_PM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_RE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_RW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_SC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_SY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_TD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_TG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_TN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_VU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_WF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fr_YT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fur_IT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/fy_NL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ga.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ga_GB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ga_IE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/gd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/gd_GB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/gl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/gl_ES.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/gsw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/gsw_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/gsw_FR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/gsw_LI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/gu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/gu_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/guz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/guz_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/gv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/gv_IM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ha.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ha_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ha_NE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ha_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/haw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/haw_US.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/he.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/he_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/hi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/hi_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/hi_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/hi_Latn_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/hr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/hr_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/hr_HR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/hsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/hsb_DE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/hu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/hu_HU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/hy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/hy_AM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ia.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ia_001.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/id.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/id_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ig.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ig_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ii.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ii_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/in.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/in_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/is.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/is_IS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/it.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/it_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/it_IT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/it_SM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/it_VA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/iw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/iw_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ja_JP.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ja_JP_TRADITIONAL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/jgo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/jgo_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/jmc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/jmc_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/jv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/jv_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ka.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ka_GE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kab_DZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kam.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kam_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kde.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kde_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kea.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kea_CV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kgp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kgp_BR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/khq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/khq_ML.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ki.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ki_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kk_KZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kkj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kkj_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kl_GL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kln.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kln_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/km.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/km_KH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kn_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ko.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ko_KP.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ko_KR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kok.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kok_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ks.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ks_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ks_Arab_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ks_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ks_Deva_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ks_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ksb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ksb_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ksf.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ksf_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ksh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ksh_DE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ku_TR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/kw_GB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ky.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ky_KG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lag.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lag_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lb_LU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lg_UG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lkt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lkt_US.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ln.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ln_AO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ln_CD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ln_CF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ln_CG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lo_LA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lrc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lrc_IQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lrc_IR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lt_LT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lu_CD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/luo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/luo_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/luy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/luy_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/lv_LV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mai_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mas.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mas_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mas_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mer.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mer_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mfe.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mfe_MU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mg_MG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mgh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mgh_MZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mgo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mgo_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mi_NZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mk_MK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ml_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mn_MN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mni.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mni_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mni_Beng_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mni_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mr_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ms.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ms_BN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ms_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ms_MY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ms_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mt_MT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mua.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mua_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/my.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/my_MM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mzn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/mzn_IR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/naq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/naq_NA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nb_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nb_SJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nd_ZW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ne.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ne_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ne_NP.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nl_AW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nl_BE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nl_BQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nl_CW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nl_NL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nl_SR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nl_SX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nmg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nmg_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nn_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nnh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nnh_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/no.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/no_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/no_NO_NY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nus.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nus_SS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nyn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/nyn_UG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/om.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/om_ET.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/om_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/or.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/or_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/os.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/os_GE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/os_RU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pa_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pa_Arab_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pa_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pa_Guru_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pa_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pa_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pcm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pcm_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pl_PL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ps.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ps_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ps_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pt_AO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pt_BR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pt_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pt_CV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pt_GQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pt_GW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pt_LU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pt_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pt_MZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pt_PT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pt_ST.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/pt_TL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/qu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/qu_BO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/qu_EC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/qu_PE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/raj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/raj_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/rm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/rm_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/rn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/rn_BI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ro.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ro_MD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ro_RO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/rof.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/rof_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/root.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ru_BY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ru_KG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ru_KZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ru_MD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ru_RU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ru_UA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/rw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/rw_RW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/rwk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/rwk_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sa_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sah.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sah_RU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/saq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/saq_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sat.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sat_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sat_Olck.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sat_Olck_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sbp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sbp_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sc_IT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sd_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sd_Arab_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sd_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sd_Deva_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sd_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sd_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/se.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/se_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/se_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/se_SE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/seh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/seh_MZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ses.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ses_ML.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sg_CF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sh_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sh_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sh_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/shi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/shi_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/shi_Latn_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/shi_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/shi_Tfng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/shi_Tfng_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/si.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/si_LK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sk_SK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sl_SI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/smn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/smn_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sn_ZW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/so.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/so_DJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/so_ET.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/so_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/so_SO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sq_AL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sq_MK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sq_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Cyrl_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Cyrl_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Cyrl_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Cyrl_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Cyrl_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Cyrl_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Latn_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Latn_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Latn_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Latn_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Latn_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_Latn_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sr_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/su.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/su_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/su_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/su_Latn_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sv_AX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sv_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sv_SE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sw_CD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sw_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sw_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/sw_UG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ta.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ta_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ta_LK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ta_MY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ta_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/te.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/te_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/teo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/teo_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/teo_UG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/tg_TJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/th.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/th_TH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/th_TH_TRADITIONAL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ti.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ti_ER.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ti_ET.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/tk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/tk_TM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/tl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/tl_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/to.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/to_TO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/tr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/tr_CY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/tr_TR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/tt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/tt_RU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/twq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/twq_NE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/tzm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/tzm_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ug.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ug_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/uk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/uk_UA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ur_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/ur_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/uz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/uz_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/uz_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/uz_Arab_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/uz_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/uz_Cyrl_UZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/uz_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/uz_Latn_UZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/uz_UZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/vai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/vai_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/vai_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/vai_Latn_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/vai_Vaii.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/vai_Vaii_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/vi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/vi_VN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/vun.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/vun_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/wae.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/wae_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/wo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/wo_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/xh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/xh_ZA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/xog.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/xog_UG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yav.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yav_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yi_001.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yo_BJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yo_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yrl_BR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yrl_CO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yrl_VE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yue.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yue_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yue_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yue_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yue_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yue_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/yue_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zgh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zgh_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_Hans_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_Hans_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_Hans_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_Hant_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_Hant_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zh_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/locales/zu_ZA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/makedata.mak +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/cns-11643-1992.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ebcdic-xml-us.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/euc-jp-2007.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/euc-tw-2014.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/gsm-03.38-2009.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1006_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1025_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1026_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1047_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1051_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1089_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1097_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1098_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1112_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1122_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1123_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1124_P100-1996.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1125_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1129_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1130_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1131_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1132_P100-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1133_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1137_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1140_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1141_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1142_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1143_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1144_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1145_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1146_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1147_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1148_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1149_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1153_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1154_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1155_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1156_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1157_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1158_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1160_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1162_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1164_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1168_P100-2002.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1250_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1251_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1252_P100-2000.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1253_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1254_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1255_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1256_P110-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1257_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1258_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-12712_P100-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1276_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1363_P110-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1363_P11B-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1364_P110-2007.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1371_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1373_P100-2002.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1375_P100-2008.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1383_P110-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1386_P100-2001.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1388_P103-2001.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1390_P110-2003.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-1399_P110-2003.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-16684_P110-2003.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-16804_X110-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-273_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-277_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-278_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-280_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-284_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-285_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-290_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-297_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-33722_P120-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-33722_P12A_P12A-2004_U2.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-33722_P12A_P12A-2009_U2.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-37_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-420_X120-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-424_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-437_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-4517_P100-2005.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-4899_P100-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-4909_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-4971_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-500_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-5012_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-5123_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-5346_P100-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-5347_P100-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-5348_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-5349_P100-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-5350_P100-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-5351_P100-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-5352_P100-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-5353_P100-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-5354_P100-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-5471_P100-2006.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-5478_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-720_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-737_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-775_P100-1996.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-803_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-813_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-838_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-8482_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-850_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-851_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-852_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-855_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-856_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-857_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-858_P100-1997.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-860_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-861_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-862_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-863_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-864_X110-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-865_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-866_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-867_P100-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-868_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-869_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-870_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-871_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-874_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-875_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-878_P100-1996.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-9005_X110-2007.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-901_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-902_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-9067_X100-2005.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-912_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-913_P100-2000.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-914_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-915_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-916_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-918_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-920_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-921_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-922_P100-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-923_P100-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-930_P120-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-933_P110-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-935_P110-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-937_P110-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-939_P120-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-942_P12A-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-943_P130-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-943_P15A-2003.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-9447_P100-2002.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-9448_X100-2005.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-9449_P100-2002.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-949_P110-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-949_P11A-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-950_P110-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-954_P101-2007.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-964_P110-1999.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-970_P110_P110-2006_U2.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/ibm-971_P100-1995.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/icu-internal-25546.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/icu-internal-compound-d1.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/icu-internal-compound-d2.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/icu-internal-compound-d3.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/icu-internal-compound-d4.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/icu-internal-compound-d5.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/icu-internal-compound-d6.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/icu-internal-compound-d7.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/icu-internal-compound-s1.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/icu-internal-compound-s2.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/icu-internal-compound-s3.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/icu-internal-compound-t.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/iso-8859_10-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/iso-8859_11-2001.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/iso-8859_14-1998.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/iso-ir-165.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/jisx-212.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/lmb-excp.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/macos-0_2-10.2.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/macos-29-10.2.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/macos-35-10.2.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/macos-6_2-10.4.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/macos-7_3-10.2.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/windows-874-2000.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/windows-949-2000.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/mappings/windows-950-2000.ucm +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/currencyNumericCodes.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/dayPeriods.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/genderList.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/grammaticalFeatures.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/icudata.rc +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/icustd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/icuver.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/keyTypeData.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/langInfo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/likelySubtags.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/metaZones.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/metadata.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/numberingSystems.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/pluralRanges.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/plurals.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/supplementalData.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/timezoneTypes.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/units.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/windowsZones.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/misc/zoneinfo64.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/af.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ak.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ar_SA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ars.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/az.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/be.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/bg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/bs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ca.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ccp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/cs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/cy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/da.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/de.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/de_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ee.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/el.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/en.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/en_001.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/en_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/eo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/es.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/es_419.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/es_DO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/es_GT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/es_HN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/es_MX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/es_NI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/es_PA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/es_PR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/es_SV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/es_US.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/et.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/fa_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ff.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/fi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/fil.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/fo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/fr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/fr_BE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/fr_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ga.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/he.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/hi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/hr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/hu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/hy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/id.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/in.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/is.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/it.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/iw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ka.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/kk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/kl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/km.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ko.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ky.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/lb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/lo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/lrc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/lt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/lv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/mk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ms.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/mt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/my.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/nb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ne.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/nl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/nn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/no.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/pl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/pt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/pt_PT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/qu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ro.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/root.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/se.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/sh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/sk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/sl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/sq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/sr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/sr_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/su.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/sv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/sw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/ta.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/th.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/tr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/uk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/vi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/yue.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/yue_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/zh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/zh_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/zh_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/zh_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/zh_Hant_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/zh_Hant_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/zh_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/rbnf/zh_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/af.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/agq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ak.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ar_AE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ar_LY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ar_SA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ars.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/as.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/asa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ast.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/az.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/az_AZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/az_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/az_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/az_Latn_AZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bas.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/be.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bem.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bez.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bgc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bho.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bn_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bo_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/br.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/brx.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bs_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bs_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bs_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/bs_Latn_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ca.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ccp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ce.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ceb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/cgg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ckb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/cs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/cv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/cy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/da.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/dav.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/de.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/de_AT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/de_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/dje.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/doi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/dsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/dua.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/dyo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/dz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ebu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ee.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/el.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_001.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_150.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_AG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_AI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_AT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_AU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_BB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_BE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_BM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_BS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_BW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_BZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_CA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_CC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_CK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_CX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_CY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_DE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_DG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_DK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_DM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_ER.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_FJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_FK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_FM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_GB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_GD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_GG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_GI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_GM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_GY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_IE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_IM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_IO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_JE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_JM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_KI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_KN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_KY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_LC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_LS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_MG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_MS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_MT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_MU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_MV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_MW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_MY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_NA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_NF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_NH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_NL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_NR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_NU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_NZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_PG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_PN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_PW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_RH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_RW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_SB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_SC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_SD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_SE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_SH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_SI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_SL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_SS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_SX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_SZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_TC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_TK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_TO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_TT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_TV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_UG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_VC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_VG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_VU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_WS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_ZA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_ZM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/en_ZW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/eo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_419.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_AR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_BO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_BR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_BZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_CL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_CO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_CR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_CU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_DO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_EC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_GT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_HN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_MX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_NI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_PA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_PE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_PR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_PY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_SV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_US.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_UY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/es_VE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/et.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/eu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ewo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/fa_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ff.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ff_Adlm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ff_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ff_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ff_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ff_Latn_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ff_Latn_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ff_Latn_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ff_Latn_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ff_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ff_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/fi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/fil.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/fil_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/fo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/fr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/fr_BE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/fr_CA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/fur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/fy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ga.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/gd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/gl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/gsw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/gu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/guz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/gv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ha.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/haw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/he.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/he_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/hi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/hi_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/hr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/hsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/hu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/hy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ia.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/id.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/id_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ig.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ii.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/in.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/in_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/is.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/it.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/iw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/iw_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/jgo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/jmc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/jv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ka.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/kab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/kam.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/kde.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/kea.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/kgp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/khq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ki.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/kk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/kkj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/kl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/kln.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/km.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/kn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ko.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ko_KP.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/kok.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ks.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ks_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ks_Arab_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ks_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ks_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ksb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ksf.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ksh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ku.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/kw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ky.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/lag.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/lb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/lg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/lkt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ln.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/lo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/lrc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/lt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/lu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/luo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/luy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/lv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mas.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mer.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mfe.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mgh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mgo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mni.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mni_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mni_Beng_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mni_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ms.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mua.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/my.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/mzn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/naq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/nb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/nd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ne.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/nl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/nmg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/nn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/nn_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/nnh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/no.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/no_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/no_NO_NY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/nus.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/nyn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/om.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/or.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/os.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pa_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pa_Arab_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pa_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pa_Guru_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pa_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pa_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pcm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ps.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ps_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pt_AO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pt_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pt_CV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pt_GQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pt_GW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pt_LU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pt_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pt_MZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pt_PT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pt_ST.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/pt_TL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/qu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/raj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/rm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/rn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ro.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ro_MD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/rof.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/root.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ru_UA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/rw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/rwk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sah.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/saq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sat.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sat_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sat_Olck.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sat_Olck_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sbp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sd_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sd_Arab_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sd_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sd_Deva_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sd_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sd_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/se.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/se_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/seh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ses.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sh_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sh_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sh_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/shi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/shi_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/shi_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/shi_Tfng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/shi_Tfng_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/si.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/smn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/so.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Cyrl_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Cyrl_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Cyrl_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Cyrl_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Cyrl_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Cyrl_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Latn_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Latn_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Latn_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Latn_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Latn_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_Latn_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sr_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/su.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/su_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/su_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/su_Latn_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sw_CD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/sw_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ta.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/te.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/teo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/tg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/th.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ti.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/tk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/tl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/tl_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/to.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/tr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/tt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/twq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/tzm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ug.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/uk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/ur_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/uz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/uz_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/uz_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/uz_Arab_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/uz_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/uz_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/uz_Latn_UZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/uz_UZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/vai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/vai_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/vai_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/vai_Vaii.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/vai_Vaii_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/vi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/vun.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/wae.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/wo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/xh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/xog.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yav.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yo_BJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yrl_CO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yrl_VE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yue.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yue_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yue_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yue_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yue_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yue_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/yue_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zgh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zh_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zh_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zh_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zh_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zh_Hans_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zh_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zh_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zh_Hant_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zh_Hant_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zh_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zh_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zh_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/region/zu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/sprep/rfc3491.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/sprep/rfc3530cs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/sprep/rfc3530csci.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/sprep/rfc3530mixp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/sprep/rfc3722.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/sprep/rfc3920node.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/sprep/rfc3920res.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/sprep/rfc4011.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/sprep/rfc4013.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/sprep/rfc4505.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/sprep/rfc4518.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/sprep/rfc4518ci.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Any_Accents.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Any_Publishing.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Arab_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Beng_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Beng_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Beng_Gujr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Beng_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Beng_Knda.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Beng_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Beng_Mlym.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Beng_Orya.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Beng_Taml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Beng_Telu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Beng_ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Bengali_InterIndic.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Cyrl_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Deva_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Deva_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Deva_Gujr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Deva_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Deva_Knda.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Deva_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Deva_Mlym.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Deva_Orya.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Deva_Taml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Deva_Telu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Deva_ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Devanagari_InterIndic.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Ethi_Cyrl_Gutgarts.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Ethi_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Ethi_Latn_ALALOC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Ethi_Latn_Aethiopi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Ethi_Latn_Beta_Metsehaf.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Ethi_Latn_ES3842.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Ethi_Latn_IES_JES_1964.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Ethi_Latn_Lambdin.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Ethi_Latn_SERA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Fullwidth_Halfwidth.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Geor_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Grek_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Grek_Latn_UNGEGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Gujarati_InterIndic.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Gujr_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Gujr_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Gujr_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Gujr_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Gujr_Knda.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Gujr_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Gujr_Mlym.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Gujr_Orya.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Gujr_Taml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Gujr_Telu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Gujr_ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Gurmukhi_InterIndic.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Guru_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Guru_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Guru_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Guru_Gujr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Guru_Knda.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Guru_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Guru_Mlym.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Guru_Orya.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Guru_Taml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Guru_Telu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Guru_ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Han_Latin_Names.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Han_Spacedhan.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Hang_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Hani_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Hans_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Hebr_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Hira_Kana.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Hira_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/InterIndic_Arabic.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/InterIndic_Bengali.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/InterIndic_Devanagari.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/InterIndic_Gujarati.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/InterIndic_Gurmukhi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/InterIndic_Kannada.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/InterIndic_Latin.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/InterIndic_Malayalam.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/InterIndic_Oriya.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/InterIndic_Tamil.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/InterIndic_Telugu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/InterIndic_ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Jamo_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Kannada_InterIndic.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Knda_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Knda_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Knda_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Knda_Gujr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Knda_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Knda_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Knda_Mlym.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Knda_Orya.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Knda_Taml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Knda_Telu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Knda_ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latin_ASCII.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latin_ConjoiningJamo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latin_InterIndic.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latin_NumericPinyin.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Armn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Bopo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Cans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Ethi_Williamson.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Gujr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Hang.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Jamo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Kana.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Knda.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Mlym.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Orya.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Taml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Telu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Thaa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Latn_Thai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Malayalam_InterIndic.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Mlym_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Mlym_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Mlym_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Mlym_Gujr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Mlym_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Mlym_Knda.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Mlym_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Mlym_Orya.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Mlym_Taml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Mlym_Telu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Mlym_ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Oriya_InterIndic.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Orya_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Orya_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Orya_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Orya_Gujr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Orya_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Orya_Knda.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Orya_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Orya_Mlym.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Orya_Taml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Orya_Telu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Orya_ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Pinyin_NumericPinyin.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Syrc_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Tamil_InterIndic.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Taml_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Taml_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Taml_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Taml_Gujr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Taml_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Taml_Knda.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Taml_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Taml_Mlym.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Taml_Orya.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Taml_Telu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Taml_ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Telu_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Telu_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Telu_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Telu_Gujr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Telu_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Telu_Knda.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Telu_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Telu_Mlym.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Telu_Orya.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Telu_Taml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Telu_ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Telugu_InterIndic.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ThaiLogical_Latin.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Thai_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Thai_ThaiLogical.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Thai_ThaiSemi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/Zawgyi_my.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/am_Ethi_am_Brai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/am_Ethi_d0_Morse.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/am_am_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/am_am_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/am_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/am_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/am_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ar_ar_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/az_Cyrl_az_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/az_Lower.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/az_Title.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/az_Upper.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/be_be_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/bg_bg_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/blt_blt_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/byn_Ethi_byn_Latn_Tekie_Alibekit.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/byn_Ethi_byn_Latn_Xaleget.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ch_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ch_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ch_ch_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ch_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ch_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/chr_chr_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/cs_FONIPA_ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/cs_FONIPA_ko.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/cs_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/cs_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/cs_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/cs_cs_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/cs_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/cs_ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/cs_ko.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/cy_cy_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/de_ASCII.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/dsb_dsb_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/dv_dv_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/el.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/el_Lower.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/el_Title.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/el_Upper.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/el_el_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/en.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/eo_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/eo_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/eo_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/eo_eo_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/eo_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_419_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_419_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_419_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_419_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_419_ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_419_zh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_FONIPA_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_FONIPA_es_419_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_FONIPA_ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_FONIPA_zh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_es_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/es_zh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/fa_fa_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/fa_fa_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/gz_Ethi_Sarb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ha_ha_NE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/he_he_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/hy_AREVMDA_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/hy_AREVMDA_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/hy_AREVMDA_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/hy_AREVMDA_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/hy_AREVMDA_hy_AREVMDA_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/hy_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/hy_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/hy_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/hy_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/hy_hy_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/hy_hy_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ia_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ia_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ia_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ia_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ia_ia_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/it_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/it_ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ja_Hrkt_ja_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ja_Latn_ko.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ja_Latn_ru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ka_ka_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ka_ka_Latn_BGN_1981.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/kk_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/kk_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/kk_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/kk_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/kk_kk_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/kk_kk_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ko_ko_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ky_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ky_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ky_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ky_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ky_ky_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ky_ky_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/la_la_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/lt_Lower.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/lt_Title.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/lt_Upper.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/mk_mk_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/mn_mn_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/mn_mn_Latn_MNS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/my_Zawgyi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/my_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/my_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/my_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/my_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/my_my_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/my_my_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/nl_Title.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/nv_nv_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/pl_FONIPA_ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/pl_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/pl_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/pl_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/pl_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/pl_ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/pl_pl_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ps_ps_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/rm_SURSILV_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/rm_SURSILV_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/rm_SURSILV_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/rm_SURSILV_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/rm_SURSILV_rm_FONIPA_SURSILV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ro_FONIPA_ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ro_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ro_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ro_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ro_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ro_ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ro_ro_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/root.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ru_Latn_ru_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ru_ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ru_ru_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ru_zh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sat_Olck_sat_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sat_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sat_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sat_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sat_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sgw_Ethi_Ethi_Gurage_2013.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/si_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/si_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/si_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/si_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/si_si_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/si_si_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sk_FONIPA_ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sk_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sk_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sk_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sk_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sk_ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sk_sk_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/sr_sr_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ta_ta_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/tk_Cyrl_tk_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/tlh_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/tlh_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/tlh_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/tlh_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/tlh_tlh_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/tr_Lower.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/tr_Title.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/tr_Upper.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/ug_ug_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/uk_uk_Latn_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/und_FONIPA_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/und_FONIPA_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/und_FONIPA_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/und_FONIPA_und_FONXSAMP.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/uz_Cyrl_uz_BGN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/uz_Cyrl_uz_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/vec_vec_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/xh_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/xh_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/xh_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/xh_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/xh_xh_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/yo_yo_BJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/zh_Latn_PINYIN_ru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/zu_am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/zu_ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/zu_chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/zu_fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/translit/zu_zu_FONIPA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unidata/FractionalUCA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unidata/changes.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unidata/norm2/nfc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unidata/norm2/nfkc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unidata/norm2/nfkc_cf.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unidata/ppucd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/af.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/agq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ak.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ar_SA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ars.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/as.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/asa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ast.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/az.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/az_AZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/az_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/az_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/az_Latn_AZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bas.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/be.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bem.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bez.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bgc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bho.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bn_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/br.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/brx.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bs_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bs_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bs_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/bs_Latn_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ca.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ccp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ce.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ceb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/cgg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ckb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/cs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/cv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/cy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/da.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/dav.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/de.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/de_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/dje.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/doi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/dsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/dua.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/dyo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/dz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ebu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ee.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/el.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_001.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_150.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_AG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_AI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_AT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_AU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_BB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_BE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_BM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_BS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_BW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_BZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_CA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_CC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_CK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_CX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_CY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_DE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_DG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_DK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_DM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_ER.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_FJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_FK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_FM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_GB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_GD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_GG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_GI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_GM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_GY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_IE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_IM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_IO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_JE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_JM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_KI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_KN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_KY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_LC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_LS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_MG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_MS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_MT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_MU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_MV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_MW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_MY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_NA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_NF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_NH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_NL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_NR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_NU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_NZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_PG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_PN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_PW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_RH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_RW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_SB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_SC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_SD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_SE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_SH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_SI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_SL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_SS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_SX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_SZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_TC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_TK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_TO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_TT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_TV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_UG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_VC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_VG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_VU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_WS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_ZA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_ZM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/en_ZW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/eo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_419.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_AR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_BO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_BR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_BZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_CL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_CO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_CR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_CU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_DO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_EC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_GT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_HN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_MX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_NI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_PA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_PE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_PR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_PY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_SV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_US.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_UY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/es_VE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/et.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/eu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ewo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ff.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ff_Adlm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ff_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ff_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ff_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ff_Latn_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ff_Latn_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ff_Latn_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ff_Latn_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ff_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ff_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/fi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/fil.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/fil_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/fo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/fr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/fr_CA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/fr_HT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/fur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/fy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ga.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/gd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/gl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/gsw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/gu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/guz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/gv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ha.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/haw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/he.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/he_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/hi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/hi_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/hr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/hsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/hu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/hy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ia.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/id.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/id_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ig.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ii.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/in.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/in_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/is.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/it.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/iw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/iw_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/jgo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/jmc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/jv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ka.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/kab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/kam.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/kde.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/kea.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/kgp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/khq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ki.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/kk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/kkj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/kl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/kln.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/km.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/kn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ko.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/kok.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ks.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ks_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ks_Arab_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ks_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ks_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ksb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ksf.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ksh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ku.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/kw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ky.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/lag.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/lb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/lg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/lkt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ln.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/lo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/lrc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/lt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/lu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/luo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/luy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/lv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mas.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mer.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mfe.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mgh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mgo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mni.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mni_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mni_Beng_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mni_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ms.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mua.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/my.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/mzn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/naq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/nb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/nd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ne.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/nl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/nmg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/nn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/nn_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/nnh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/no.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/no_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/no_NO_NY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/nus.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/nyn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/om.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/or.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/os.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pa_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pa_Arab_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pa_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pa_Guru_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pa_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pa_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pcm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ps.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ps_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pt_AO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pt_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pt_CV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pt_GQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pt_GW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pt_LU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pt_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pt_MZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pt_PT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pt_ST.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/pt_TL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/qu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/raj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/rm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/rn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ro.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ro_MD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/rof.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/root.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/rw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/rwk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sah.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/saq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sat.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sat_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sat_Olck.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sat_Olck_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sbp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sd_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sd_Arab_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sd_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sd_Deva_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sd_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sd_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/se.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/seh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ses.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sh_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sh_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sh_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/shi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/shi_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/shi_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/shi_Tfng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/shi_Tfng_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/si.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/smn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/so.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_Cyrl_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_Cyrl_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_Cyrl_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_Cyrl_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_Cyrl_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_Latn_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_Latn_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_Latn_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_Latn_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_Latn_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sr_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/su.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/su_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/su_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/su_Latn_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sv_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/sw_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ta.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/te.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/teo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/tg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/th.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ti.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/tk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/tl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/tl_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/to.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/tr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/tt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/twq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/tzm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ug.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/uk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/ur_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/uz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/uz_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/uz_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/uz_Arab_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/uz_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/uz_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/uz_Latn_UZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/uz_UZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/vai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/vai_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/vai_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/vai_Vaii.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/vai_Vaii_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/vi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/vun.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/wae.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/wo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/xh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/xog.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yav.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yo_BJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yrl_CO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yrl_VE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yue.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yue_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yue_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yue_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yue_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yue_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/yue_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zgh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_Hans_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_Hans_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_Hans_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_Hant_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_Hant_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zh_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/unit/zu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/af.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/agq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ak.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/am.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ar.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ar_SA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ars.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/as.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/asa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ast.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/az.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/az_AZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/az_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/az_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/az_Latn_AZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bas.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/be.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bem.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bez.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bgc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bho.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/br.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/brx.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bs_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bs_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bs_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/bs_Latn_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ca.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ccp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ce.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ceb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/cgg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/chr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ckb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/cs.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/cv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/cy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/da.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/dav.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/de.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/de_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/dje.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/doi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/dsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/dua.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/dyo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/dz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ebu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ee.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/el.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_001.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_150.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_AE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_AG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_AI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_AT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_AU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_BB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_BE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_BM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_BS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_BW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_BZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_CA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_CC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_CK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_CX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_CY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_DE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_DG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_DK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_DM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_ER.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_FJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_FK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_FM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_GB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_GD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_GG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_GH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_GI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_GM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_GU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_GY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_IE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_IM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_IO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_JE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_JM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_KI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_KN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_KY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_LC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_LS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_MG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_MH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_MP.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_MS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_MT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_MU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_MV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_MW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_MY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_NA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_NF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_NG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_NH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_NL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_NR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_NU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_NZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_PG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_PN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_PW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_RH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_RW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_SB.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_SC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_SD.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_SE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_SH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_SI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_SL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_SS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_SX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_SZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_TC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_TK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_TO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_TT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_TV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_TZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_UG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_VC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_VG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_VU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_WS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_ZA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_ZM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/en_ZW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/eo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_419.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_AR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_BO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_BR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_BZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_CL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_CO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_CR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_CU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_DO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_EC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_GT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_HN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_MX.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_NI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_PA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_PE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_PR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_PY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_SV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_US.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_UY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/es_VE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/et.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/eu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ewo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/fa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ff.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ff_Adlm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ff_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ff_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ff_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ff_Latn_CM.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ff_Latn_GN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ff_Latn_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ff_Latn_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ff_MR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ff_SN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/fi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/fil.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/fil_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/fo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/fr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/fr_CA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/fr_GF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/fur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/fy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ga.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/gd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/gl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/gsw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/gu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/guz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/gv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ha.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/haw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/he.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/he_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/hi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/hi_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/hr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/hsb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/hu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/hy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ia.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/id.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/id_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ig.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ii.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/in.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/in_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/is.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/it.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/iw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/iw_IL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ja.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/jgo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/jmc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/jv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ka.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/kab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/kam.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/kde.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/kea.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/kgp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/khq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ki.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/kk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/kkj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/kl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/kln.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/km.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/kn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ko.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ko_KP.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/kok.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ks.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ks_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ks_Arab_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ks_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ks_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ksb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ksf.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ksh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ku.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/kw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ky.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/lag.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/lb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/lg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/lkt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ln.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/lo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/lrc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/lt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/lu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/luo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/luy.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/lv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mas.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mer.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mfe.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mgh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mgo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ml.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mni.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mni_Beng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mni_Beng_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mni_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ms.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ms_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mua.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/my.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/mzn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/naq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/nb.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/nd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ne.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ne_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/nl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/nl_SR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/nmg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/nn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/nn_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/nnh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/no.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/no_NO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/no_NO_NY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/nus.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/nyn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/om.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/or.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/os.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pa_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pa_Arab_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pa_Guru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pa_Guru_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pa_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pa_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pcm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ps.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ps_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pt_AO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pt_CH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pt_CV.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pt_GQ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pt_GW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pt_LU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pt_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pt_MZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pt_PT.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pt_ST.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/pt_TL.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/qu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/qu_BO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/qu_EC.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/raj.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/rm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/rn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ro.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/rof.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/root.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ru.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/rw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/rwk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sa.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sah.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/saq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sat.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sat_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sat_Olck.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sat_Olck_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sbp.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sc.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sd.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sd_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sd_Arab_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sd_Deva.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sd_Deva_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sd_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sd_PK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/se.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/se_FI.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/seh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ses.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sh_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sh_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sh_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/shi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/shi_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/shi_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/shi_Tfng.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/shi_Tfng_MA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/si.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/smn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/so.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_Cyrl_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_Cyrl_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_Cyrl_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_Cyrl_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_Cyrl_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_Latn_BA.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_Latn_CS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_Latn_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_Latn_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_Latn_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_ME.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_RS.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_XK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sr_YU.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/su.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/su_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/su_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/su_Latn_ID.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sv.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sw.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/sw_KE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ta.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ta_MY.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ta_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/te.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/teo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/tg.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/th.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ti.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/tk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/tl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/tl_PH.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/to.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/tr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/tt.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/twq.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/tzdbNames.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/tzm.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ug.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/uk.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ur.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/ur_IN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/uz.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/uz_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/uz_Arab.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/uz_Arab_AF.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/uz_Cyrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/uz_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/uz_Latn_UZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/uz_UZ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/vai.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/vai_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/vai_Latn.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/vai_Vaii.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/vai_Vaii_LR.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/vi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/vun.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/wae.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/wo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/xh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/xog.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yav.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yi.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yo.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yo_BJ.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yrl.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yrl_CO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yrl_VE.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yue.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yue_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yue_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yue_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yue_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yue_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/yue_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zgh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zh.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zh_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zh_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zh_Hans.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zh_Hans_CN.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zh_Hans_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zh_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zh_Hant_HK.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zh_Hant_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zh_Hant_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zh_MO.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zh_SG.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zh_TW.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/data/zone/zu.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/extra/scrptrun/scrptrun.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/extra/scrptrun/scrptrun.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/extra/scrptrun/srtest.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/extra/uconv/makedata.mak +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/extra/uconv/pkgdata.inc.in +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/extra/uconv/resources/fr.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/extra/uconv/resources/root.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/extra/uconv/uconv.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/extra/uconv/unicode/uwmsg.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/extra/uconv/uwmsg.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/alphaindex.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/anytrans.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/anytrans.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/astro.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/astro.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/basictz.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/bocsu.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/bocsu.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/brktrans.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/brktrans.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/buddhcal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/buddhcal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/calendar.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/casetrn.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/casetrn.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/cecal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/cecal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/chnsecal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/chnsecal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/choicfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/coleitr.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/coll.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collation.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collation.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationbuilder.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationbuilder.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationcompare.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationcompare.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationdata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationdata.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationdatabuilder.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationdatabuilder.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationdatareader.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationdatareader.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationdatawriter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationdatawriter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationfastlatin.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationfastlatin.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationfastlatinbuilder.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationfastlatinbuilder.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationfcd.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationfcd.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationiterator.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationiterator.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationkeys.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationkeys.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationroot.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationroot.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationrootelements.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationrootelements.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationruleparser.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationruleparser.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationsets.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationsets.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationsettings.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationsettings.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationtailoring.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationtailoring.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationweights.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collationweights.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/collunsafe.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/compactdecimalformat.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/coptccal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/coptccal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/cpdtrans.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/cpdtrans.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csdetect.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csdetect.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csmatch.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csmatch.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csr2022.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csr2022.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csrecog.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csrecog.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csrmbcs.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csrmbcs.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csrsbcs.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csrsbcs.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csrucode.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csrucode.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csrutf8.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/csrutf8.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/curramt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/currfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/currfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/currpinf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/currunit.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/dangical.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/dangical.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/datefmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/dayperiodrules.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/dayperiodrules.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/dcfmtsym.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/decContext.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/decContext.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/decNumber.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/decNumber.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/decNumberLocal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/decimfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/displayoptions.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-bignum-dtoa.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-bignum-dtoa.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-bignum.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-bignum.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-cached-powers.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-cached-powers.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-diy-fp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-double-to-string.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-double-to-string.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-fast-dtoa.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-fast-dtoa.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-ieee.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-string-to-double.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-string-to-double.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-strtod.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-strtod.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion-utils.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/double-conversion.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/dt_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/dtfmtsym.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/dtitv_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/dtitvfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/dtitvinf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/dtptngen.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/dtptngen_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/dtrule.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/erarules.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/erarules.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/esctrn.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/esctrn.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ethpccal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ethpccal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/fmtable.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/fmtable_cnv.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/fmtableimp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/format.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/formatted_string_builder.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/formatted_string_builder.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/formattedval_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/formattedval_iterimpl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/formattedval_sbimpl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/formattedvalue.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/fphdlimp.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/fphdlimp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/fpositer.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/funcrepl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/funcrepl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/gender.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/gregocal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/gregoimp.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/gregoimp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/hebrwcal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/hebrwcal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/i18n.rc +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/indiancal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/indiancal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/inputext.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/inputext.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/islamcal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/islamcal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/japancal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/japancal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/listformatter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/measfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/measunit.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/measunit_extra.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/measunit_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/measure.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/msgfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/msgfmt_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/name2uni.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/name2uni.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/nfrlist.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/nfrs.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/nfrs.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/nfrule.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/nfrule.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/nfsubs.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/nfsubs.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/nortrans.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/nortrans.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/nultrans.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/nultrans.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_affixutils.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_affixutils.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_asformat.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_asformat.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_capi.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_compact.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_compact.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_currencysymbols.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_currencysymbols.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_decimalquantity.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_decimalquantity.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_decimfmtprops.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_decimfmtprops.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_decnum.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_fluent.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_formatimpl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_formatimpl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_grouping.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_integerwidth.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_longnames.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_longnames.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_mapper.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_mapper.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_microprops.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_modifiers.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_modifiers.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_multiplier.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_multiplier.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_notation.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_output.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_padding.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_patternmodifier.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_patternmodifier.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_patternstring.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_patternstring.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_rounding.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_roundingutils.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_scientific.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_scientific.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_skeletons.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_skeletons.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_symbolswrapper.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_types.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_usageprefs.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_usageprefs.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_utils.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_utils.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/number_utypes.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_affixes.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_affixes.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_compositions.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_compositions.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_currency.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_currency.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_decimal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_decimal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_impl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_parsednumber.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_scientific.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_scientific.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_symbols.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_symbols.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_types.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_utils.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_validators.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numparse_validators.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numrange_capi.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numrange_fluent.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numrange_impl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numrange_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numsys.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/numsys_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/olsontz.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/olsontz.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/persncal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/persncal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/pluralranges.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/pluralranges.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/plurfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/plurrule.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/plurrule_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/quant.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/quant.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/quantityformatter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/quantityformatter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rbnf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rbt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rbt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rbt_data.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rbt_data.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rbt_pars.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rbt_pars.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rbt_rule.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rbt_rule.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rbt_set.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rbt_set.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rbtz.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/regexcmp.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/regexcmp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/regexcst.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/regexcst.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/regeximp.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/regeximp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/regexst.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/regexst.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/regextxt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/regextxt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/region.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/region_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/reldatefmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/reldtfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/reldtfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rematch.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/remtrans.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/remtrans.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/repattrn.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/rulebasedcollator.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/scientificnumberformatter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/scriptset.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/scriptset.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/search.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/selfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/selfmtimpl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/sharedbreakiterator.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/sharedbreakiterator.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/sharedcalendar.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/shareddateformatsymbols.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/sharednumberformat.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/sharedpluralrules.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/simpletz.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/smpdtfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/smpdtfst.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/smpdtfst.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/sortkey.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/standardplural.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/standardplural.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/string_segment.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/string_segment.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/strmatch.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/strmatch.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/strrepl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/strrepl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/stsearch.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/taiwncal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/taiwncal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/timezone.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/titletrn.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/titletrn.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tmunit.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tmutamt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tmutfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tolowtrn.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tolowtrn.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/toupptrn.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/toupptrn.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/translit.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/transreg.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/transreg.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tridpars.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tridpars.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tzfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tzgnames.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tzgnames.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tznames.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tznames_impl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tznames_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tzrule.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/tztrans.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ucal.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ucln_in.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ucln_in.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ucol.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ucol_imp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ucol_res.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ucol_sit.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ucoleitr.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ucsdet.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/udat.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/udateintervalformat.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/udatpg.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ufieldpositer.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/uitercollationiterator.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/uitercollationiterator.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ulistformatter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ulocdata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/umsg.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/umsg_imp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unesctrn.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unesctrn.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/uni2name.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/uni2name.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/alphaindex.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/basictz.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/calendar.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/choicfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/coleitr.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/coll.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/compactdecimalformat.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/curramt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/currpinf.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/currunit.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/datefmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/dcfmtsym.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/decimfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/displayoptions.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/dtfmtsym.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/dtitvfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/dtitvinf.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/dtptngen.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/dtrule.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/fieldpos.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/fmtable.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/format.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/formattedvalue.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/fpositer.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/gender.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/gregocal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/listformatter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/measfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/measunit.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/measure.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/msgfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/nounit.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/numberformatter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/numberrangeformatter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/numfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/numsys.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/plurfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/plurrule.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/rbnf.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/rbtz.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/regex.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/region.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/reldatefmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/scientificnumberformatter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/search.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/selfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/simpletz.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/smpdtfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/sortkey.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/stsearch.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/tblcoll.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/timezone.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/tmunit.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/tmutamt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/tmutfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/translit.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/tzfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/tznames.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/tzrule.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/tztrans.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/ucal.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/ucol.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/ucoleitr.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/ucsdet.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/udat.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/udateintervalformat.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/udatpg.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/udisplayoptions.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/ufieldpositer.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/uformattable.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/uformattedvalue.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/ugender.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/ulistformatter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/ulocdata.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/umsg.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/unirepl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/unum.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/unumberformatter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/unumberrangeformatter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/unumsys.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/upluralrules.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/uregex.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/uregion.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/ureldatefmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/usearch.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/uspoof.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/utmscale.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/utrans.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unicode/vtzone.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/units_complexconverter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/units_complexconverter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/units_converter.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/units_converter.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/units_data.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/units_data.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/units_router.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/units_router.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unum.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/unumsys.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/upluralrules.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/uregex.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/uregexc.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/uregion.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/usearch.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/uspoof.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/uspoof_build.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/uspoof_conf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/uspoof_conf.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/uspoof_impl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/uspoof_impl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/usrchimp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/utf16collationiterator.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/utf16collationiterator.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/utf8collationiterator.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/utf8collationiterator.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/utmscale.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/utrans.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/vtzone.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/vzone.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/vzone.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/windtfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/windtfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/winnmfmt.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/winnmfmt.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/wintzimpl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/wintzimpl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/zonemeta.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/zonemeta.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/zrule.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/zrule.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ztrans.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/i18n/ztrans.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/icudefs.mk.in +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/io.rc +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/locbund.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/locbund.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/sprintf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/sscanf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/ucln_io.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/ucln_io.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/ufile.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/ufile.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/ufmt_cmn.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/ufmt_cmn.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/unicode/ustdio.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/unicode/ustream.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/uprintf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/uprintf.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/uprntf_p.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/uscanf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/uscanf.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/uscanf_p.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/ustdio.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/io/ustream.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/python/icutools/databuilder/filtration_schema.json +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/stubdata/stubdata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/stubdata/stubdata.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/ctest.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/datamap.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/testdata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/tstdtmod.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/ucln_ct.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/unicode/ctest.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/unicode/datamap.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/unicode/testdata.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/unicode/testlog.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/unicode/testtype.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/unicode/tstdtmod.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/unicode/uperf.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/unicode/utimer.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/ctestfw/uperf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/escapesrc/escapesrc.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/escapesrc/expect-simple.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/escapesrc/tblgen.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/escapesrc/test-nochange.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/escapesrc/test-simple.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genbrk/genbrk.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genccode/genccode.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gencfu/gencfu.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gencmn/gencmn.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gencnval/gencnval.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gencolusb/extract_unsafe_backwards.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gencolusb/verify_uset.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gendict/gendict.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gennorm2/extradata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gennorm2/extradata.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gennorm2/gennorm2.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gennorm2/n2builder.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gennorm2/n2builder.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gennorm2/norms.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gennorm2/norms.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/derb.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/errmsg.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/errmsg.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/filterrb.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/filterrb.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/genrb.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/genrb.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/parse.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/parse.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/prscmnts.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/prscmnts.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/rbutil.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/rbutil.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/read.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/read.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/reslist.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/reslist.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/rle.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/rle.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/ustr.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/ustr.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/wrtjava.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/genrb/wrtxml.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gensprep/gensprep.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gensprep/gensprep.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gensprep/store.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gentest/genres32.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gentest/gentest.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/gentest/gentest.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/icuexportdata/icuexportdata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/icuinfo/icuinfo.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/icuinfo/icuplugins_windows_sample.txt +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/icuinfo/testplug.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/icupkg/icupkg.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/icuswap/icuswap.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/makeconv/gencnvex.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/makeconv/genmbcs.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/makeconv/genmbcs.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/makeconv/makeconv.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/makeconv/makeconv.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/makeconv/ucnvstat.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/pkgdata/pkgdata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/pkgdata/pkgtypes.c +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/pkgdata/pkgtypes.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/collationinfo.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/collationinfo.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/dbgutil.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/dbgutil.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/denseranges.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/denseranges.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/filestrm.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/filestrm.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/filetools.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/filetools.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/flagparser.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/flagparser.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/package.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/package.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/pkg_genc.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/pkg_genc.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/pkg_gencmn.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/pkg_gencmn.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/pkg_icu.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/pkg_icu.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/pkg_imp.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/pkgitems.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/ppucd.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/ppucd.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/swapimpl.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/swapimpl.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/toolutil.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/toolutil.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/ucbuf.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/ucbuf.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/ucln_tu.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/ucm.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/ucm.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/ucmstate.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/udbgutil.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/udbgutil.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/unewdata.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/unewdata.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/uoptions.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/uoptions.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/uparse.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/uparse.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/writesrc.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/writesrc.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/xmlparser.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/toolutil/xmlparser.h +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/tzcode/icuregions +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/tzcode/icuzdump.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/tzcode/icuzones +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/tzcode/tz2icu.cpp +ORIGIN: http://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/tools/tzcode/tz2icu.h +ORIGIN: http://www.unicode.org/copyright.html#License referenced by ../../../third_party/icu/source/data/brkitr/ja.txt +ORIGIN: http://www.unicode.org/copyright.html#License referenced by ../../../third_party/icu/source/data/brkitr/root.txt +ORIGIN: http://www.unicode.org/copyright.html#License referenced by ../../../third_party/icu/source/data/brkitr/zh.txt +ORIGIN: http://www.unicode.org/copyright.html#License referenced by ../../../third_party/icu/source/data/brkitr/zh_Hant.txt +ORIGIN: http://www.unicode.org/copyright.html#License referenced by ../../../third_party/icu/source/data/coll/de_.txt +ORIGIN: http://www.unicode.org/copyright.html#License referenced by ../../../third_party/icu/source/data/coll/de__PHONEBOOK.txt +ORIGIN: http://www.unicode.org/copyright.html#License referenced by ../../../third_party/icu/source/data/coll/es_.txt +ORIGIN: http://www.unicode.org/copyright.html#License referenced by ../../../third_party/icu/source/data/coll/es__TRADITIONAL.txt +ORIGIN: http://www.unicode.org/terms_of_use.html referenced by ../../../third_party/harfbuzz/src/hb-unicode-emoji-table.hh +ORIGIN: https://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/emojiprops.cpp +ORIGIN: https://www.unicode.org/copyright.html referenced by ../../../third_party/icu/source/common/emojiprops.h +ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/CaseFolding.txt +ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/DerivedCoreProperties.txt +ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/DerivedNormalizationProps.txt +ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/NormalizationCorrections.txt +ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/NormalizationTest.txt +ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/SpecialCasing.txt +ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/UCARules.txt +ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/confusables.txt +ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/emoji-sequences.txt +ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/emoji-zwj-sequences.txt +ORIGIN: https://www.unicode.org/terms_of_use.html referenced by ../../../third_party/icu/source/data/unidata/norm2/uts46.txt +TYPE: LicenseType.unicode +FILE: ../../../third_party/harfbuzz/src/hb-unicode-emoji-table.hh FILE: ../../../third_party/icu/APIChangeReport.html FILE: ../../../third_party/icu/source/Doxyfile.in -FILE: ../../../third_party/icu/source/common/BUILD.bazel FILE: ../../../third_party/icu/source/common/appendable.cpp FILE: ../../../third_party/icu/source/common/bmpset.cpp FILE: ../../../third_party/icu/source/common/bmpset.h @@ -26379,6 +57797,7 @@ FILE: ../../../third_party/icu/source/common/rbbinode.h FILE: ../../../third_party/icu/source/common/rbbirb.cpp FILE: ../../../third_party/icu/source/common/rbbirb.h FILE: ../../../third_party/icu/source/common/rbbirpt.h +FILE: ../../../third_party/icu/source/common/rbbirpt.txt FILE: ../../../third_party/icu/source/common/rbbiscan.cpp FILE: ../../../third_party/icu/source/common/rbbiscan.h FILE: ../../../third_party/icu/source/common/rbbisetb.cpp @@ -26608,7 +58027,6 @@ FILE: ../../../third_party/icu/source/common/unicode/utf8.h FILE: ../../../third_party/icu/source/common/unicode/utf_old.h FILE: ../../../third_party/icu/source/common/unicode/utrace.h FILE: ../../../third_party/icu/source/common/unicode/utypes.h -FILE: ../../../third_party/icu/source/common/unicode/uvernum.h FILE: ../../../third_party/icu/source/common/unicode/uversion.h FILE: ../../../third_party/icu/source/common/unifiedcache.cpp FILE: ../../../third_party/icu/source/common/unifiedcache.h @@ -26689,51 +58107,2125 @@ FILE: ../../../third_party/icu/source/common/uvectr64.cpp FILE: ../../../third_party/icu/source/common/uvectr64.h FILE: ../../../third_party/icu/source/common/wintz.cpp FILE: ../../../third_party/icu/source/common/wintz.h -FILE: ../../../third_party/icu/source/config/icu-config-bottom -FILE: ../../../third_party/icu/source/config/icu-config.1.in -FILE: ../../../third_party/icu/source/config/icu.pc.in -FILE: ../../../third_party/icu/source/config/make2sh.sed -FILE: ../../../third_party/icu/source/config/mh-aix-gcc -FILE: ../../../third_party/icu/source/config/mh-aix-va -FILE: ../../../third_party/icu/source/config/mh-alpha-linux-cc -FILE: ../../../third_party/icu/source/config/mh-alpha-linux-gcc -FILE: ../../../third_party/icu/source/config/mh-alpha-osf -FILE: ../../../third_party/icu/source/config/mh-beos -FILE: ../../../third_party/icu/source/config/mh-bsd-gcc -FILE: ../../../third_party/icu/source/config/mh-cygwin -FILE: ../../../third_party/icu/source/config/mh-cygwin-msvc -FILE: ../../../third_party/icu/source/config/mh-cygwin64 -FILE: ../../../third_party/icu/source/config/mh-darwin -FILE: ../../../third_party/icu/source/config/mh-haiku -FILE: ../../../third_party/icu/source/config/mh-hpux-acc -FILE: ../../../third_party/icu/source/config/mh-hpux-gcc -FILE: ../../../third_party/icu/source/config/mh-irix -FILE: ../../../third_party/icu/source/config/mh-linux -FILE: ../../../third_party/icu/source/config/mh-linux-va -FILE: ../../../third_party/icu/source/config/mh-mingw -FILE: ../../../third_party/icu/source/config/mh-mingw64 -FILE: ../../../third_party/icu/source/config/mh-mpras -FILE: ../../../third_party/icu/source/config/mh-msys-msvc -FILE: ../../../third_party/icu/source/config/mh-os390 -FILE: ../../../third_party/icu/source/config/mh-os400 -FILE: ../../../third_party/icu/source/config/mh-qnx -FILE: ../../../third_party/icu/source/config/mh-solaris -FILE: ../../../third_party/icu/source/config/mh-solaris-gcc -FILE: ../../../third_party/icu/source/config/mh-unknown -FILE: ../../../third_party/icu/source/config/windows-update.sed.in -FILE: ../../../third_party/icu/source/data/brkitr/LOCALE_DEPS.json -FILE: ../../../third_party/icu/source/data/build.xml -FILE: ../../../third_party/icu/source/data/coll/LOCALE_DEPS.json -FILE: ../../../third_party/icu/source/data/curr/LOCALE_DEPS.json -FILE: ../../../third_party/icu/source/data/dtd/cldr-35.1/common/dtd/ldml.dtd -FILE: ../../../third_party/icu/source/data/dtd/cldr-35.1/common/dtd/ldmlICU.dtd -FILE: ../../../third_party/icu/source/data/dtd/cldr-40/common/dtd/ldml.dtd -FILE: ../../../third_party/icu/source/data/dtd/cldr-40/common/dtd/ldmlICU.dtd -FILE: ../../../third_party/icu/source/data/dtd/cldr/common/dtd/ldml.dtd -FILE: ../../../third_party/icu/source/data/dtd/cldr/common/dtd/ldmlICU.dtd +FILE: ../../../third_party/icu/source/data/brkitr/de.txt +FILE: ../../../third_party/icu/source/data/brkitr/dictionaries/thaidict.txt +FILE: ../../../third_party/icu/source/data/brkitr/el.txt +FILE: ../../../third_party/icu/source/data/brkitr/en.txt +FILE: ../../../third_party/icu/source/data/brkitr/en_US.txt +FILE: ../../../third_party/icu/source/data/brkitr/en_US_POSIX.txt +FILE: ../../../third_party/icu/source/data/brkitr/es.txt +FILE: ../../../third_party/icu/source/data/brkitr/fi.txt +FILE: ../../../third_party/icu/source/data/brkitr/fr.txt +FILE: ../../../third_party/icu/source/data/brkitr/it.txt +FILE: ../../../third_party/icu/source/data/brkitr/ja.txt +FILE: ../../../third_party/icu/source/data/brkitr/lstm/Burmese_codepoints_exclusive_model4_heavy.txt +FILE: ../../../third_party/icu/source/data/brkitr/lstm/Burmese_codepoints_exclusive_model5_heavy.txt +FILE: ../../../third_party/icu/source/data/brkitr/lstm/Burmese_codepoints_exclusive_model7_heavy.txt +FILE: ../../../third_party/icu/source/data/brkitr/lstm/Burmese_graphclust_model4_heavy.txt +FILE: ../../../third_party/icu/source/data/brkitr/lstm/Burmese_graphclust_model5_heavy.txt +FILE: ../../../third_party/icu/source/data/brkitr/lstm/Burmese_graphclust_model7_heavy.txt +FILE: ../../../third_party/icu/source/data/brkitr/lstm/Thai_codepoints_exclusive_model4_heavy.txt +FILE: ../../../third_party/icu/source/data/brkitr/lstm/Thai_codepoints_exclusive_model5_heavy.txt +FILE: ../../../third_party/icu/source/data/brkitr/lstm/Thai_codepoints_exclusive_model7_heavy.txt +FILE: ../../../third_party/icu/source/data/brkitr/lstm/Thai_graphclust_model4_heavy.txt +FILE: ../../../third_party/icu/source/data/brkitr/lstm/Thai_graphclust_model5_heavy.txt +FILE: ../../../third_party/icu/source/data/brkitr/lstm/Thai_graphclust_model7_heavy.txt +FILE: ../../../third_party/icu/source/data/brkitr/pt.txt +FILE: ../../../third_party/icu/source/data/brkitr/root.txt +FILE: ../../../third_party/icu/source/data/brkitr/ru.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/char.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line_cj.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line_loose.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line_loose_cj.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line_loose_phrase_cj.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line_normal.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line_normal_cj.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line_normal_phrase_cj.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/line_phrase_cj.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/sent.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/sent_el.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/title.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/word.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/word_POSIX.txt +FILE: ../../../third_party/icu/source/data/brkitr/rules/word_fi_sv.txt +FILE: ../../../third_party/icu/source/data/brkitr/sv.txt +FILE: ../../../third_party/icu/source/data/brkitr/zh.txt +FILE: ../../../third_party/icu/source/data/brkitr/zh_Hant.txt +FILE: ../../../third_party/icu/source/data/cldr-icu-readme.txt +FILE: ../../../third_party/icu/source/data/coll/af.txt +FILE: ../../../third_party/icu/source/data/coll/am.txt +FILE: ../../../third_party/icu/source/data/coll/ar.txt +FILE: ../../../third_party/icu/source/data/coll/ar_SA.txt +FILE: ../../../third_party/icu/source/data/coll/ars.txt +FILE: ../../../third_party/icu/source/data/coll/as.txt +FILE: ../../../third_party/icu/source/data/coll/az.txt +FILE: ../../../third_party/icu/source/data/coll/be.txt +FILE: ../../../third_party/icu/source/data/coll/bg.txt +FILE: ../../../third_party/icu/source/data/coll/bn.txt +FILE: ../../../third_party/icu/source/data/coll/bo.txt +FILE: ../../../third_party/icu/source/data/coll/br.txt +FILE: ../../../third_party/icu/source/data/coll/bs.txt +FILE: ../../../third_party/icu/source/data/coll/bs_Cyrl.txt +FILE: ../../../third_party/icu/source/data/coll/ca.txt +FILE: ../../../third_party/icu/source/data/coll/ceb.txt +FILE: ../../../third_party/icu/source/data/coll/chr.txt +FILE: ../../../third_party/icu/source/data/coll/cs.txt +FILE: ../../../third_party/icu/source/data/coll/cy.txt +FILE: ../../../third_party/icu/source/data/coll/da.txt +FILE: ../../../third_party/icu/source/data/coll/de.txt +FILE: ../../../third_party/icu/source/data/coll/de_.txt +FILE: ../../../third_party/icu/source/data/coll/de_AT.txt +FILE: ../../../third_party/icu/source/data/coll/de__PHONEBOOK.txt +FILE: ../../../third_party/icu/source/data/coll/dsb.txt +FILE: ../../../third_party/icu/source/data/coll/dz.txt +FILE: ../../../third_party/icu/source/data/coll/ee.txt +FILE: ../../../third_party/icu/source/data/coll/el.txt +FILE: ../../../third_party/icu/source/data/coll/en.txt +FILE: ../../../third_party/icu/source/data/coll/en_US.txt +FILE: ../../../third_party/icu/source/data/coll/en_US_POSIX.txt +FILE: ../../../third_party/icu/source/data/coll/eo.txt +FILE: ../../../third_party/icu/source/data/coll/es.txt +FILE: ../../../third_party/icu/source/data/coll/es_.txt +FILE: ../../../third_party/icu/source/data/coll/es__TRADITIONAL.txt +FILE: ../../../third_party/icu/source/data/coll/et.txt +FILE: ../../../third_party/icu/source/data/coll/fa.txt +FILE: ../../../third_party/icu/source/data/coll/fa_AF.txt +FILE: ../../../third_party/icu/source/data/coll/ff.txt +FILE: ../../../third_party/icu/source/data/coll/ff_Adlm.txt +FILE: ../../../third_party/icu/source/data/coll/fi.txt +FILE: ../../../third_party/icu/source/data/coll/fil.txt +FILE: ../../../third_party/icu/source/data/coll/fo.txt +FILE: ../../../third_party/icu/source/data/coll/fr.txt +FILE: ../../../third_party/icu/source/data/coll/fr_CA.txt +FILE: ../../../third_party/icu/source/data/coll/fy.txt +FILE: ../../../third_party/icu/source/data/coll/ga.txt +FILE: ../../../third_party/icu/source/data/coll/gl.txt +FILE: ../../../third_party/icu/source/data/coll/gu.txt +FILE: ../../../third_party/icu/source/data/coll/ha.txt +FILE: ../../../third_party/icu/source/data/coll/haw.txt +FILE: ../../../third_party/icu/source/data/coll/he.txt +FILE: ../../../third_party/icu/source/data/coll/he_IL.txt +FILE: ../../../third_party/icu/source/data/coll/hi.txt +FILE: ../../../third_party/icu/source/data/coll/hr.txt +FILE: ../../../third_party/icu/source/data/coll/hsb.txt +FILE: ../../../third_party/icu/source/data/coll/hu.txt +FILE: ../../../third_party/icu/source/data/coll/hy.txt +FILE: ../../../third_party/icu/source/data/coll/id.txt +FILE: ../../../third_party/icu/source/data/coll/id_ID.txt +FILE: ../../../third_party/icu/source/data/coll/ig.txt +FILE: ../../../third_party/icu/source/data/coll/in.txt +FILE: ../../../third_party/icu/source/data/coll/in_ID.txt +FILE: ../../../third_party/icu/source/data/coll/is.txt +FILE: ../../../third_party/icu/source/data/coll/it.txt +FILE: ../../../third_party/icu/source/data/coll/iw.txt +FILE: ../../../third_party/icu/source/data/coll/iw_IL.txt +FILE: ../../../third_party/icu/source/data/coll/ja.txt +FILE: ../../../third_party/icu/source/data/coll/ka.txt +FILE: ../../../third_party/icu/source/data/coll/kk.txt +FILE: ../../../third_party/icu/source/data/coll/kl.txt +FILE: ../../../third_party/icu/source/data/coll/km.txt +FILE: ../../../third_party/icu/source/data/coll/kn.txt +FILE: ../../../third_party/icu/source/data/coll/ko.txt +FILE: ../../../third_party/icu/source/data/coll/kok.txt +FILE: ../../../third_party/icu/source/data/coll/ku.txt +FILE: ../../../third_party/icu/source/data/coll/ky.txt +FILE: ../../../third_party/icu/source/data/coll/lb.txt +FILE: ../../../third_party/icu/source/data/coll/lkt.txt +FILE: ../../../third_party/icu/source/data/coll/ln.txt +FILE: ../../../third_party/icu/source/data/coll/lo.txt +FILE: ../../../third_party/icu/source/data/coll/lt.txt +FILE: ../../../third_party/icu/source/data/coll/lv.txt +FILE: ../../../third_party/icu/source/data/coll/mk.txt +FILE: ../../../third_party/icu/source/data/coll/ml.txt +FILE: ../../../third_party/icu/source/data/coll/mn.txt +FILE: ../../../third_party/icu/source/data/coll/mo.txt +FILE: ../../../third_party/icu/source/data/coll/mr.txt +FILE: ../../../third_party/icu/source/data/coll/ms.txt +FILE: ../../../third_party/icu/source/data/coll/mt.txt +FILE: ../../../third_party/icu/source/data/coll/my.txt +FILE: ../../../third_party/icu/source/data/coll/nb.txt +FILE: ../../../third_party/icu/source/data/coll/nb_NO.txt +FILE: ../../../third_party/icu/source/data/coll/ne.txt +FILE: ../../../third_party/icu/source/data/coll/nl.txt +FILE: ../../../third_party/icu/source/data/coll/nn.txt +FILE: ../../../third_party/icu/source/data/coll/no.txt +FILE: ../../../third_party/icu/source/data/coll/no_NO.txt +FILE: ../../../third_party/icu/source/data/coll/om.txt +FILE: ../../../third_party/icu/source/data/coll/or.txt +FILE: ../../../third_party/icu/source/data/coll/pa.txt +FILE: ../../../third_party/icu/source/data/coll/pa_Guru.txt +FILE: ../../../third_party/icu/source/data/coll/pa_Guru_IN.txt +FILE: ../../../third_party/icu/source/data/coll/pa_IN.txt +FILE: ../../../third_party/icu/source/data/coll/pl.txt +FILE: ../../../third_party/icu/source/data/coll/ps.txt +FILE: ../../../third_party/icu/source/data/coll/pt.txt +FILE: ../../../third_party/icu/source/data/coll/ro.txt +FILE: ../../../third_party/icu/source/data/coll/root.txt +FILE: ../../../third_party/icu/source/data/coll/ru.txt +FILE: ../../../third_party/icu/source/data/coll/sa.txt +FILE: ../../../third_party/icu/source/data/coll/se.txt +FILE: ../../../third_party/icu/source/data/coll/sh.txt +FILE: ../../../third_party/icu/source/data/coll/sh_BA.txt +FILE: ../../../third_party/icu/source/data/coll/sh_CS.txt +FILE: ../../../third_party/icu/source/data/coll/sh_YU.txt +FILE: ../../../third_party/icu/source/data/coll/si.txt +FILE: ../../../third_party/icu/source/data/coll/sk.txt +FILE: ../../../third_party/icu/source/data/coll/sl.txt +FILE: ../../../third_party/icu/source/data/coll/smn.txt +FILE: ../../../third_party/icu/source/data/coll/sq.txt +FILE: ../../../third_party/icu/source/data/coll/sr.txt +FILE: ../../../third_party/icu/source/data/coll/sr_BA.txt +FILE: ../../../third_party/icu/source/data/coll/sr_Cyrl.txt +FILE: ../../../third_party/icu/source/data/coll/sr_Cyrl_BA.txt +FILE: ../../../third_party/icu/source/data/coll/sr_Cyrl_ME.txt +FILE: ../../../third_party/icu/source/data/coll/sr_Cyrl_RS.txt +FILE: ../../../third_party/icu/source/data/coll/sr_Latn.txt +FILE: ../../../third_party/icu/source/data/coll/sr_Latn_BA.txt +FILE: ../../../third_party/icu/source/data/coll/sr_Latn_RS.txt +FILE: ../../../third_party/icu/source/data/coll/sr_ME.txt +FILE: ../../../third_party/icu/source/data/coll/sr_RS.txt +FILE: ../../../third_party/icu/source/data/coll/sv.txt +FILE: ../../../third_party/icu/source/data/coll/sw.txt +FILE: ../../../third_party/icu/source/data/coll/ta.txt +FILE: ../../../third_party/icu/source/data/coll/te.txt +FILE: ../../../third_party/icu/source/data/coll/th.txt +FILE: ../../../third_party/icu/source/data/coll/tk.txt +FILE: ../../../third_party/icu/source/data/coll/to.txt +FILE: ../../../third_party/icu/source/data/coll/tr.txt +FILE: ../../../third_party/icu/source/data/coll/ug.txt +FILE: ../../../third_party/icu/source/data/coll/uk.txt +FILE: ../../../third_party/icu/source/data/coll/ur.txt +FILE: ../../../third_party/icu/source/data/coll/uz.txt +FILE: ../../../third_party/icu/source/data/coll/vi.txt +FILE: ../../../third_party/icu/source/data/coll/wae.txt +FILE: ../../../third_party/icu/source/data/coll/wo.txt +FILE: ../../../third_party/icu/source/data/coll/xh.txt +FILE: ../../../third_party/icu/source/data/coll/yi.txt +FILE: ../../../third_party/icu/source/data/coll/yo.txt +FILE: ../../../third_party/icu/source/data/coll/yue.txt +FILE: ../../../third_party/icu/source/data/coll/yue_CN.txt +FILE: ../../../third_party/icu/source/data/coll/yue_Hans.txt +FILE: ../../../third_party/icu/source/data/coll/yue_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/coll/yue_Hant.txt +FILE: ../../../third_party/icu/source/data/coll/zh.txt +FILE: ../../../third_party/icu/source/data/coll/zh_CN.txt +FILE: ../../../third_party/icu/source/data/coll/zh_HK.txt +FILE: ../../../third_party/icu/source/data/coll/zh_Hans.txt +FILE: ../../../third_party/icu/source/data/coll/zh_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/coll/zh_Hans_SG.txt +FILE: ../../../third_party/icu/source/data/coll/zh_Hant.txt +FILE: ../../../third_party/icu/source/data/coll/zh_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/coll/zh_Hant_MO.txt +FILE: ../../../third_party/icu/source/data/coll/zh_Hant_TW.txt +FILE: ../../../third_party/icu/source/data/coll/zh_MO.txt +FILE: ../../../third_party/icu/source/data/coll/zh_SG.txt +FILE: ../../../third_party/icu/source/data/coll/zh_TW.txt +FILE: ../../../third_party/icu/source/data/coll/zu.txt +FILE: ../../../third_party/icu/source/data/curr/af.txt +FILE: ../../../third_party/icu/source/data/curr/af_NA.txt +FILE: ../../../third_party/icu/source/data/curr/agq.txt +FILE: ../../../third_party/icu/source/data/curr/ak.txt +FILE: ../../../third_party/icu/source/data/curr/am.txt +FILE: ../../../third_party/icu/source/data/curr/ar.txt +FILE: ../../../third_party/icu/source/data/curr/ar_AE.txt +FILE: ../../../third_party/icu/source/data/curr/ar_DJ.txt +FILE: ../../../third_party/icu/source/data/curr/ar_ER.txt +FILE: ../../../third_party/icu/source/data/curr/ar_KM.txt +FILE: ../../../third_party/icu/source/data/curr/ar_LB.txt +FILE: ../../../third_party/icu/source/data/curr/ar_SA.txt +FILE: ../../../third_party/icu/source/data/curr/ar_SO.txt +FILE: ../../../third_party/icu/source/data/curr/ar_SS.txt +FILE: ../../../third_party/icu/source/data/curr/ars.txt +FILE: ../../../third_party/icu/source/data/curr/as.txt +FILE: ../../../third_party/icu/source/data/curr/asa.txt +FILE: ../../../third_party/icu/source/data/curr/ast.txt +FILE: ../../../third_party/icu/source/data/curr/az.txt +FILE: ../../../third_party/icu/source/data/curr/az_AZ.txt +FILE: ../../../third_party/icu/source/data/curr/az_Cyrl.txt +FILE: ../../../third_party/icu/source/data/curr/az_Latn.txt +FILE: ../../../third_party/icu/source/data/curr/az_Latn_AZ.txt +FILE: ../../../third_party/icu/source/data/curr/bas.txt +FILE: ../../../third_party/icu/source/data/curr/be.txt +FILE: ../../../third_party/icu/source/data/curr/bem.txt +FILE: ../../../third_party/icu/source/data/curr/bez.txt +FILE: ../../../third_party/icu/source/data/curr/bg.txt +FILE: ../../../third_party/icu/source/data/curr/bgc.txt +FILE: ../../../third_party/icu/source/data/curr/bho.txt +FILE: ../../../third_party/icu/source/data/curr/bm.txt +FILE: ../../../third_party/icu/source/data/curr/bn.txt +FILE: ../../../third_party/icu/source/data/curr/bn_IN.txt +FILE: ../../../third_party/icu/source/data/curr/bo.txt +FILE: ../../../third_party/icu/source/data/curr/bo_IN.txt +FILE: ../../../third_party/icu/source/data/curr/br.txt +FILE: ../../../third_party/icu/source/data/curr/brx.txt +FILE: ../../../third_party/icu/source/data/curr/bs.txt +FILE: ../../../third_party/icu/source/data/curr/bs_BA.txt +FILE: ../../../third_party/icu/source/data/curr/bs_Cyrl.txt +FILE: ../../../third_party/icu/source/data/curr/bs_Latn.txt +FILE: ../../../third_party/icu/source/data/curr/bs_Latn_BA.txt +FILE: ../../../third_party/icu/source/data/curr/ca.txt +FILE: ../../../third_party/icu/source/data/curr/ca_FR.txt +FILE: ../../../third_party/icu/source/data/curr/ccp.txt +FILE: ../../../third_party/icu/source/data/curr/ce.txt +FILE: ../../../third_party/icu/source/data/curr/ceb.txt +FILE: ../../../third_party/icu/source/data/curr/cgg.txt +FILE: ../../../third_party/icu/source/data/curr/chr.txt +FILE: ../../../third_party/icu/source/data/curr/ckb.txt +FILE: ../../../third_party/icu/source/data/curr/cs.txt +FILE: ../../../third_party/icu/source/data/curr/cv.txt +FILE: ../../../third_party/icu/source/data/curr/cy.txt +FILE: ../../../third_party/icu/source/data/curr/da.txt +FILE: ../../../third_party/icu/source/data/curr/dav.txt +FILE: ../../../third_party/icu/source/data/curr/de.txt +FILE: ../../../third_party/icu/source/data/curr/de_CH.txt +FILE: ../../../third_party/icu/source/data/curr/de_LI.txt +FILE: ../../../third_party/icu/source/data/curr/de_LU.txt +FILE: ../../../third_party/icu/source/data/curr/dje.txt +FILE: ../../../third_party/icu/source/data/curr/doi.txt +FILE: ../../../third_party/icu/source/data/curr/dsb.txt +FILE: ../../../third_party/icu/source/data/curr/dua.txt +FILE: ../../../third_party/icu/source/data/curr/dyo.txt +FILE: ../../../third_party/icu/source/data/curr/dz.txt +FILE: ../../../third_party/icu/source/data/curr/ebu.txt +FILE: ../../../third_party/icu/source/data/curr/ee.txt +FILE: ../../../third_party/icu/source/data/curr/el.txt +FILE: ../../../third_party/icu/source/data/curr/en.txt +FILE: ../../../third_party/icu/source/data/curr/en_001.txt +FILE: ../../../third_party/icu/source/data/curr/en_150.txt +FILE: ../../../third_party/icu/source/data/curr/en_AE.txt +FILE: ../../../third_party/icu/source/data/curr/en_AG.txt +FILE: ../../../third_party/icu/source/data/curr/en_AI.txt +FILE: ../../../third_party/icu/source/data/curr/en_AT.txt +FILE: ../../../third_party/icu/source/data/curr/en_AU.txt +FILE: ../../../third_party/icu/source/data/curr/en_BB.txt +FILE: ../../../third_party/icu/source/data/curr/en_BE.txt +FILE: ../../../third_party/icu/source/data/curr/en_BI.txt +FILE: ../../../third_party/icu/source/data/curr/en_BM.txt +FILE: ../../../third_party/icu/source/data/curr/en_BS.txt +FILE: ../../../third_party/icu/source/data/curr/en_BW.txt +FILE: ../../../third_party/icu/source/data/curr/en_BZ.txt +FILE: ../../../third_party/icu/source/data/curr/en_CA.txt +FILE: ../../../third_party/icu/source/data/curr/en_CC.txt +FILE: ../../../third_party/icu/source/data/curr/en_CH.txt +FILE: ../../../third_party/icu/source/data/curr/en_CK.txt +FILE: ../../../third_party/icu/source/data/curr/en_CM.txt +FILE: ../../../third_party/icu/source/data/curr/en_CX.txt +FILE: ../../../third_party/icu/source/data/curr/en_CY.txt +FILE: ../../../third_party/icu/source/data/curr/en_DE.txt +FILE: ../../../third_party/icu/source/data/curr/en_DG.txt +FILE: ../../../third_party/icu/source/data/curr/en_DK.txt +FILE: ../../../third_party/icu/source/data/curr/en_DM.txt +FILE: ../../../third_party/icu/source/data/curr/en_ER.txt +FILE: ../../../third_party/icu/source/data/curr/en_FI.txt +FILE: ../../../third_party/icu/source/data/curr/en_FJ.txt +FILE: ../../../third_party/icu/source/data/curr/en_FK.txt +FILE: ../../../third_party/icu/source/data/curr/en_FM.txt +FILE: ../../../third_party/icu/source/data/curr/en_GB.txt +FILE: ../../../third_party/icu/source/data/curr/en_GD.txt +FILE: ../../../third_party/icu/source/data/curr/en_GG.txt +FILE: ../../../third_party/icu/source/data/curr/en_GH.txt +FILE: ../../../third_party/icu/source/data/curr/en_GI.txt +FILE: ../../../third_party/icu/source/data/curr/en_GM.txt +FILE: ../../../third_party/icu/source/data/curr/en_GY.txt +FILE: ../../../third_party/icu/source/data/curr/en_HK.txt +FILE: ../../../third_party/icu/source/data/curr/en_IE.txt +FILE: ../../../third_party/icu/source/data/curr/en_IL.txt +FILE: ../../../third_party/icu/source/data/curr/en_IM.txt +FILE: ../../../third_party/icu/source/data/curr/en_IN.txt +FILE: ../../../third_party/icu/source/data/curr/en_IO.txt +FILE: ../../../third_party/icu/source/data/curr/en_JE.txt +FILE: ../../../third_party/icu/source/data/curr/en_JM.txt +FILE: ../../../third_party/icu/source/data/curr/en_KE.txt +FILE: ../../../third_party/icu/source/data/curr/en_KI.txt +FILE: ../../../third_party/icu/source/data/curr/en_KN.txt +FILE: ../../../third_party/icu/source/data/curr/en_KY.txt +FILE: ../../../third_party/icu/source/data/curr/en_LC.txt +FILE: ../../../third_party/icu/source/data/curr/en_LR.txt +FILE: ../../../third_party/icu/source/data/curr/en_LS.txt +FILE: ../../../third_party/icu/source/data/curr/en_MG.txt +FILE: ../../../third_party/icu/source/data/curr/en_MO.txt +FILE: ../../../third_party/icu/source/data/curr/en_MS.txt +FILE: ../../../third_party/icu/source/data/curr/en_MT.txt +FILE: ../../../third_party/icu/source/data/curr/en_MU.txt +FILE: ../../../third_party/icu/source/data/curr/en_MV.txt +FILE: ../../../third_party/icu/source/data/curr/en_MW.txt +FILE: ../../../third_party/icu/source/data/curr/en_MY.txt +FILE: ../../../third_party/icu/source/data/curr/en_NA.txt +FILE: ../../../third_party/icu/source/data/curr/en_NF.txt +FILE: ../../../third_party/icu/source/data/curr/en_NG.txt +FILE: ../../../third_party/icu/source/data/curr/en_NH.txt +FILE: ../../../third_party/icu/source/data/curr/en_NL.txt +FILE: ../../../third_party/icu/source/data/curr/en_NR.txt +FILE: ../../../third_party/icu/source/data/curr/en_NU.txt +FILE: ../../../third_party/icu/source/data/curr/en_NZ.txt +FILE: ../../../third_party/icu/source/data/curr/en_PG.txt +FILE: ../../../third_party/icu/source/data/curr/en_PH.txt +FILE: ../../../third_party/icu/source/data/curr/en_PK.txt +FILE: ../../../third_party/icu/source/data/curr/en_PN.txt +FILE: ../../../third_party/icu/source/data/curr/en_PW.txt +FILE: ../../../third_party/icu/source/data/curr/en_RH.txt +FILE: ../../../third_party/icu/source/data/curr/en_RW.txt +FILE: ../../../third_party/icu/source/data/curr/en_SB.txt +FILE: ../../../third_party/icu/source/data/curr/en_SC.txt +FILE: ../../../third_party/icu/source/data/curr/en_SD.txt +FILE: ../../../third_party/icu/source/data/curr/en_SE.txt +FILE: ../../../third_party/icu/source/data/curr/en_SG.txt +FILE: ../../../third_party/icu/source/data/curr/en_SH.txt +FILE: ../../../third_party/icu/source/data/curr/en_SI.txt +FILE: ../../../third_party/icu/source/data/curr/en_SL.txt +FILE: ../../../third_party/icu/source/data/curr/en_SS.txt +FILE: ../../../third_party/icu/source/data/curr/en_SX.txt +FILE: ../../../third_party/icu/source/data/curr/en_SZ.txt +FILE: ../../../third_party/icu/source/data/curr/en_TC.txt +FILE: ../../../third_party/icu/source/data/curr/en_TK.txt +FILE: ../../../third_party/icu/source/data/curr/en_TO.txt +FILE: ../../../third_party/icu/source/data/curr/en_TT.txt +FILE: ../../../third_party/icu/source/data/curr/en_TV.txt +FILE: ../../../third_party/icu/source/data/curr/en_TZ.txt +FILE: ../../../third_party/icu/source/data/curr/en_UG.txt +FILE: ../../../third_party/icu/source/data/curr/en_VC.txt +FILE: ../../../third_party/icu/source/data/curr/en_VG.txt +FILE: ../../../third_party/icu/source/data/curr/en_VU.txt +FILE: ../../../third_party/icu/source/data/curr/en_WS.txt +FILE: ../../../third_party/icu/source/data/curr/en_ZA.txt +FILE: ../../../third_party/icu/source/data/curr/en_ZM.txt +FILE: ../../../third_party/icu/source/data/curr/en_ZW.txt +FILE: ../../../third_party/icu/source/data/curr/eo.txt +FILE: ../../../third_party/icu/source/data/curr/es.txt +FILE: ../../../third_party/icu/source/data/curr/es_419.txt +FILE: ../../../third_party/icu/source/data/curr/es_AR.txt +FILE: ../../../third_party/icu/source/data/curr/es_BO.txt +FILE: ../../../third_party/icu/source/data/curr/es_BR.txt +FILE: ../../../third_party/icu/source/data/curr/es_BZ.txt +FILE: ../../../third_party/icu/source/data/curr/es_CL.txt +FILE: ../../../third_party/icu/source/data/curr/es_CO.txt +FILE: ../../../third_party/icu/source/data/curr/es_CR.txt +FILE: ../../../third_party/icu/source/data/curr/es_CU.txt +FILE: ../../../third_party/icu/source/data/curr/es_DO.txt +FILE: ../../../third_party/icu/source/data/curr/es_EC.txt +FILE: ../../../third_party/icu/source/data/curr/es_GQ.txt +FILE: ../../../third_party/icu/source/data/curr/es_GT.txt +FILE: ../../../third_party/icu/source/data/curr/es_HN.txt +FILE: ../../../third_party/icu/source/data/curr/es_MX.txt +FILE: ../../../third_party/icu/source/data/curr/es_NI.txt +FILE: ../../../third_party/icu/source/data/curr/es_PA.txt +FILE: ../../../third_party/icu/source/data/curr/es_PE.txt +FILE: ../../../third_party/icu/source/data/curr/es_PH.txt +FILE: ../../../third_party/icu/source/data/curr/es_PR.txt +FILE: ../../../third_party/icu/source/data/curr/es_PY.txt +FILE: ../../../third_party/icu/source/data/curr/es_SV.txt +FILE: ../../../third_party/icu/source/data/curr/es_US.txt +FILE: ../../../third_party/icu/source/data/curr/es_UY.txt +FILE: ../../../third_party/icu/source/data/curr/es_VE.txt +FILE: ../../../third_party/icu/source/data/curr/et.txt +FILE: ../../../third_party/icu/source/data/curr/eu.txt +FILE: ../../../third_party/icu/source/data/curr/ewo.txt +FILE: ../../../third_party/icu/source/data/curr/fa.txt +FILE: ../../../third_party/icu/source/data/curr/fa_AF.txt +FILE: ../../../third_party/icu/source/data/curr/ff.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Adlm.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Adlm_BF.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Adlm_CM.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Adlm_GH.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Adlm_GM.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Adlm_GW.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Adlm_LR.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Adlm_MR.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Adlm_NE.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Adlm_NG.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Adlm_SL.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Adlm_SN.txt +FILE: ../../../third_party/icu/source/data/curr/ff_CM.txt +FILE: ../../../third_party/icu/source/data/curr/ff_GN.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Latn.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Latn_CM.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Latn_GH.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Latn_GM.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Latn_GN.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Latn_LR.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Latn_MR.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Latn_NG.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Latn_SL.txt +FILE: ../../../third_party/icu/source/data/curr/ff_Latn_SN.txt +FILE: ../../../third_party/icu/source/data/curr/ff_MR.txt +FILE: ../../../third_party/icu/source/data/curr/ff_SN.txt +FILE: ../../../third_party/icu/source/data/curr/fi.txt +FILE: ../../../third_party/icu/source/data/curr/fil.txt +FILE: ../../../third_party/icu/source/data/curr/fil_PH.txt +FILE: ../../../third_party/icu/source/data/curr/fo.txt +FILE: ../../../third_party/icu/source/data/curr/fo_DK.txt +FILE: ../../../third_party/icu/source/data/curr/fr.txt +FILE: ../../../third_party/icu/source/data/curr/fr_BI.txt +FILE: ../../../third_party/icu/source/data/curr/fr_CA.txt +FILE: ../../../third_party/icu/source/data/curr/fr_CD.txt +FILE: ../../../third_party/icu/source/data/curr/fr_DJ.txt +FILE: ../../../third_party/icu/source/data/curr/fr_DZ.txt +FILE: ../../../third_party/icu/source/data/curr/fr_GN.txt +FILE: ../../../third_party/icu/source/data/curr/fr_HT.txt +FILE: ../../../third_party/icu/source/data/curr/fr_KM.txt +FILE: ../../../third_party/icu/source/data/curr/fr_LU.txt +FILE: ../../../third_party/icu/source/data/curr/fr_MG.txt +FILE: ../../../third_party/icu/source/data/curr/fr_MR.txt +FILE: ../../../third_party/icu/source/data/curr/fr_MU.txt +FILE: ../../../third_party/icu/source/data/curr/fr_RW.txt +FILE: ../../../third_party/icu/source/data/curr/fr_SC.txt +FILE: ../../../third_party/icu/source/data/curr/fr_SY.txt +FILE: ../../../third_party/icu/source/data/curr/fr_TN.txt +FILE: ../../../third_party/icu/source/data/curr/fr_VU.txt +FILE: ../../../third_party/icu/source/data/curr/fur.txt +FILE: ../../../third_party/icu/source/data/curr/fy.txt +FILE: ../../../third_party/icu/source/data/curr/ga.txt +FILE: ../../../third_party/icu/source/data/curr/gd.txt +FILE: ../../../third_party/icu/source/data/curr/gl.txt +FILE: ../../../third_party/icu/source/data/curr/gsw.txt +FILE: ../../../third_party/icu/source/data/curr/gu.txt +FILE: ../../../third_party/icu/source/data/curr/guz.txt +FILE: ../../../third_party/icu/source/data/curr/gv.txt +FILE: ../../../third_party/icu/source/data/curr/ha.txt +FILE: ../../../third_party/icu/source/data/curr/ha_GH.txt +FILE: ../../../third_party/icu/source/data/curr/haw.txt +FILE: ../../../third_party/icu/source/data/curr/he.txt +FILE: ../../../third_party/icu/source/data/curr/he_IL.txt +FILE: ../../../third_party/icu/source/data/curr/hi.txt +FILE: ../../../third_party/icu/source/data/curr/hi_Latn.txt +FILE: ../../../third_party/icu/source/data/curr/hr.txt +FILE: ../../../third_party/icu/source/data/curr/hr_BA.txt +FILE: ../../../third_party/icu/source/data/curr/hsb.txt +FILE: ../../../third_party/icu/source/data/curr/hu.txt +FILE: ../../../third_party/icu/source/data/curr/hy.txt +FILE: ../../../third_party/icu/source/data/curr/ia.txt +FILE: ../../../third_party/icu/source/data/curr/id.txt +FILE: ../../../third_party/icu/source/data/curr/id_ID.txt +FILE: ../../../third_party/icu/source/data/curr/ig.txt +FILE: ../../../third_party/icu/source/data/curr/ii.txt +FILE: ../../../third_party/icu/source/data/curr/in.txt +FILE: ../../../third_party/icu/source/data/curr/in_ID.txt +FILE: ../../../third_party/icu/source/data/curr/is.txt +FILE: ../../../third_party/icu/source/data/curr/it.txt +FILE: ../../../third_party/icu/source/data/curr/iw.txt +FILE: ../../../third_party/icu/source/data/curr/iw_IL.txt +FILE: ../../../third_party/icu/source/data/curr/ja.txt +FILE: ../../../third_party/icu/source/data/curr/jgo.txt +FILE: ../../../third_party/icu/source/data/curr/jmc.txt +FILE: ../../../third_party/icu/source/data/curr/jv.txt +FILE: ../../../third_party/icu/source/data/curr/ka.txt +FILE: ../../../third_party/icu/source/data/curr/kab.txt +FILE: ../../../third_party/icu/source/data/curr/kam.txt +FILE: ../../../third_party/icu/source/data/curr/kde.txt +FILE: ../../../third_party/icu/source/data/curr/kea.txt +FILE: ../../../third_party/icu/source/data/curr/kgp.txt +FILE: ../../../third_party/icu/source/data/curr/khq.txt +FILE: ../../../third_party/icu/source/data/curr/ki.txt +FILE: ../../../third_party/icu/source/data/curr/kk.txt +FILE: ../../../third_party/icu/source/data/curr/kkj.txt +FILE: ../../../third_party/icu/source/data/curr/kl.txt +FILE: ../../../third_party/icu/source/data/curr/kln.txt +FILE: ../../../third_party/icu/source/data/curr/km.txt +FILE: ../../../third_party/icu/source/data/curr/kn.txt +FILE: ../../../third_party/icu/source/data/curr/ko.txt +FILE: ../../../third_party/icu/source/data/curr/kok.txt +FILE: ../../../third_party/icu/source/data/curr/ks.txt +FILE: ../../../third_party/icu/source/data/curr/ks_Arab.txt +FILE: ../../../third_party/icu/source/data/curr/ks_Arab_IN.txt +FILE: ../../../third_party/icu/source/data/curr/ks_Deva.txt +FILE: ../../../third_party/icu/source/data/curr/ks_IN.txt +FILE: ../../../third_party/icu/source/data/curr/ksb.txt +FILE: ../../../third_party/icu/source/data/curr/ksf.txt +FILE: ../../../third_party/icu/source/data/curr/ksh.txt +FILE: ../../../third_party/icu/source/data/curr/ku.txt +FILE: ../../../third_party/icu/source/data/curr/kw.txt +FILE: ../../../third_party/icu/source/data/curr/ky.txt +FILE: ../../../third_party/icu/source/data/curr/lag.txt +FILE: ../../../third_party/icu/source/data/curr/lb.txt +FILE: ../../../third_party/icu/source/data/curr/lg.txt +FILE: ../../../third_party/icu/source/data/curr/lkt.txt +FILE: ../../../third_party/icu/source/data/curr/ln.txt +FILE: ../../../third_party/icu/source/data/curr/ln_AO.txt +FILE: ../../../third_party/icu/source/data/curr/lo.txt +FILE: ../../../third_party/icu/source/data/curr/lrc.txt +FILE: ../../../third_party/icu/source/data/curr/lt.txt +FILE: ../../../third_party/icu/source/data/curr/lu.txt +FILE: ../../../third_party/icu/source/data/curr/luo.txt +FILE: ../../../third_party/icu/source/data/curr/luy.txt +FILE: ../../../third_party/icu/source/data/curr/lv.txt +FILE: ../../../third_party/icu/source/data/curr/mai.txt +FILE: ../../../third_party/icu/source/data/curr/mas.txt +FILE: ../../../third_party/icu/source/data/curr/mas_TZ.txt +FILE: ../../../third_party/icu/source/data/curr/mer.txt +FILE: ../../../third_party/icu/source/data/curr/mfe.txt +FILE: ../../../third_party/icu/source/data/curr/mg.txt +FILE: ../../../third_party/icu/source/data/curr/mgh.txt +FILE: ../../../third_party/icu/source/data/curr/mgo.txt +FILE: ../../../third_party/icu/source/data/curr/mi.txt +FILE: ../../../third_party/icu/source/data/curr/mk.txt +FILE: ../../../third_party/icu/source/data/curr/ml.txt +FILE: ../../../third_party/icu/source/data/curr/mn.txt +FILE: ../../../third_party/icu/source/data/curr/mni.txt +FILE: ../../../third_party/icu/source/data/curr/mni_Beng.txt +FILE: ../../../third_party/icu/source/data/curr/mni_Beng_IN.txt +FILE: ../../../third_party/icu/source/data/curr/mni_IN.txt +FILE: ../../../third_party/icu/source/data/curr/mo.txt +FILE: ../../../third_party/icu/source/data/curr/mr.txt +FILE: ../../../third_party/icu/source/data/curr/ms.txt +FILE: ../../../third_party/icu/source/data/curr/ms_BN.txt +FILE: ../../../third_party/icu/source/data/curr/ms_ID.txt +FILE: ../../../third_party/icu/source/data/curr/ms_SG.txt +FILE: ../../../third_party/icu/source/data/curr/mt.txt +FILE: ../../../third_party/icu/source/data/curr/mua.txt +FILE: ../../../third_party/icu/source/data/curr/my.txt +FILE: ../../../third_party/icu/source/data/curr/mzn.txt +FILE: ../../../third_party/icu/source/data/curr/naq.txt +FILE: ../../../third_party/icu/source/data/curr/nb.txt +FILE: ../../../third_party/icu/source/data/curr/nd.txt +FILE: ../../../third_party/icu/source/data/curr/ne.txt +FILE: ../../../third_party/icu/source/data/curr/nl.txt +FILE: ../../../third_party/icu/source/data/curr/nl_AW.txt +FILE: ../../../third_party/icu/source/data/curr/nl_BQ.txt +FILE: ../../../third_party/icu/source/data/curr/nl_CW.txt +FILE: ../../../third_party/icu/source/data/curr/nl_SR.txt +FILE: ../../../third_party/icu/source/data/curr/nl_SX.txt +FILE: ../../../third_party/icu/source/data/curr/nmg.txt +FILE: ../../../third_party/icu/source/data/curr/nn.txt +FILE: ../../../third_party/icu/source/data/curr/nn_NO.txt +FILE: ../../../third_party/icu/source/data/curr/nnh.txt +FILE: ../../../third_party/icu/source/data/curr/no.txt +FILE: ../../../third_party/icu/source/data/curr/no_NO.txt +FILE: ../../../third_party/icu/source/data/curr/no_NO_NY.txt +FILE: ../../../third_party/icu/source/data/curr/nus.txt +FILE: ../../../third_party/icu/source/data/curr/nyn.txt +FILE: ../../../third_party/icu/source/data/curr/om.txt +FILE: ../../../third_party/icu/source/data/curr/om_KE.txt +FILE: ../../../third_party/icu/source/data/curr/or.txt +FILE: ../../../third_party/icu/source/data/curr/os.txt +FILE: ../../../third_party/icu/source/data/curr/os_RU.txt +FILE: ../../../third_party/icu/source/data/curr/pa.txt +FILE: ../../../third_party/icu/source/data/curr/pa_Arab.txt +FILE: ../../../third_party/icu/source/data/curr/pa_Arab_PK.txt +FILE: ../../../third_party/icu/source/data/curr/pa_Guru.txt +FILE: ../../../third_party/icu/source/data/curr/pa_Guru_IN.txt +FILE: ../../../third_party/icu/source/data/curr/pa_IN.txt +FILE: ../../../third_party/icu/source/data/curr/pa_PK.txt +FILE: ../../../third_party/icu/source/data/curr/pcm.txt +FILE: ../../../third_party/icu/source/data/curr/pl.txt +FILE: ../../../third_party/icu/source/data/curr/ps.txt +FILE: ../../../third_party/icu/source/data/curr/ps_PK.txt +FILE: ../../../third_party/icu/source/data/curr/pt.txt +FILE: ../../../third_party/icu/source/data/curr/pt_AO.txt +FILE: ../../../third_party/icu/source/data/curr/pt_CH.txt +FILE: ../../../third_party/icu/source/data/curr/pt_CV.txt +FILE: ../../../third_party/icu/source/data/curr/pt_GQ.txt +FILE: ../../../third_party/icu/source/data/curr/pt_GW.txt +FILE: ../../../third_party/icu/source/data/curr/pt_LU.txt +FILE: ../../../third_party/icu/source/data/curr/pt_MO.txt +FILE: ../../../third_party/icu/source/data/curr/pt_MZ.txt +FILE: ../../../third_party/icu/source/data/curr/pt_PT.txt +FILE: ../../../third_party/icu/source/data/curr/pt_ST.txt +FILE: ../../../third_party/icu/source/data/curr/pt_TL.txt +FILE: ../../../third_party/icu/source/data/curr/qu.txt +FILE: ../../../third_party/icu/source/data/curr/qu_BO.txt +FILE: ../../../third_party/icu/source/data/curr/qu_EC.txt +FILE: ../../../third_party/icu/source/data/curr/raj.txt +FILE: ../../../third_party/icu/source/data/curr/rm.txt +FILE: ../../../third_party/icu/source/data/curr/rn.txt +FILE: ../../../third_party/icu/source/data/curr/ro.txt +FILE: ../../../third_party/icu/source/data/curr/ro_MD.txt +FILE: ../../../third_party/icu/source/data/curr/rof.txt +FILE: ../../../third_party/icu/source/data/curr/root.txt +FILE: ../../../third_party/icu/source/data/curr/ru.txt +FILE: ../../../third_party/icu/source/data/curr/ru_BY.txt +FILE: ../../../third_party/icu/source/data/curr/ru_KG.txt +FILE: ../../../third_party/icu/source/data/curr/ru_KZ.txt +FILE: ../../../third_party/icu/source/data/curr/ru_MD.txt +FILE: ../../../third_party/icu/source/data/curr/rw.txt +FILE: ../../../third_party/icu/source/data/curr/rwk.txt +FILE: ../../../third_party/icu/source/data/curr/sa.txt +FILE: ../../../third_party/icu/source/data/curr/sah.txt +FILE: ../../../third_party/icu/source/data/curr/saq.txt +FILE: ../../../third_party/icu/source/data/curr/sat.txt +FILE: ../../../third_party/icu/source/data/curr/sat_IN.txt +FILE: ../../../third_party/icu/source/data/curr/sat_Olck.txt +FILE: ../../../third_party/icu/source/data/curr/sat_Olck_IN.txt +FILE: ../../../third_party/icu/source/data/curr/sbp.txt +FILE: ../../../third_party/icu/source/data/curr/sc.txt +FILE: ../../../third_party/icu/source/data/curr/sd.txt +FILE: ../../../third_party/icu/source/data/curr/sd_Arab.txt +FILE: ../../../third_party/icu/source/data/curr/sd_Arab_PK.txt +FILE: ../../../third_party/icu/source/data/curr/sd_Deva.txt +FILE: ../../../third_party/icu/source/data/curr/sd_Deva_IN.txt +FILE: ../../../third_party/icu/source/data/curr/sd_IN.txt +FILE: ../../../third_party/icu/source/data/curr/sd_PK.txt +FILE: ../../../third_party/icu/source/data/curr/se.txt +FILE: ../../../third_party/icu/source/data/curr/se_SE.txt +FILE: ../../../third_party/icu/source/data/curr/seh.txt +FILE: ../../../third_party/icu/source/data/curr/ses.txt +FILE: ../../../third_party/icu/source/data/curr/sg.txt +FILE: ../../../third_party/icu/source/data/curr/sh.txt +FILE: ../../../third_party/icu/source/data/curr/sh_BA.txt +FILE: ../../../third_party/icu/source/data/curr/sh_CS.txt +FILE: ../../../third_party/icu/source/data/curr/sh_YU.txt +FILE: ../../../third_party/icu/source/data/curr/shi.txt +FILE: ../../../third_party/icu/source/data/curr/shi_Latn.txt +FILE: ../../../third_party/icu/source/data/curr/shi_MA.txt +FILE: ../../../third_party/icu/source/data/curr/shi_Tfng.txt +FILE: ../../../third_party/icu/source/data/curr/shi_Tfng_MA.txt +FILE: ../../../third_party/icu/source/data/curr/si.txt +FILE: ../../../third_party/icu/source/data/curr/sk.txt +FILE: ../../../third_party/icu/source/data/curr/sl.txt +FILE: ../../../third_party/icu/source/data/curr/smn.txt +FILE: ../../../third_party/icu/source/data/curr/sn.txt +FILE: ../../../third_party/icu/source/data/curr/so.txt +FILE: ../../../third_party/icu/source/data/curr/so_DJ.txt +FILE: ../../../third_party/icu/source/data/curr/so_ET.txt +FILE: ../../../third_party/icu/source/data/curr/so_KE.txt +FILE: ../../../third_party/icu/source/data/curr/sq.txt +FILE: ../../../third_party/icu/source/data/curr/sq_MK.txt +FILE: ../../../third_party/icu/source/data/curr/sr.txt +FILE: ../../../third_party/icu/source/data/curr/sr_BA.txt +FILE: ../../../third_party/icu/source/data/curr/sr_CS.txt +FILE: ../../../third_party/icu/source/data/curr/sr_Cyrl.txt +FILE: ../../../third_party/icu/source/data/curr/sr_Cyrl_BA.txt +FILE: ../../../third_party/icu/source/data/curr/sr_Cyrl_CS.txt +FILE: ../../../third_party/icu/source/data/curr/sr_Cyrl_RS.txt +FILE: ../../../third_party/icu/source/data/curr/sr_Cyrl_XK.txt +FILE: ../../../third_party/icu/source/data/curr/sr_Cyrl_YU.txt +FILE: ../../../third_party/icu/source/data/curr/sr_Latn.txt +FILE: ../../../third_party/icu/source/data/curr/sr_Latn_BA.txt +FILE: ../../../third_party/icu/source/data/curr/sr_Latn_CS.txt +FILE: ../../../third_party/icu/source/data/curr/sr_Latn_ME.txt +FILE: ../../../third_party/icu/source/data/curr/sr_Latn_RS.txt +FILE: ../../../third_party/icu/source/data/curr/sr_Latn_YU.txt +FILE: ../../../third_party/icu/source/data/curr/sr_ME.txt +FILE: ../../../third_party/icu/source/data/curr/sr_RS.txt +FILE: ../../../third_party/icu/source/data/curr/sr_XK.txt +FILE: ../../../third_party/icu/source/data/curr/sr_YU.txt +FILE: ../../../third_party/icu/source/data/curr/su.txt +FILE: ../../../third_party/icu/source/data/curr/su_ID.txt +FILE: ../../../third_party/icu/source/data/curr/su_Latn.txt +FILE: ../../../third_party/icu/source/data/curr/su_Latn_ID.txt +FILE: ../../../third_party/icu/source/data/curr/supplementalData.txt +FILE: ../../../third_party/icu/source/data/curr/sv.txt +FILE: ../../../third_party/icu/source/data/curr/sw.txt +FILE: ../../../third_party/icu/source/data/curr/sw_CD.txt +FILE: ../../../third_party/icu/source/data/curr/sw_KE.txt +FILE: ../../../third_party/icu/source/data/curr/sw_UG.txt +FILE: ../../../third_party/icu/source/data/curr/ta.txt +FILE: ../../../third_party/icu/source/data/curr/ta_LK.txt +FILE: ../../../third_party/icu/source/data/curr/ta_MY.txt +FILE: ../../../third_party/icu/source/data/curr/ta_SG.txt +FILE: ../../../third_party/icu/source/data/curr/te.txt +FILE: ../../../third_party/icu/source/data/curr/teo.txt +FILE: ../../../third_party/icu/source/data/curr/teo_KE.txt +FILE: ../../../third_party/icu/source/data/curr/tg.txt +FILE: ../../../third_party/icu/source/data/curr/th.txt +FILE: ../../../third_party/icu/source/data/curr/ti.txt +FILE: ../../../third_party/icu/source/data/curr/ti_ER.txt +FILE: ../../../third_party/icu/source/data/curr/tk.txt +FILE: ../../../third_party/icu/source/data/curr/tl.txt +FILE: ../../../third_party/icu/source/data/curr/tl_PH.txt +FILE: ../../../third_party/icu/source/data/curr/to.txt +FILE: ../../../third_party/icu/source/data/curr/tr.txt +FILE: ../../../third_party/icu/source/data/curr/tt.txt +FILE: ../../../third_party/icu/source/data/curr/twq.txt +FILE: ../../../third_party/icu/source/data/curr/tzm.txt +FILE: ../../../third_party/icu/source/data/curr/ug.txt +FILE: ../../../third_party/icu/source/data/curr/uk.txt +FILE: ../../../third_party/icu/source/data/curr/ur.txt +FILE: ../../../third_party/icu/source/data/curr/ur_IN.txt +FILE: ../../../third_party/icu/source/data/curr/uz.txt +FILE: ../../../third_party/icu/source/data/curr/uz_AF.txt +FILE: ../../../third_party/icu/source/data/curr/uz_Arab.txt +FILE: ../../../third_party/icu/source/data/curr/uz_Arab_AF.txt +FILE: ../../../third_party/icu/source/data/curr/uz_Cyrl.txt +FILE: ../../../third_party/icu/source/data/curr/uz_Latn.txt +FILE: ../../../third_party/icu/source/data/curr/uz_Latn_UZ.txt +FILE: ../../../third_party/icu/source/data/curr/uz_UZ.txt +FILE: ../../../third_party/icu/source/data/curr/vai.txt +FILE: ../../../third_party/icu/source/data/curr/vai_LR.txt +FILE: ../../../third_party/icu/source/data/curr/vai_Latn.txt +FILE: ../../../third_party/icu/source/data/curr/vai_Vaii.txt +FILE: ../../../third_party/icu/source/data/curr/vai_Vaii_LR.txt +FILE: ../../../third_party/icu/source/data/curr/vi.txt +FILE: ../../../third_party/icu/source/data/curr/vun.txt +FILE: ../../../third_party/icu/source/data/curr/wae.txt +FILE: ../../../third_party/icu/source/data/curr/wo.txt +FILE: ../../../third_party/icu/source/data/curr/xh.txt +FILE: ../../../third_party/icu/source/data/curr/xog.txt +FILE: ../../../third_party/icu/source/data/curr/yav.txt +FILE: ../../../third_party/icu/source/data/curr/yi.txt +FILE: ../../../third_party/icu/source/data/curr/yo.txt +FILE: ../../../third_party/icu/source/data/curr/yo_BJ.txt +FILE: ../../../third_party/icu/source/data/curr/yrl.txt +FILE: ../../../third_party/icu/source/data/curr/yrl_CO.txt +FILE: ../../../third_party/icu/source/data/curr/yrl_VE.txt +FILE: ../../../third_party/icu/source/data/curr/yue.txt +FILE: ../../../third_party/icu/source/data/curr/yue_CN.txt +FILE: ../../../third_party/icu/source/data/curr/yue_HK.txt +FILE: ../../../third_party/icu/source/data/curr/yue_Hans.txt +FILE: ../../../third_party/icu/source/data/curr/yue_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/curr/yue_Hant.txt +FILE: ../../../third_party/icu/source/data/curr/yue_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/curr/zgh.txt +FILE: ../../../third_party/icu/source/data/curr/zh.txt +FILE: ../../../third_party/icu/source/data/curr/zh_CN.txt +FILE: ../../../third_party/icu/source/data/curr/zh_HK.txt +FILE: ../../../third_party/icu/source/data/curr/zh_Hans.txt +FILE: ../../../third_party/icu/source/data/curr/zh_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/curr/zh_Hans_HK.txt +FILE: ../../../third_party/icu/source/data/curr/zh_Hans_MO.txt +FILE: ../../../third_party/icu/source/data/curr/zh_Hans_SG.txt +FILE: ../../../third_party/icu/source/data/curr/zh_Hant.txt +FILE: ../../../third_party/icu/source/data/curr/zh_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/curr/zh_Hant_MO.txt +FILE: ../../../third_party/icu/source/data/curr/zh_Hant_TW.txt +FILE: ../../../third_party/icu/source/data/curr/zh_MO.txt +FILE: ../../../third_party/icu/source/data/curr/zh_SG.txt +FILE: ../../../third_party/icu/source/data/curr/zh_TW.txt +FILE: ../../../third_party/icu/source/data/curr/zu.txt +FILE: ../../../third_party/icu/source/data/icu4j-readme.txt FILE: ../../../third_party/icu/source/data/icupkg.inc.in -FILE: ../../../third_party/icu/source/data/lang/LOCALE_DEPS.json -FILE: ../../../third_party/icu/source/data/locales/LOCALE_DEPS.json +FILE: ../../../third_party/icu/source/data/lang/af.txt +FILE: ../../../third_party/icu/source/data/lang/agq.txt +FILE: ../../../third_party/icu/source/data/lang/ak.txt +FILE: ../../../third_party/icu/source/data/lang/am.txt +FILE: ../../../third_party/icu/source/data/lang/ar.txt +FILE: ../../../third_party/icu/source/data/lang/ar_EG.txt +FILE: ../../../third_party/icu/source/data/lang/ar_LY.txt +FILE: ../../../third_party/icu/source/data/lang/ar_SA.txt +FILE: ../../../third_party/icu/source/data/lang/ars.txt +FILE: ../../../third_party/icu/source/data/lang/as.txt +FILE: ../../../third_party/icu/source/data/lang/asa.txt +FILE: ../../../third_party/icu/source/data/lang/ast.txt +FILE: ../../../third_party/icu/source/data/lang/az.txt +FILE: ../../../third_party/icu/source/data/lang/az_AZ.txt +FILE: ../../../third_party/icu/source/data/lang/az_Cyrl.txt +FILE: ../../../third_party/icu/source/data/lang/az_Latn.txt +FILE: ../../../third_party/icu/source/data/lang/az_Latn_AZ.txt +FILE: ../../../third_party/icu/source/data/lang/bas.txt +FILE: ../../../third_party/icu/source/data/lang/be.txt +FILE: ../../../third_party/icu/source/data/lang/bem.txt +FILE: ../../../third_party/icu/source/data/lang/bez.txt +FILE: ../../../third_party/icu/source/data/lang/bg.txt +FILE: ../../../third_party/icu/source/data/lang/bgc.txt +FILE: ../../../third_party/icu/source/data/lang/bho.txt +FILE: ../../../third_party/icu/source/data/lang/bm.txt +FILE: ../../../third_party/icu/source/data/lang/bn.txt +FILE: ../../../third_party/icu/source/data/lang/bn_IN.txt +FILE: ../../../third_party/icu/source/data/lang/bo.txt +FILE: ../../../third_party/icu/source/data/lang/br.txt +FILE: ../../../third_party/icu/source/data/lang/brx.txt +FILE: ../../../third_party/icu/source/data/lang/bs.txt +FILE: ../../../third_party/icu/source/data/lang/bs_BA.txt +FILE: ../../../third_party/icu/source/data/lang/bs_Cyrl.txt +FILE: ../../../third_party/icu/source/data/lang/bs_Latn.txt +FILE: ../../../third_party/icu/source/data/lang/bs_Latn_BA.txt +FILE: ../../../third_party/icu/source/data/lang/ca.txt +FILE: ../../../third_party/icu/source/data/lang/ccp.txt +FILE: ../../../third_party/icu/source/data/lang/ce.txt +FILE: ../../../third_party/icu/source/data/lang/ceb.txt +FILE: ../../../third_party/icu/source/data/lang/cgg.txt +FILE: ../../../third_party/icu/source/data/lang/chr.txt +FILE: ../../../third_party/icu/source/data/lang/ckb.txt +FILE: ../../../third_party/icu/source/data/lang/cs.txt +FILE: ../../../third_party/icu/source/data/lang/cv.txt +FILE: ../../../third_party/icu/source/data/lang/cy.txt +FILE: ../../../third_party/icu/source/data/lang/da.txt +FILE: ../../../third_party/icu/source/data/lang/dav.txt +FILE: ../../../third_party/icu/source/data/lang/de.txt +FILE: ../../../third_party/icu/source/data/lang/de_AT.txt +FILE: ../../../third_party/icu/source/data/lang/de_CH.txt +FILE: ../../../third_party/icu/source/data/lang/dje.txt +FILE: ../../../third_party/icu/source/data/lang/doi.txt +FILE: ../../../third_party/icu/source/data/lang/dsb.txt +FILE: ../../../third_party/icu/source/data/lang/dua.txt +FILE: ../../../third_party/icu/source/data/lang/dyo.txt +FILE: ../../../third_party/icu/source/data/lang/dz.txt +FILE: ../../../third_party/icu/source/data/lang/ebu.txt +FILE: ../../../third_party/icu/source/data/lang/ee.txt +FILE: ../../../third_party/icu/source/data/lang/el.txt +FILE: ../../../third_party/icu/source/data/lang/en.txt +FILE: ../../../third_party/icu/source/data/lang/en_001.txt +FILE: ../../../third_party/icu/source/data/lang/en_150.txt +FILE: ../../../third_party/icu/source/data/lang/en_AG.txt +FILE: ../../../third_party/icu/source/data/lang/en_AI.txt +FILE: ../../../third_party/icu/source/data/lang/en_AT.txt +FILE: ../../../third_party/icu/source/data/lang/en_AU.txt +FILE: ../../../third_party/icu/source/data/lang/en_BB.txt +FILE: ../../../third_party/icu/source/data/lang/en_BE.txt +FILE: ../../../third_party/icu/source/data/lang/en_BM.txt +FILE: ../../../third_party/icu/source/data/lang/en_BS.txt +FILE: ../../../third_party/icu/source/data/lang/en_BW.txt +FILE: ../../../third_party/icu/source/data/lang/en_BZ.txt +FILE: ../../../third_party/icu/source/data/lang/en_CA.txt +FILE: ../../../third_party/icu/source/data/lang/en_CC.txt +FILE: ../../../third_party/icu/source/data/lang/en_CH.txt +FILE: ../../../third_party/icu/source/data/lang/en_CK.txt +FILE: ../../../third_party/icu/source/data/lang/en_CM.txt +FILE: ../../../third_party/icu/source/data/lang/en_CX.txt +FILE: ../../../third_party/icu/source/data/lang/en_CY.txt +FILE: ../../../third_party/icu/source/data/lang/en_DE.txt +FILE: ../../../third_party/icu/source/data/lang/en_DG.txt +FILE: ../../../third_party/icu/source/data/lang/en_DK.txt +FILE: ../../../third_party/icu/source/data/lang/en_DM.txt +FILE: ../../../third_party/icu/source/data/lang/en_ER.txt +FILE: ../../../third_party/icu/source/data/lang/en_FI.txt +FILE: ../../../third_party/icu/source/data/lang/en_FJ.txt +FILE: ../../../third_party/icu/source/data/lang/en_FK.txt +FILE: ../../../third_party/icu/source/data/lang/en_FM.txt +FILE: ../../../third_party/icu/source/data/lang/en_GB.txt +FILE: ../../../third_party/icu/source/data/lang/en_GD.txt +FILE: ../../../third_party/icu/source/data/lang/en_GG.txt +FILE: ../../../third_party/icu/source/data/lang/en_GH.txt +FILE: ../../../third_party/icu/source/data/lang/en_GI.txt +FILE: ../../../third_party/icu/source/data/lang/en_GM.txt +FILE: ../../../third_party/icu/source/data/lang/en_GY.txt +FILE: ../../../third_party/icu/source/data/lang/en_HK.txt +FILE: ../../../third_party/icu/source/data/lang/en_IE.txt +FILE: ../../../third_party/icu/source/data/lang/en_IL.txt +FILE: ../../../third_party/icu/source/data/lang/en_IM.txt +FILE: ../../../third_party/icu/source/data/lang/en_IN.txt +FILE: ../../../third_party/icu/source/data/lang/en_IO.txt +FILE: ../../../third_party/icu/source/data/lang/en_JE.txt +FILE: ../../../third_party/icu/source/data/lang/en_JM.txt +FILE: ../../../third_party/icu/source/data/lang/en_KE.txt +FILE: ../../../third_party/icu/source/data/lang/en_KI.txt +FILE: ../../../third_party/icu/source/data/lang/en_KN.txt +FILE: ../../../third_party/icu/source/data/lang/en_KY.txt +FILE: ../../../third_party/icu/source/data/lang/en_LC.txt +FILE: ../../../third_party/icu/source/data/lang/en_LR.txt +FILE: ../../../third_party/icu/source/data/lang/en_LS.txt +FILE: ../../../third_party/icu/source/data/lang/en_MG.txt +FILE: ../../../third_party/icu/source/data/lang/en_MO.txt +FILE: ../../../third_party/icu/source/data/lang/en_MS.txt +FILE: ../../../third_party/icu/source/data/lang/en_MT.txt +FILE: ../../../third_party/icu/source/data/lang/en_MU.txt +FILE: ../../../third_party/icu/source/data/lang/en_MV.txt +FILE: ../../../third_party/icu/source/data/lang/en_MW.txt +FILE: ../../../third_party/icu/source/data/lang/en_MY.txt +FILE: ../../../third_party/icu/source/data/lang/en_NA.txt +FILE: ../../../third_party/icu/source/data/lang/en_NF.txt +FILE: ../../../third_party/icu/source/data/lang/en_NG.txt +FILE: ../../../third_party/icu/source/data/lang/en_NH.txt +FILE: ../../../third_party/icu/source/data/lang/en_NL.txt +FILE: ../../../third_party/icu/source/data/lang/en_NR.txt +FILE: ../../../third_party/icu/source/data/lang/en_NU.txt +FILE: ../../../third_party/icu/source/data/lang/en_NZ.txt +FILE: ../../../third_party/icu/source/data/lang/en_PG.txt +FILE: ../../../third_party/icu/source/data/lang/en_PK.txt +FILE: ../../../third_party/icu/source/data/lang/en_PN.txt +FILE: ../../../third_party/icu/source/data/lang/en_PW.txt +FILE: ../../../third_party/icu/source/data/lang/en_RH.txt +FILE: ../../../third_party/icu/source/data/lang/en_RW.txt +FILE: ../../../third_party/icu/source/data/lang/en_SB.txt +FILE: ../../../third_party/icu/source/data/lang/en_SC.txt +FILE: ../../../third_party/icu/source/data/lang/en_SD.txt +FILE: ../../../third_party/icu/source/data/lang/en_SE.txt +FILE: ../../../third_party/icu/source/data/lang/en_SG.txt +FILE: ../../../third_party/icu/source/data/lang/en_SH.txt +FILE: ../../../third_party/icu/source/data/lang/en_SI.txt +FILE: ../../../third_party/icu/source/data/lang/en_SL.txt +FILE: ../../../third_party/icu/source/data/lang/en_SS.txt +FILE: ../../../third_party/icu/source/data/lang/en_SX.txt +FILE: ../../../third_party/icu/source/data/lang/en_SZ.txt +FILE: ../../../third_party/icu/source/data/lang/en_TC.txt +FILE: ../../../third_party/icu/source/data/lang/en_TK.txt +FILE: ../../../third_party/icu/source/data/lang/en_TO.txt +FILE: ../../../third_party/icu/source/data/lang/en_TT.txt +FILE: ../../../third_party/icu/source/data/lang/en_TV.txt +FILE: ../../../third_party/icu/source/data/lang/en_TZ.txt +FILE: ../../../third_party/icu/source/data/lang/en_UG.txt +FILE: ../../../third_party/icu/source/data/lang/en_VC.txt +FILE: ../../../third_party/icu/source/data/lang/en_VG.txt +FILE: ../../../third_party/icu/source/data/lang/en_VU.txt +FILE: ../../../third_party/icu/source/data/lang/en_WS.txt +FILE: ../../../third_party/icu/source/data/lang/en_ZA.txt +FILE: ../../../third_party/icu/source/data/lang/en_ZM.txt +FILE: ../../../third_party/icu/source/data/lang/en_ZW.txt +FILE: ../../../third_party/icu/source/data/lang/eo.txt +FILE: ../../../third_party/icu/source/data/lang/es.txt +FILE: ../../../third_party/icu/source/data/lang/es_419.txt +FILE: ../../../third_party/icu/source/data/lang/es_AR.txt +FILE: ../../../third_party/icu/source/data/lang/es_BO.txt +FILE: ../../../third_party/icu/source/data/lang/es_BR.txt +FILE: ../../../third_party/icu/source/data/lang/es_BZ.txt +FILE: ../../../third_party/icu/source/data/lang/es_CL.txt +FILE: ../../../third_party/icu/source/data/lang/es_CO.txt +FILE: ../../../third_party/icu/source/data/lang/es_CR.txt +FILE: ../../../third_party/icu/source/data/lang/es_CU.txt +FILE: ../../../third_party/icu/source/data/lang/es_DO.txt +FILE: ../../../third_party/icu/source/data/lang/es_EC.txt +FILE: ../../../third_party/icu/source/data/lang/es_GT.txt +FILE: ../../../third_party/icu/source/data/lang/es_HN.txt +FILE: ../../../third_party/icu/source/data/lang/es_MX.txt +FILE: ../../../third_party/icu/source/data/lang/es_NI.txt +FILE: ../../../third_party/icu/source/data/lang/es_PA.txt +FILE: ../../../third_party/icu/source/data/lang/es_PE.txt +FILE: ../../../third_party/icu/source/data/lang/es_PR.txt +FILE: ../../../third_party/icu/source/data/lang/es_PY.txt +FILE: ../../../third_party/icu/source/data/lang/es_SV.txt +FILE: ../../../third_party/icu/source/data/lang/es_US.txt +FILE: ../../../third_party/icu/source/data/lang/es_UY.txt +FILE: ../../../third_party/icu/source/data/lang/es_VE.txt +FILE: ../../../third_party/icu/source/data/lang/et.txt +FILE: ../../../third_party/icu/source/data/lang/eu.txt +FILE: ../../../third_party/icu/source/data/lang/ewo.txt +FILE: ../../../third_party/icu/source/data/lang/fa.txt +FILE: ../../../third_party/icu/source/data/lang/fa_AF.txt +FILE: ../../../third_party/icu/source/data/lang/ff.txt +FILE: ../../../third_party/icu/source/data/lang/ff_Adlm.txt +FILE: ../../../third_party/icu/source/data/lang/ff_CM.txt +FILE: ../../../third_party/icu/source/data/lang/ff_GN.txt +FILE: ../../../third_party/icu/source/data/lang/ff_Latn.txt +FILE: ../../../third_party/icu/source/data/lang/ff_Latn_CM.txt +FILE: ../../../third_party/icu/source/data/lang/ff_Latn_GN.txt +FILE: ../../../third_party/icu/source/data/lang/ff_Latn_MR.txt +FILE: ../../../third_party/icu/source/data/lang/ff_Latn_SN.txt +FILE: ../../../third_party/icu/source/data/lang/ff_MR.txt +FILE: ../../../third_party/icu/source/data/lang/ff_SN.txt +FILE: ../../../third_party/icu/source/data/lang/fi.txt +FILE: ../../../third_party/icu/source/data/lang/fil.txt +FILE: ../../../third_party/icu/source/data/lang/fil_PH.txt +FILE: ../../../third_party/icu/source/data/lang/fo.txt +FILE: ../../../third_party/icu/source/data/lang/fr.txt +FILE: ../../../third_party/icu/source/data/lang/fr_BE.txt +FILE: ../../../third_party/icu/source/data/lang/fr_CA.txt +FILE: ../../../third_party/icu/source/data/lang/fr_CH.txt +FILE: ../../../third_party/icu/source/data/lang/fur.txt +FILE: ../../../third_party/icu/source/data/lang/fy.txt +FILE: ../../../third_party/icu/source/data/lang/ga.txt +FILE: ../../../third_party/icu/source/data/lang/gd.txt +FILE: ../../../third_party/icu/source/data/lang/gl.txt +FILE: ../../../third_party/icu/source/data/lang/gsw.txt +FILE: ../../../third_party/icu/source/data/lang/gu.txt +FILE: ../../../third_party/icu/source/data/lang/guz.txt +FILE: ../../../third_party/icu/source/data/lang/gv.txt +FILE: ../../../third_party/icu/source/data/lang/ha.txt +FILE: ../../../third_party/icu/source/data/lang/ha_NE.txt +FILE: ../../../third_party/icu/source/data/lang/haw.txt +FILE: ../../../third_party/icu/source/data/lang/he.txt +FILE: ../../../third_party/icu/source/data/lang/he_IL.txt +FILE: ../../../third_party/icu/source/data/lang/hi.txt +FILE: ../../../third_party/icu/source/data/lang/hi_Latn.txt +FILE: ../../../third_party/icu/source/data/lang/hr.txt +FILE: ../../../third_party/icu/source/data/lang/hsb.txt +FILE: ../../../third_party/icu/source/data/lang/hu.txt +FILE: ../../../third_party/icu/source/data/lang/hy.txt +FILE: ../../../third_party/icu/source/data/lang/ia.txt +FILE: ../../../third_party/icu/source/data/lang/id.txt +FILE: ../../../third_party/icu/source/data/lang/id_ID.txt +FILE: ../../../third_party/icu/source/data/lang/ig.txt +FILE: ../../../third_party/icu/source/data/lang/ii.txt +FILE: ../../../third_party/icu/source/data/lang/in.txt +FILE: ../../../third_party/icu/source/data/lang/in_ID.txt +FILE: ../../../third_party/icu/source/data/lang/is.txt +FILE: ../../../third_party/icu/source/data/lang/it.txt +FILE: ../../../third_party/icu/source/data/lang/iw.txt +FILE: ../../../third_party/icu/source/data/lang/iw_IL.txt +FILE: ../../../third_party/icu/source/data/lang/ja.txt +FILE: ../../../third_party/icu/source/data/lang/jgo.txt +FILE: ../../../third_party/icu/source/data/lang/jmc.txt +FILE: ../../../third_party/icu/source/data/lang/jv.txt +FILE: ../../../third_party/icu/source/data/lang/ka.txt +FILE: ../../../third_party/icu/source/data/lang/kab.txt +FILE: ../../../third_party/icu/source/data/lang/kam.txt +FILE: ../../../third_party/icu/source/data/lang/kde.txt +FILE: ../../../third_party/icu/source/data/lang/kea.txt +FILE: ../../../third_party/icu/source/data/lang/kgp.txt +FILE: ../../../third_party/icu/source/data/lang/khq.txt +FILE: ../../../third_party/icu/source/data/lang/ki.txt +FILE: ../../../third_party/icu/source/data/lang/kk.txt +FILE: ../../../third_party/icu/source/data/lang/kkj.txt +FILE: ../../../third_party/icu/source/data/lang/kl.txt +FILE: ../../../third_party/icu/source/data/lang/kln.txt +FILE: ../../../third_party/icu/source/data/lang/km.txt +FILE: ../../../third_party/icu/source/data/lang/kn.txt +FILE: ../../../third_party/icu/source/data/lang/ko.txt +FILE: ../../../third_party/icu/source/data/lang/kok.txt +FILE: ../../../third_party/icu/source/data/lang/ks.txt +FILE: ../../../third_party/icu/source/data/lang/ks_Arab.txt +FILE: ../../../third_party/icu/source/data/lang/ks_Arab_IN.txt +FILE: ../../../third_party/icu/source/data/lang/ks_Deva.txt +FILE: ../../../third_party/icu/source/data/lang/ks_IN.txt +FILE: ../../../third_party/icu/source/data/lang/ksb.txt +FILE: ../../../third_party/icu/source/data/lang/ksf.txt +FILE: ../../../third_party/icu/source/data/lang/ksh.txt +FILE: ../../../third_party/icu/source/data/lang/kw.txt +FILE: ../../../third_party/icu/source/data/lang/ky.txt +FILE: ../../../third_party/icu/source/data/lang/lag.txt +FILE: ../../../third_party/icu/source/data/lang/lb.txt +FILE: ../../../third_party/icu/source/data/lang/lg.txt +FILE: ../../../third_party/icu/source/data/lang/lkt.txt +FILE: ../../../third_party/icu/source/data/lang/ln.txt +FILE: ../../../third_party/icu/source/data/lang/lo.txt +FILE: ../../../third_party/icu/source/data/lang/lrc.txt +FILE: ../../../third_party/icu/source/data/lang/lt.txt +FILE: ../../../third_party/icu/source/data/lang/lu.txt +FILE: ../../../third_party/icu/source/data/lang/luo.txt +FILE: ../../../third_party/icu/source/data/lang/luy.txt +FILE: ../../../third_party/icu/source/data/lang/lv.txt +FILE: ../../../third_party/icu/source/data/lang/mai.txt +FILE: ../../../third_party/icu/source/data/lang/mas.txt +FILE: ../../../third_party/icu/source/data/lang/mer.txt +FILE: ../../../third_party/icu/source/data/lang/mfe.txt +FILE: ../../../third_party/icu/source/data/lang/mg.txt +FILE: ../../../third_party/icu/source/data/lang/mgh.txt +FILE: ../../../third_party/icu/source/data/lang/mgo.txt +FILE: ../../../third_party/icu/source/data/lang/mi.txt +FILE: ../../../third_party/icu/source/data/lang/mk.txt +FILE: ../../../third_party/icu/source/data/lang/ml.txt +FILE: ../../../third_party/icu/source/data/lang/mn.txt +FILE: ../../../third_party/icu/source/data/lang/mni.txt +FILE: ../../../third_party/icu/source/data/lang/mni_Beng.txt +FILE: ../../../third_party/icu/source/data/lang/mni_Beng_IN.txt +FILE: ../../../third_party/icu/source/data/lang/mni_IN.txt +FILE: ../../../third_party/icu/source/data/lang/mo.txt +FILE: ../../../third_party/icu/source/data/lang/mr.txt +FILE: ../../../third_party/icu/source/data/lang/ms.txt +FILE: ../../../third_party/icu/source/data/lang/mt.txt +FILE: ../../../third_party/icu/source/data/lang/mua.txt +FILE: ../../../third_party/icu/source/data/lang/my.txt +FILE: ../../../third_party/icu/source/data/lang/mzn.txt +FILE: ../../../third_party/icu/source/data/lang/naq.txt +FILE: ../../../third_party/icu/source/data/lang/nb.txt +FILE: ../../../third_party/icu/source/data/lang/nd.txt +FILE: ../../../third_party/icu/source/data/lang/ne.txt +FILE: ../../../third_party/icu/source/data/lang/nl.txt +FILE: ../../../third_party/icu/source/data/lang/nmg.txt +FILE: ../../../third_party/icu/source/data/lang/nn.txt +FILE: ../../../third_party/icu/source/data/lang/nn_NO.txt +FILE: ../../../third_party/icu/source/data/lang/nnh.txt +FILE: ../../../third_party/icu/source/data/lang/no.txt +FILE: ../../../third_party/icu/source/data/lang/no_NO.txt +FILE: ../../../third_party/icu/source/data/lang/no_NO_NY.txt +FILE: ../../../third_party/icu/source/data/lang/nus.txt +FILE: ../../../third_party/icu/source/data/lang/nyn.txt +FILE: ../../../third_party/icu/source/data/lang/om.txt +FILE: ../../../third_party/icu/source/data/lang/or.txt +FILE: ../../../third_party/icu/source/data/lang/os.txt +FILE: ../../../third_party/icu/source/data/lang/pa.txt +FILE: ../../../third_party/icu/source/data/lang/pa_Arab.txt +FILE: ../../../third_party/icu/source/data/lang/pa_Arab_PK.txt +FILE: ../../../third_party/icu/source/data/lang/pa_Guru.txt +FILE: ../../../third_party/icu/source/data/lang/pa_Guru_IN.txt +FILE: ../../../third_party/icu/source/data/lang/pa_IN.txt +FILE: ../../../third_party/icu/source/data/lang/pa_PK.txt +FILE: ../../../third_party/icu/source/data/lang/pcm.txt +FILE: ../../../third_party/icu/source/data/lang/pl.txt +FILE: ../../../third_party/icu/source/data/lang/ps.txt +FILE: ../../../third_party/icu/source/data/lang/ps_PK.txt +FILE: ../../../third_party/icu/source/data/lang/pt.txt +FILE: ../../../third_party/icu/source/data/lang/pt_AO.txt +FILE: ../../../third_party/icu/source/data/lang/pt_CH.txt +FILE: ../../../third_party/icu/source/data/lang/pt_CV.txt +FILE: ../../../third_party/icu/source/data/lang/pt_GQ.txt +FILE: ../../../third_party/icu/source/data/lang/pt_GW.txt +FILE: ../../../third_party/icu/source/data/lang/pt_LU.txt +FILE: ../../../third_party/icu/source/data/lang/pt_MO.txt +FILE: ../../../third_party/icu/source/data/lang/pt_MZ.txt +FILE: ../../../third_party/icu/source/data/lang/pt_PT.txt +FILE: ../../../third_party/icu/source/data/lang/pt_ST.txt +FILE: ../../../third_party/icu/source/data/lang/pt_TL.txt +FILE: ../../../third_party/icu/source/data/lang/qu.txt +FILE: ../../../third_party/icu/source/data/lang/raj.txt +FILE: ../../../third_party/icu/source/data/lang/rm.txt +FILE: ../../../third_party/icu/source/data/lang/rn.txt +FILE: ../../../third_party/icu/source/data/lang/ro.txt +FILE: ../../../third_party/icu/source/data/lang/ro_MD.txt +FILE: ../../../third_party/icu/source/data/lang/rof.txt +FILE: ../../../third_party/icu/source/data/lang/root.txt +FILE: ../../../third_party/icu/source/data/lang/ru.txt +FILE: ../../../third_party/icu/source/data/lang/rw.txt +FILE: ../../../third_party/icu/source/data/lang/rwk.txt +FILE: ../../../third_party/icu/source/data/lang/sa.txt +FILE: ../../../third_party/icu/source/data/lang/sah.txt +FILE: ../../../third_party/icu/source/data/lang/saq.txt +FILE: ../../../third_party/icu/source/data/lang/sat.txt +FILE: ../../../third_party/icu/source/data/lang/sat_IN.txt +FILE: ../../../third_party/icu/source/data/lang/sat_Olck.txt +FILE: ../../../third_party/icu/source/data/lang/sat_Olck_IN.txt +FILE: ../../../third_party/icu/source/data/lang/sbp.txt +FILE: ../../../third_party/icu/source/data/lang/sc.txt +FILE: ../../../third_party/icu/source/data/lang/sd.txt +FILE: ../../../third_party/icu/source/data/lang/sd_Arab.txt +FILE: ../../../third_party/icu/source/data/lang/sd_Arab_PK.txt +FILE: ../../../third_party/icu/source/data/lang/sd_Deva.txt +FILE: ../../../third_party/icu/source/data/lang/sd_Deva_IN.txt +FILE: ../../../third_party/icu/source/data/lang/sd_IN.txt +FILE: ../../../third_party/icu/source/data/lang/sd_PK.txt +FILE: ../../../third_party/icu/source/data/lang/se.txt +FILE: ../../../third_party/icu/source/data/lang/se_FI.txt +FILE: ../../../third_party/icu/source/data/lang/seh.txt +FILE: ../../../third_party/icu/source/data/lang/ses.txt +FILE: ../../../third_party/icu/source/data/lang/sg.txt +FILE: ../../../third_party/icu/source/data/lang/sh.txt +FILE: ../../../third_party/icu/source/data/lang/sh_BA.txt +FILE: ../../../third_party/icu/source/data/lang/sh_CS.txt +FILE: ../../../third_party/icu/source/data/lang/sh_YU.txt +FILE: ../../../third_party/icu/source/data/lang/shi.txt +FILE: ../../../third_party/icu/source/data/lang/shi_Latn.txt +FILE: ../../../third_party/icu/source/data/lang/shi_MA.txt +FILE: ../../../third_party/icu/source/data/lang/shi_Tfng.txt +FILE: ../../../third_party/icu/source/data/lang/shi_Tfng_MA.txt +FILE: ../../../third_party/icu/source/data/lang/si.txt +FILE: ../../../third_party/icu/source/data/lang/sk.txt +FILE: ../../../third_party/icu/source/data/lang/sl.txt +FILE: ../../../third_party/icu/source/data/lang/smn.txt +FILE: ../../../third_party/icu/source/data/lang/sn.txt +FILE: ../../../third_party/icu/source/data/lang/so.txt +FILE: ../../../third_party/icu/source/data/lang/sq.txt +FILE: ../../../third_party/icu/source/data/lang/sr.txt +FILE: ../../../third_party/icu/source/data/lang/sr_BA.txt +FILE: ../../../third_party/icu/source/data/lang/sr_CS.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Cyrl.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Cyrl_BA.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Cyrl_CS.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Cyrl_ME.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Cyrl_RS.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Cyrl_XK.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Cyrl_YU.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Latn.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Latn_BA.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Latn_CS.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Latn_ME.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Latn_RS.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Latn_XK.txt +FILE: ../../../third_party/icu/source/data/lang/sr_Latn_YU.txt +FILE: ../../../third_party/icu/source/data/lang/sr_ME.txt +FILE: ../../../third_party/icu/source/data/lang/sr_RS.txt +FILE: ../../../third_party/icu/source/data/lang/sr_XK.txt +FILE: ../../../third_party/icu/source/data/lang/sr_YU.txt +FILE: ../../../third_party/icu/source/data/lang/su.txt +FILE: ../../../third_party/icu/source/data/lang/su_ID.txt +FILE: ../../../third_party/icu/source/data/lang/su_Latn.txt +FILE: ../../../third_party/icu/source/data/lang/su_Latn_ID.txt +FILE: ../../../third_party/icu/source/data/lang/sv.txt +FILE: ../../../third_party/icu/source/data/lang/sv_FI.txt +FILE: ../../../third_party/icu/source/data/lang/sw.txt +FILE: ../../../third_party/icu/source/data/lang/sw_CD.txt +FILE: ../../../third_party/icu/source/data/lang/sw_KE.txt +FILE: ../../../third_party/icu/source/data/lang/ta.txt +FILE: ../../../third_party/icu/source/data/lang/te.txt +FILE: ../../../third_party/icu/source/data/lang/teo.txt +FILE: ../../../third_party/icu/source/data/lang/th.txt +FILE: ../../../third_party/icu/source/data/lang/ti.txt +FILE: ../../../third_party/icu/source/data/lang/ti_ER.txt +FILE: ../../../third_party/icu/source/data/lang/tk.txt +FILE: ../../../third_party/icu/source/data/lang/tl.txt +FILE: ../../../third_party/icu/source/data/lang/tl_PH.txt +FILE: ../../../third_party/icu/source/data/lang/to.txt +FILE: ../../../third_party/icu/source/data/lang/tr.txt +FILE: ../../../third_party/icu/source/data/lang/tt.txt +FILE: ../../../third_party/icu/source/data/lang/twq.txt +FILE: ../../../third_party/icu/source/data/lang/tzm.txt +FILE: ../../../third_party/icu/source/data/lang/ug.txt +FILE: ../../../third_party/icu/source/data/lang/uk.txt +FILE: ../../../third_party/icu/source/data/lang/ur.txt +FILE: ../../../third_party/icu/source/data/lang/ur_IN.txt +FILE: ../../../third_party/icu/source/data/lang/uz.txt +FILE: ../../../third_party/icu/source/data/lang/uz_AF.txt +FILE: ../../../third_party/icu/source/data/lang/uz_Arab.txt +FILE: ../../../third_party/icu/source/data/lang/uz_Arab_AF.txt +FILE: ../../../third_party/icu/source/data/lang/uz_Cyrl.txt +FILE: ../../../third_party/icu/source/data/lang/uz_Latn.txt +FILE: ../../../third_party/icu/source/data/lang/uz_Latn_UZ.txt +FILE: ../../../third_party/icu/source/data/lang/uz_UZ.txt +FILE: ../../../third_party/icu/source/data/lang/vai.txt +FILE: ../../../third_party/icu/source/data/lang/vai_LR.txt +FILE: ../../../third_party/icu/source/data/lang/vai_Latn.txt +FILE: ../../../third_party/icu/source/data/lang/vai_Vaii.txt +FILE: ../../../third_party/icu/source/data/lang/vai_Vaii_LR.txt +FILE: ../../../third_party/icu/source/data/lang/vi.txt +FILE: ../../../third_party/icu/source/data/lang/vun.txt +FILE: ../../../third_party/icu/source/data/lang/wae.txt +FILE: ../../../third_party/icu/source/data/lang/wo.txt +FILE: ../../../third_party/icu/source/data/lang/xh.txt +FILE: ../../../third_party/icu/source/data/lang/xog.txt +FILE: ../../../third_party/icu/source/data/lang/yav.txt +FILE: ../../../third_party/icu/source/data/lang/yi.txt +FILE: ../../../third_party/icu/source/data/lang/yo.txt +FILE: ../../../third_party/icu/source/data/lang/yo_BJ.txt +FILE: ../../../third_party/icu/source/data/lang/yrl.txt +FILE: ../../../third_party/icu/source/data/lang/yrl_CO.txt +FILE: ../../../third_party/icu/source/data/lang/yrl_VE.txt +FILE: ../../../third_party/icu/source/data/lang/yue.txt +FILE: ../../../third_party/icu/source/data/lang/yue_CN.txt +FILE: ../../../third_party/icu/source/data/lang/yue_HK.txt +FILE: ../../../third_party/icu/source/data/lang/yue_Hans.txt +FILE: ../../../third_party/icu/source/data/lang/yue_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/lang/yue_Hant.txt +FILE: ../../../third_party/icu/source/data/lang/yue_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/lang/zgh.txt +FILE: ../../../third_party/icu/source/data/lang/zh.txt +FILE: ../../../third_party/icu/source/data/lang/zh_CN.txt +FILE: ../../../third_party/icu/source/data/lang/zh_HK.txt +FILE: ../../../third_party/icu/source/data/lang/zh_Hans.txt +FILE: ../../../third_party/icu/source/data/lang/zh_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/lang/zh_Hans_SG.txt +FILE: ../../../third_party/icu/source/data/lang/zh_Hant.txt +FILE: ../../../third_party/icu/source/data/lang/zh_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/lang/zh_Hant_MO.txt +FILE: ../../../third_party/icu/source/data/lang/zh_Hant_TW.txt +FILE: ../../../third_party/icu/source/data/lang/zh_MO.txt +FILE: ../../../third_party/icu/source/data/lang/zh_SG.txt +FILE: ../../../third_party/icu/source/data/lang/zh_TW.txt +FILE: ../../../third_party/icu/source/data/lang/zu.txt +FILE: ../../../third_party/icu/source/data/locales/af.txt +FILE: ../../../third_party/icu/source/data/locales/af_NA.txt +FILE: ../../../third_party/icu/source/data/locales/af_ZA.txt +FILE: ../../../third_party/icu/source/data/locales/agq.txt +FILE: ../../../third_party/icu/source/data/locales/agq_CM.txt +FILE: ../../../third_party/icu/source/data/locales/ak.txt +FILE: ../../../third_party/icu/source/data/locales/ak_GH.txt +FILE: ../../../third_party/icu/source/data/locales/am.txt +FILE: ../../../third_party/icu/source/data/locales/am_ET.txt +FILE: ../../../third_party/icu/source/data/locales/ar.txt +FILE: ../../../third_party/icu/source/data/locales/ar_001.txt +FILE: ../../../third_party/icu/source/data/locales/ar_AE.txt +FILE: ../../../third_party/icu/source/data/locales/ar_BH.txt +FILE: ../../../third_party/icu/source/data/locales/ar_DJ.txt +FILE: ../../../third_party/icu/source/data/locales/ar_DZ.txt +FILE: ../../../third_party/icu/source/data/locales/ar_EG.txt +FILE: ../../../third_party/icu/source/data/locales/ar_EH.txt +FILE: ../../../third_party/icu/source/data/locales/ar_ER.txt +FILE: ../../../third_party/icu/source/data/locales/ar_IL.txt +FILE: ../../../third_party/icu/source/data/locales/ar_IQ.txt +FILE: ../../../third_party/icu/source/data/locales/ar_JO.txt +FILE: ../../../third_party/icu/source/data/locales/ar_KM.txt +FILE: ../../../third_party/icu/source/data/locales/ar_KW.txt +FILE: ../../../third_party/icu/source/data/locales/ar_LB.txt +FILE: ../../../third_party/icu/source/data/locales/ar_LY.txt +FILE: ../../../third_party/icu/source/data/locales/ar_MA.txt +FILE: ../../../third_party/icu/source/data/locales/ar_MR.txt +FILE: ../../../third_party/icu/source/data/locales/ar_OM.txt +FILE: ../../../third_party/icu/source/data/locales/ar_PS.txt +FILE: ../../../third_party/icu/source/data/locales/ar_QA.txt +FILE: ../../../third_party/icu/source/data/locales/ar_SA.txt +FILE: ../../../third_party/icu/source/data/locales/ar_SD.txt +FILE: ../../../third_party/icu/source/data/locales/ar_SO.txt +FILE: ../../../third_party/icu/source/data/locales/ar_SS.txt +FILE: ../../../third_party/icu/source/data/locales/ar_SY.txt +FILE: ../../../third_party/icu/source/data/locales/ar_TD.txt +FILE: ../../../third_party/icu/source/data/locales/ar_TN.txt +FILE: ../../../third_party/icu/source/data/locales/ar_YE.txt +FILE: ../../../third_party/icu/source/data/locales/ars.txt +FILE: ../../../third_party/icu/source/data/locales/as.txt +FILE: ../../../third_party/icu/source/data/locales/as_IN.txt +FILE: ../../../third_party/icu/source/data/locales/asa.txt +FILE: ../../../third_party/icu/source/data/locales/asa_TZ.txt +FILE: ../../../third_party/icu/source/data/locales/ast.txt +FILE: ../../../third_party/icu/source/data/locales/ast_ES.txt +FILE: ../../../third_party/icu/source/data/locales/az.txt +FILE: ../../../third_party/icu/source/data/locales/az_AZ.txt +FILE: ../../../third_party/icu/source/data/locales/az_Cyrl.txt +FILE: ../../../third_party/icu/source/data/locales/az_Cyrl_AZ.txt +FILE: ../../../third_party/icu/source/data/locales/az_Latn.txt +FILE: ../../../third_party/icu/source/data/locales/az_Latn_AZ.txt +FILE: ../../../third_party/icu/source/data/locales/bas.txt +FILE: ../../../third_party/icu/source/data/locales/bas_CM.txt +FILE: ../../../third_party/icu/source/data/locales/be.txt +FILE: ../../../third_party/icu/source/data/locales/be_BY.txt +FILE: ../../../third_party/icu/source/data/locales/bem.txt +FILE: ../../../third_party/icu/source/data/locales/bem_ZM.txt +FILE: ../../../third_party/icu/source/data/locales/bez.txt +FILE: ../../../third_party/icu/source/data/locales/bez_TZ.txt +FILE: ../../../third_party/icu/source/data/locales/bg.txt +FILE: ../../../third_party/icu/source/data/locales/bg_BG.txt +FILE: ../../../third_party/icu/source/data/locales/bgc.txt +FILE: ../../../third_party/icu/source/data/locales/bgc_IN.txt +FILE: ../../../third_party/icu/source/data/locales/bho.txt +FILE: ../../../third_party/icu/source/data/locales/bho_IN.txt +FILE: ../../../third_party/icu/source/data/locales/bm.txt +FILE: ../../../third_party/icu/source/data/locales/bm_ML.txt +FILE: ../../../third_party/icu/source/data/locales/bn.txt +FILE: ../../../third_party/icu/source/data/locales/bn_BD.txt +FILE: ../../../third_party/icu/source/data/locales/bn_IN.txt +FILE: ../../../third_party/icu/source/data/locales/bo.txt +FILE: ../../../third_party/icu/source/data/locales/bo_CN.txt +FILE: ../../../third_party/icu/source/data/locales/bo_IN.txt +FILE: ../../../third_party/icu/source/data/locales/br.txt +FILE: ../../../third_party/icu/source/data/locales/br_FR.txt +FILE: ../../../third_party/icu/source/data/locales/brx.txt +FILE: ../../../third_party/icu/source/data/locales/brx_IN.txt +FILE: ../../../third_party/icu/source/data/locales/bs.txt +FILE: ../../../third_party/icu/source/data/locales/bs_BA.txt +FILE: ../../../third_party/icu/source/data/locales/bs_Cyrl.txt +FILE: ../../../third_party/icu/source/data/locales/bs_Cyrl_BA.txt +FILE: ../../../third_party/icu/source/data/locales/bs_Latn.txt +FILE: ../../../third_party/icu/source/data/locales/bs_Latn_BA.txt +FILE: ../../../third_party/icu/source/data/locales/ca.txt +FILE: ../../../third_party/icu/source/data/locales/ca_AD.txt +FILE: ../../../third_party/icu/source/data/locales/ca_ES.txt +FILE: ../../../third_party/icu/source/data/locales/ca_FR.txt +FILE: ../../../third_party/icu/source/data/locales/ca_IT.txt +FILE: ../../../third_party/icu/source/data/locales/ccp.txt +FILE: ../../../third_party/icu/source/data/locales/ccp_BD.txt +FILE: ../../../third_party/icu/source/data/locales/ccp_IN.txt +FILE: ../../../third_party/icu/source/data/locales/ce.txt +FILE: ../../../third_party/icu/source/data/locales/ce_RU.txt +FILE: ../../../third_party/icu/source/data/locales/ceb.txt +FILE: ../../../third_party/icu/source/data/locales/ceb_PH.txt +FILE: ../../../third_party/icu/source/data/locales/cgg.txt +FILE: ../../../third_party/icu/source/data/locales/cgg_UG.txt +FILE: ../../../third_party/icu/source/data/locales/chr.txt +FILE: ../../../third_party/icu/source/data/locales/chr_US.txt +FILE: ../../../third_party/icu/source/data/locales/ckb.txt +FILE: ../../../third_party/icu/source/data/locales/ckb_IQ.txt +FILE: ../../../third_party/icu/source/data/locales/ckb_IR.txt +FILE: ../../../third_party/icu/source/data/locales/cs.txt +FILE: ../../../third_party/icu/source/data/locales/cs_CZ.txt +FILE: ../../../third_party/icu/source/data/locales/cv.txt +FILE: ../../../third_party/icu/source/data/locales/cv_RU.txt +FILE: ../../../third_party/icu/source/data/locales/cy.txt +FILE: ../../../third_party/icu/source/data/locales/cy_GB.txt +FILE: ../../../third_party/icu/source/data/locales/da.txt +FILE: ../../../third_party/icu/source/data/locales/da_DK.txt +FILE: ../../../third_party/icu/source/data/locales/da_GL.txt +FILE: ../../../third_party/icu/source/data/locales/dav.txt +FILE: ../../../third_party/icu/source/data/locales/dav_KE.txt +FILE: ../../../third_party/icu/source/data/locales/de.txt +FILE: ../../../third_party/icu/source/data/locales/de_AT.txt +FILE: ../../../third_party/icu/source/data/locales/de_BE.txt +FILE: ../../../third_party/icu/source/data/locales/de_CH.txt +FILE: ../../../third_party/icu/source/data/locales/de_DE.txt +FILE: ../../../third_party/icu/source/data/locales/de_IT.txt +FILE: ../../../third_party/icu/source/data/locales/de_LI.txt +FILE: ../../../third_party/icu/source/data/locales/de_LU.txt +FILE: ../../../third_party/icu/source/data/locales/dje.txt +FILE: ../../../third_party/icu/source/data/locales/dje_NE.txt +FILE: ../../../third_party/icu/source/data/locales/doi.txt +FILE: ../../../third_party/icu/source/data/locales/doi_IN.txt +FILE: ../../../third_party/icu/source/data/locales/dsb.txt +FILE: ../../../third_party/icu/source/data/locales/dsb_DE.txt +FILE: ../../../third_party/icu/source/data/locales/dua.txt +FILE: ../../../third_party/icu/source/data/locales/dua_CM.txt +FILE: ../../../third_party/icu/source/data/locales/dyo.txt +FILE: ../../../third_party/icu/source/data/locales/dyo_SN.txt +FILE: ../../../third_party/icu/source/data/locales/dz.txt +FILE: ../../../third_party/icu/source/data/locales/dz_BT.txt +FILE: ../../../third_party/icu/source/data/locales/ebu.txt +FILE: ../../../third_party/icu/source/data/locales/ebu_KE.txt +FILE: ../../../third_party/icu/source/data/locales/ee.txt +FILE: ../../../third_party/icu/source/data/locales/ee_GH.txt +FILE: ../../../third_party/icu/source/data/locales/ee_TG.txt +FILE: ../../../third_party/icu/source/data/locales/el.txt +FILE: ../../../third_party/icu/source/data/locales/el_CY.txt +FILE: ../../../third_party/icu/source/data/locales/el_GR.txt +FILE: ../../../third_party/icu/source/data/locales/en.txt +FILE: ../../../third_party/icu/source/data/locales/en_001.txt +FILE: ../../../third_party/icu/source/data/locales/en_150.txt +FILE: ../../../third_party/icu/source/data/locales/en_AE.txt +FILE: ../../../third_party/icu/source/data/locales/en_AG.txt +FILE: ../../../third_party/icu/source/data/locales/en_AI.txt +FILE: ../../../third_party/icu/source/data/locales/en_AS.txt +FILE: ../../../third_party/icu/source/data/locales/en_AT.txt +FILE: ../../../third_party/icu/source/data/locales/en_AU.txt +FILE: ../../../third_party/icu/source/data/locales/en_BB.txt +FILE: ../../../third_party/icu/source/data/locales/en_BE.txt +FILE: ../../../third_party/icu/source/data/locales/en_BI.txt +FILE: ../../../third_party/icu/source/data/locales/en_BM.txt +FILE: ../../../third_party/icu/source/data/locales/en_BS.txt +FILE: ../../../third_party/icu/source/data/locales/en_BW.txt +FILE: ../../../third_party/icu/source/data/locales/en_BZ.txt +FILE: ../../../third_party/icu/source/data/locales/en_CA.txt +FILE: ../../../third_party/icu/source/data/locales/en_CC.txt +FILE: ../../../third_party/icu/source/data/locales/en_CH.txt +FILE: ../../../third_party/icu/source/data/locales/en_CK.txt +FILE: ../../../third_party/icu/source/data/locales/en_CM.txt +FILE: ../../../third_party/icu/source/data/locales/en_CX.txt +FILE: ../../../third_party/icu/source/data/locales/en_CY.txt +FILE: ../../../third_party/icu/source/data/locales/en_DE.txt +FILE: ../../../third_party/icu/source/data/locales/en_DG.txt +FILE: ../../../third_party/icu/source/data/locales/en_DK.txt +FILE: ../../../third_party/icu/source/data/locales/en_DM.txt +FILE: ../../../third_party/icu/source/data/locales/en_ER.txt +FILE: ../../../third_party/icu/source/data/locales/en_FI.txt +FILE: ../../../third_party/icu/source/data/locales/en_FJ.txt +FILE: ../../../third_party/icu/source/data/locales/en_FK.txt +FILE: ../../../third_party/icu/source/data/locales/en_FM.txt +FILE: ../../../third_party/icu/source/data/locales/en_GB.txt +FILE: ../../../third_party/icu/source/data/locales/en_GD.txt +FILE: ../../../third_party/icu/source/data/locales/en_GG.txt +FILE: ../../../third_party/icu/source/data/locales/en_GH.txt +FILE: ../../../third_party/icu/source/data/locales/en_GI.txt +FILE: ../../../third_party/icu/source/data/locales/en_GM.txt +FILE: ../../../third_party/icu/source/data/locales/en_GU.txt +FILE: ../../../third_party/icu/source/data/locales/en_GY.txt +FILE: ../../../third_party/icu/source/data/locales/en_HK.txt +FILE: ../../../third_party/icu/source/data/locales/en_IE.txt +FILE: ../../../third_party/icu/source/data/locales/en_IL.txt +FILE: ../../../third_party/icu/source/data/locales/en_IM.txt +FILE: ../../../third_party/icu/source/data/locales/en_IN.txt +FILE: ../../../third_party/icu/source/data/locales/en_IO.txt +FILE: ../../../third_party/icu/source/data/locales/en_JE.txt +FILE: ../../../third_party/icu/source/data/locales/en_JM.txt +FILE: ../../../third_party/icu/source/data/locales/en_KE.txt +FILE: ../../../third_party/icu/source/data/locales/en_KI.txt +FILE: ../../../third_party/icu/source/data/locales/en_KN.txt +FILE: ../../../third_party/icu/source/data/locales/en_KY.txt +FILE: ../../../third_party/icu/source/data/locales/en_LC.txt +FILE: ../../../third_party/icu/source/data/locales/en_LR.txt +FILE: ../../../third_party/icu/source/data/locales/en_LS.txt +FILE: ../../../third_party/icu/source/data/locales/en_MG.txt +FILE: ../../../third_party/icu/source/data/locales/en_MH.txt +FILE: ../../../third_party/icu/source/data/locales/en_MO.txt +FILE: ../../../third_party/icu/source/data/locales/en_MP.txt +FILE: ../../../third_party/icu/source/data/locales/en_MS.txt +FILE: ../../../third_party/icu/source/data/locales/en_MT.txt +FILE: ../../../third_party/icu/source/data/locales/en_MU.txt +FILE: ../../../third_party/icu/source/data/locales/en_MV.txt +FILE: ../../../third_party/icu/source/data/locales/en_MW.txt +FILE: ../../../third_party/icu/source/data/locales/en_MY.txt +FILE: ../../../third_party/icu/source/data/locales/en_NA.txt +FILE: ../../../third_party/icu/source/data/locales/en_NF.txt +FILE: ../../../third_party/icu/source/data/locales/en_NG.txt +FILE: ../../../third_party/icu/source/data/locales/en_NH.txt +FILE: ../../../third_party/icu/source/data/locales/en_NL.txt +FILE: ../../../third_party/icu/source/data/locales/en_NR.txt +FILE: ../../../third_party/icu/source/data/locales/en_NU.txt +FILE: ../../../third_party/icu/source/data/locales/en_NZ.txt +FILE: ../../../third_party/icu/source/data/locales/en_PG.txt +FILE: ../../../third_party/icu/source/data/locales/en_PH.txt +FILE: ../../../third_party/icu/source/data/locales/en_PK.txt +FILE: ../../../third_party/icu/source/data/locales/en_PN.txt +FILE: ../../../third_party/icu/source/data/locales/en_PR.txt +FILE: ../../../third_party/icu/source/data/locales/en_PW.txt +FILE: ../../../third_party/icu/source/data/locales/en_RH.txt +FILE: ../../../third_party/icu/source/data/locales/en_RW.txt +FILE: ../../../third_party/icu/source/data/locales/en_SB.txt +FILE: ../../../third_party/icu/source/data/locales/en_SC.txt +FILE: ../../../third_party/icu/source/data/locales/en_SD.txt +FILE: ../../../third_party/icu/source/data/locales/en_SE.txt +FILE: ../../../third_party/icu/source/data/locales/en_SG.txt +FILE: ../../../third_party/icu/source/data/locales/en_SH.txt +FILE: ../../../third_party/icu/source/data/locales/en_SI.txt +FILE: ../../../third_party/icu/source/data/locales/en_SL.txt +FILE: ../../../third_party/icu/source/data/locales/en_SS.txt +FILE: ../../../third_party/icu/source/data/locales/en_SX.txt +FILE: ../../../third_party/icu/source/data/locales/en_SZ.txt +FILE: ../../../third_party/icu/source/data/locales/en_TC.txt +FILE: ../../../third_party/icu/source/data/locales/en_TK.txt +FILE: ../../../third_party/icu/source/data/locales/en_TO.txt +FILE: ../../../third_party/icu/source/data/locales/en_TT.txt +FILE: ../../../third_party/icu/source/data/locales/en_TV.txt +FILE: ../../../third_party/icu/source/data/locales/en_TZ.txt +FILE: ../../../third_party/icu/source/data/locales/en_UG.txt +FILE: ../../../third_party/icu/source/data/locales/en_UM.txt +FILE: ../../../third_party/icu/source/data/locales/en_US.txt +FILE: ../../../third_party/icu/source/data/locales/en_US_POSIX.txt +FILE: ../../../third_party/icu/source/data/locales/en_VC.txt +FILE: ../../../third_party/icu/source/data/locales/en_VG.txt +FILE: ../../../third_party/icu/source/data/locales/en_VI.txt +FILE: ../../../third_party/icu/source/data/locales/en_VU.txt +FILE: ../../../third_party/icu/source/data/locales/en_WS.txt +FILE: ../../../third_party/icu/source/data/locales/en_ZA.txt +FILE: ../../../third_party/icu/source/data/locales/en_ZM.txt +FILE: ../../../third_party/icu/source/data/locales/en_ZW.txt +FILE: ../../../third_party/icu/source/data/locales/eo.txt +FILE: ../../../third_party/icu/source/data/locales/eo_001.txt +FILE: ../../../third_party/icu/source/data/locales/es.txt +FILE: ../../../third_party/icu/source/data/locales/es_419.txt +FILE: ../../../third_party/icu/source/data/locales/es_AR.txt +FILE: ../../../third_party/icu/source/data/locales/es_BO.txt +FILE: ../../../third_party/icu/source/data/locales/es_BR.txt +FILE: ../../../third_party/icu/source/data/locales/es_BZ.txt +FILE: ../../../third_party/icu/source/data/locales/es_CL.txt +FILE: ../../../third_party/icu/source/data/locales/es_CO.txt +FILE: ../../../third_party/icu/source/data/locales/es_CR.txt +FILE: ../../../third_party/icu/source/data/locales/es_CU.txt +FILE: ../../../third_party/icu/source/data/locales/es_DO.txt +FILE: ../../../third_party/icu/source/data/locales/es_EA.txt +FILE: ../../../third_party/icu/source/data/locales/es_EC.txt +FILE: ../../../third_party/icu/source/data/locales/es_ES.txt +FILE: ../../../third_party/icu/source/data/locales/es_GQ.txt +FILE: ../../../third_party/icu/source/data/locales/es_GT.txt +FILE: ../../../third_party/icu/source/data/locales/es_HN.txt +FILE: ../../../third_party/icu/source/data/locales/es_IC.txt +FILE: ../../../third_party/icu/source/data/locales/es_MX.txt +FILE: ../../../third_party/icu/source/data/locales/es_NI.txt +FILE: ../../../third_party/icu/source/data/locales/es_PA.txt +FILE: ../../../third_party/icu/source/data/locales/es_PE.txt +FILE: ../../../third_party/icu/source/data/locales/es_PH.txt +FILE: ../../../third_party/icu/source/data/locales/es_PR.txt +FILE: ../../../third_party/icu/source/data/locales/es_PY.txt +FILE: ../../../third_party/icu/source/data/locales/es_SV.txt +FILE: ../../../third_party/icu/source/data/locales/es_US.txt +FILE: ../../../third_party/icu/source/data/locales/es_UY.txt +FILE: ../../../third_party/icu/source/data/locales/es_VE.txt +FILE: ../../../third_party/icu/source/data/locales/et.txt +FILE: ../../../third_party/icu/source/data/locales/et_EE.txt +FILE: ../../../third_party/icu/source/data/locales/eu.txt +FILE: ../../../third_party/icu/source/data/locales/eu_ES.txt +FILE: ../../../third_party/icu/source/data/locales/ewo.txt +FILE: ../../../third_party/icu/source/data/locales/ewo_CM.txt +FILE: ../../../third_party/icu/source/data/locales/fa.txt +FILE: ../../../third_party/icu/source/data/locales/fa_AF.txt +FILE: ../../../third_party/icu/source/data/locales/fa_IR.txt +FILE: ../../../third_party/icu/source/data/locales/ff.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Adlm.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Adlm_BF.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Adlm_CM.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Adlm_GH.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Adlm_GM.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Adlm_GN.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Adlm_GW.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Adlm_LR.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Adlm_MR.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Adlm_NE.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Adlm_NG.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Adlm_SL.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Adlm_SN.txt +FILE: ../../../third_party/icu/source/data/locales/ff_CM.txt +FILE: ../../../third_party/icu/source/data/locales/ff_GN.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Latn.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Latn_BF.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Latn_CM.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Latn_GH.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Latn_GM.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Latn_GN.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Latn_GW.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Latn_LR.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Latn_MR.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Latn_NE.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Latn_NG.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Latn_SL.txt +FILE: ../../../third_party/icu/source/data/locales/ff_Latn_SN.txt +FILE: ../../../third_party/icu/source/data/locales/ff_MR.txt +FILE: ../../../third_party/icu/source/data/locales/ff_SN.txt +FILE: ../../../third_party/icu/source/data/locales/fi.txt +FILE: ../../../third_party/icu/source/data/locales/fi_FI.txt +FILE: ../../../third_party/icu/source/data/locales/fil.txt +FILE: ../../../third_party/icu/source/data/locales/fil_PH.txt +FILE: ../../../third_party/icu/source/data/locales/fo.txt +FILE: ../../../third_party/icu/source/data/locales/fo_DK.txt +FILE: ../../../third_party/icu/source/data/locales/fo_FO.txt +FILE: ../../../third_party/icu/source/data/locales/fr.txt +FILE: ../../../third_party/icu/source/data/locales/fr_BE.txt +FILE: ../../../third_party/icu/source/data/locales/fr_BF.txt +FILE: ../../../third_party/icu/source/data/locales/fr_BI.txt +FILE: ../../../third_party/icu/source/data/locales/fr_BJ.txt +FILE: ../../../third_party/icu/source/data/locales/fr_BL.txt +FILE: ../../../third_party/icu/source/data/locales/fr_CA.txt +FILE: ../../../third_party/icu/source/data/locales/fr_CD.txt +FILE: ../../../third_party/icu/source/data/locales/fr_CF.txt +FILE: ../../../third_party/icu/source/data/locales/fr_CG.txt +FILE: ../../../third_party/icu/source/data/locales/fr_CH.txt +FILE: ../../../third_party/icu/source/data/locales/fr_CI.txt +FILE: ../../../third_party/icu/source/data/locales/fr_CM.txt +FILE: ../../../third_party/icu/source/data/locales/fr_DJ.txt +FILE: ../../../third_party/icu/source/data/locales/fr_DZ.txt +FILE: ../../../third_party/icu/source/data/locales/fr_FR.txt +FILE: ../../../third_party/icu/source/data/locales/fr_GA.txt +FILE: ../../../third_party/icu/source/data/locales/fr_GF.txt +FILE: ../../../third_party/icu/source/data/locales/fr_GN.txt +FILE: ../../../third_party/icu/source/data/locales/fr_GP.txt +FILE: ../../../third_party/icu/source/data/locales/fr_GQ.txt +FILE: ../../../third_party/icu/source/data/locales/fr_HT.txt +FILE: ../../../third_party/icu/source/data/locales/fr_KM.txt +FILE: ../../../third_party/icu/source/data/locales/fr_LU.txt +FILE: ../../../third_party/icu/source/data/locales/fr_MA.txt +FILE: ../../../third_party/icu/source/data/locales/fr_MC.txt +FILE: ../../../third_party/icu/source/data/locales/fr_MF.txt +FILE: ../../../third_party/icu/source/data/locales/fr_MG.txt +FILE: ../../../third_party/icu/source/data/locales/fr_ML.txt +FILE: ../../../third_party/icu/source/data/locales/fr_MQ.txt +FILE: ../../../third_party/icu/source/data/locales/fr_MR.txt +FILE: ../../../third_party/icu/source/data/locales/fr_MU.txt +FILE: ../../../third_party/icu/source/data/locales/fr_NC.txt +FILE: ../../../third_party/icu/source/data/locales/fr_NE.txt +FILE: ../../../third_party/icu/source/data/locales/fr_PF.txt +FILE: ../../../third_party/icu/source/data/locales/fr_PM.txt +FILE: ../../../third_party/icu/source/data/locales/fr_RE.txt +FILE: ../../../third_party/icu/source/data/locales/fr_RW.txt +FILE: ../../../third_party/icu/source/data/locales/fr_SC.txt +FILE: ../../../third_party/icu/source/data/locales/fr_SN.txt +FILE: ../../../third_party/icu/source/data/locales/fr_SY.txt +FILE: ../../../third_party/icu/source/data/locales/fr_TD.txt +FILE: ../../../third_party/icu/source/data/locales/fr_TG.txt +FILE: ../../../third_party/icu/source/data/locales/fr_TN.txt +FILE: ../../../third_party/icu/source/data/locales/fr_VU.txt +FILE: ../../../third_party/icu/source/data/locales/fr_WF.txt +FILE: ../../../third_party/icu/source/data/locales/fr_YT.txt +FILE: ../../../third_party/icu/source/data/locales/fur.txt +FILE: ../../../third_party/icu/source/data/locales/fur_IT.txt +FILE: ../../../third_party/icu/source/data/locales/fy.txt +FILE: ../../../third_party/icu/source/data/locales/fy_NL.txt +FILE: ../../../third_party/icu/source/data/locales/ga.txt +FILE: ../../../third_party/icu/source/data/locales/ga_GB.txt +FILE: ../../../third_party/icu/source/data/locales/ga_IE.txt +FILE: ../../../third_party/icu/source/data/locales/gd.txt +FILE: ../../../third_party/icu/source/data/locales/gd_GB.txt +FILE: ../../../third_party/icu/source/data/locales/gl.txt +FILE: ../../../third_party/icu/source/data/locales/gl_ES.txt +FILE: ../../../third_party/icu/source/data/locales/gsw.txt +FILE: ../../../third_party/icu/source/data/locales/gsw_CH.txt +FILE: ../../../third_party/icu/source/data/locales/gsw_FR.txt +FILE: ../../../third_party/icu/source/data/locales/gsw_LI.txt +FILE: ../../../third_party/icu/source/data/locales/gu.txt +FILE: ../../../third_party/icu/source/data/locales/gu_IN.txt +FILE: ../../../third_party/icu/source/data/locales/guz.txt +FILE: ../../../third_party/icu/source/data/locales/guz_KE.txt +FILE: ../../../third_party/icu/source/data/locales/gv.txt +FILE: ../../../third_party/icu/source/data/locales/gv_IM.txt +FILE: ../../../third_party/icu/source/data/locales/ha.txt +FILE: ../../../third_party/icu/source/data/locales/ha_GH.txt +FILE: ../../../third_party/icu/source/data/locales/ha_NE.txt +FILE: ../../../third_party/icu/source/data/locales/ha_NG.txt +FILE: ../../../third_party/icu/source/data/locales/haw.txt +FILE: ../../../third_party/icu/source/data/locales/haw_US.txt +FILE: ../../../third_party/icu/source/data/locales/he.txt +FILE: ../../../third_party/icu/source/data/locales/he_IL.txt +FILE: ../../../third_party/icu/source/data/locales/hi.txt +FILE: ../../../third_party/icu/source/data/locales/hi_IN.txt +FILE: ../../../third_party/icu/source/data/locales/hi_Latn.txt +FILE: ../../../third_party/icu/source/data/locales/hi_Latn_IN.txt +FILE: ../../../third_party/icu/source/data/locales/hr.txt +FILE: ../../../third_party/icu/source/data/locales/hr_BA.txt +FILE: ../../../third_party/icu/source/data/locales/hr_HR.txt +FILE: ../../../third_party/icu/source/data/locales/hsb.txt +FILE: ../../../third_party/icu/source/data/locales/hsb_DE.txt +FILE: ../../../third_party/icu/source/data/locales/hu.txt +FILE: ../../../third_party/icu/source/data/locales/hu_HU.txt +FILE: ../../../third_party/icu/source/data/locales/hy.txt +FILE: ../../../third_party/icu/source/data/locales/hy_AM.txt +FILE: ../../../third_party/icu/source/data/locales/ia.txt +FILE: ../../../third_party/icu/source/data/locales/ia_001.txt +FILE: ../../../third_party/icu/source/data/locales/id.txt +FILE: ../../../third_party/icu/source/data/locales/id_ID.txt +FILE: ../../../third_party/icu/source/data/locales/ig.txt +FILE: ../../../third_party/icu/source/data/locales/ig_NG.txt +FILE: ../../../third_party/icu/source/data/locales/ii.txt +FILE: ../../../third_party/icu/source/data/locales/ii_CN.txt +FILE: ../../../third_party/icu/source/data/locales/in.txt +FILE: ../../../third_party/icu/source/data/locales/in_ID.txt +FILE: ../../../third_party/icu/source/data/locales/is.txt +FILE: ../../../third_party/icu/source/data/locales/is_IS.txt +FILE: ../../../third_party/icu/source/data/locales/it.txt +FILE: ../../../third_party/icu/source/data/locales/it_CH.txt +FILE: ../../../third_party/icu/source/data/locales/it_IT.txt +FILE: ../../../third_party/icu/source/data/locales/it_SM.txt +FILE: ../../../third_party/icu/source/data/locales/it_VA.txt +FILE: ../../../third_party/icu/source/data/locales/iw.txt +FILE: ../../../third_party/icu/source/data/locales/iw_IL.txt +FILE: ../../../third_party/icu/source/data/locales/ja.txt +FILE: ../../../third_party/icu/source/data/locales/ja_JP.txt +FILE: ../../../third_party/icu/source/data/locales/ja_JP_TRADITIONAL.txt +FILE: ../../../third_party/icu/source/data/locales/jgo.txt +FILE: ../../../third_party/icu/source/data/locales/jgo_CM.txt +FILE: ../../../third_party/icu/source/data/locales/jmc.txt +FILE: ../../../third_party/icu/source/data/locales/jmc_TZ.txt +FILE: ../../../third_party/icu/source/data/locales/jv.txt +FILE: ../../../third_party/icu/source/data/locales/jv_ID.txt +FILE: ../../../third_party/icu/source/data/locales/ka.txt +FILE: ../../../third_party/icu/source/data/locales/ka_GE.txt +FILE: ../../../third_party/icu/source/data/locales/kab.txt +FILE: ../../../third_party/icu/source/data/locales/kab_DZ.txt +FILE: ../../../third_party/icu/source/data/locales/kam.txt +FILE: ../../../third_party/icu/source/data/locales/kam_KE.txt +FILE: ../../../third_party/icu/source/data/locales/kde.txt +FILE: ../../../third_party/icu/source/data/locales/kde_TZ.txt +FILE: ../../../third_party/icu/source/data/locales/kea.txt +FILE: ../../../third_party/icu/source/data/locales/kea_CV.txt +FILE: ../../../third_party/icu/source/data/locales/kgp.txt +FILE: ../../../third_party/icu/source/data/locales/kgp_BR.txt +FILE: ../../../third_party/icu/source/data/locales/khq.txt +FILE: ../../../third_party/icu/source/data/locales/khq_ML.txt +FILE: ../../../third_party/icu/source/data/locales/ki.txt +FILE: ../../../third_party/icu/source/data/locales/ki_KE.txt +FILE: ../../../third_party/icu/source/data/locales/kk.txt +FILE: ../../../third_party/icu/source/data/locales/kk_KZ.txt +FILE: ../../../third_party/icu/source/data/locales/kkj.txt +FILE: ../../../third_party/icu/source/data/locales/kkj_CM.txt +FILE: ../../../third_party/icu/source/data/locales/kl.txt +FILE: ../../../third_party/icu/source/data/locales/kl_GL.txt +FILE: ../../../third_party/icu/source/data/locales/kln.txt +FILE: ../../../third_party/icu/source/data/locales/kln_KE.txt +FILE: ../../../third_party/icu/source/data/locales/km.txt +FILE: ../../../third_party/icu/source/data/locales/km_KH.txt +FILE: ../../../third_party/icu/source/data/locales/kn.txt +FILE: ../../../third_party/icu/source/data/locales/kn_IN.txt +FILE: ../../../third_party/icu/source/data/locales/ko.txt +FILE: ../../../third_party/icu/source/data/locales/ko_KP.txt +FILE: ../../../third_party/icu/source/data/locales/ko_KR.txt +FILE: ../../../third_party/icu/source/data/locales/kok.txt +FILE: ../../../third_party/icu/source/data/locales/kok_IN.txt +FILE: ../../../third_party/icu/source/data/locales/ks.txt +FILE: ../../../third_party/icu/source/data/locales/ks_Arab.txt +FILE: ../../../third_party/icu/source/data/locales/ks_Arab_IN.txt +FILE: ../../../third_party/icu/source/data/locales/ks_Deva.txt +FILE: ../../../third_party/icu/source/data/locales/ks_Deva_IN.txt +FILE: ../../../third_party/icu/source/data/locales/ks_IN.txt +FILE: ../../../third_party/icu/source/data/locales/ksb.txt +FILE: ../../../third_party/icu/source/data/locales/ksb_TZ.txt +FILE: ../../../third_party/icu/source/data/locales/ksf.txt +FILE: ../../../third_party/icu/source/data/locales/ksf_CM.txt +FILE: ../../../third_party/icu/source/data/locales/ksh.txt +FILE: ../../../third_party/icu/source/data/locales/ksh_DE.txt +FILE: ../../../third_party/icu/source/data/locales/ku_TR.txt +FILE: ../../../third_party/icu/source/data/locales/kw.txt +FILE: ../../../third_party/icu/source/data/locales/kw_GB.txt +FILE: ../../../third_party/icu/source/data/locales/ky.txt +FILE: ../../../third_party/icu/source/data/locales/ky_KG.txt +FILE: ../../../third_party/icu/source/data/locales/lag.txt +FILE: ../../../third_party/icu/source/data/locales/lag_TZ.txt +FILE: ../../../third_party/icu/source/data/locales/lb.txt +FILE: ../../../third_party/icu/source/data/locales/lb_LU.txt +FILE: ../../../third_party/icu/source/data/locales/lg.txt +FILE: ../../../third_party/icu/source/data/locales/lg_UG.txt +FILE: ../../../third_party/icu/source/data/locales/lkt.txt +FILE: ../../../third_party/icu/source/data/locales/lkt_US.txt +FILE: ../../../third_party/icu/source/data/locales/ln.txt +FILE: ../../../third_party/icu/source/data/locales/ln_AO.txt +FILE: ../../../third_party/icu/source/data/locales/ln_CD.txt +FILE: ../../../third_party/icu/source/data/locales/ln_CF.txt +FILE: ../../../third_party/icu/source/data/locales/ln_CG.txt +FILE: ../../../third_party/icu/source/data/locales/lo.txt +FILE: ../../../third_party/icu/source/data/locales/lo_LA.txt +FILE: ../../../third_party/icu/source/data/locales/lrc.txt +FILE: ../../../third_party/icu/source/data/locales/lrc_IQ.txt +FILE: ../../../third_party/icu/source/data/locales/lrc_IR.txt +FILE: ../../../third_party/icu/source/data/locales/lt.txt +FILE: ../../../third_party/icu/source/data/locales/lt_LT.txt +FILE: ../../../third_party/icu/source/data/locales/lu.txt +FILE: ../../../third_party/icu/source/data/locales/lu_CD.txt +FILE: ../../../third_party/icu/source/data/locales/luo.txt +FILE: ../../../third_party/icu/source/data/locales/luo_KE.txt +FILE: ../../../third_party/icu/source/data/locales/luy.txt +FILE: ../../../third_party/icu/source/data/locales/luy_KE.txt +FILE: ../../../third_party/icu/source/data/locales/lv.txt +FILE: ../../../third_party/icu/source/data/locales/lv_LV.txt +FILE: ../../../third_party/icu/source/data/locales/mai.txt +FILE: ../../../third_party/icu/source/data/locales/mai_IN.txt +FILE: ../../../third_party/icu/source/data/locales/mas.txt +FILE: ../../../third_party/icu/source/data/locales/mas_KE.txt +FILE: ../../../third_party/icu/source/data/locales/mas_TZ.txt +FILE: ../../../third_party/icu/source/data/locales/mer.txt +FILE: ../../../third_party/icu/source/data/locales/mer_KE.txt +FILE: ../../../third_party/icu/source/data/locales/mfe.txt +FILE: ../../../third_party/icu/source/data/locales/mfe_MU.txt +FILE: ../../../third_party/icu/source/data/locales/mg.txt +FILE: ../../../third_party/icu/source/data/locales/mg_MG.txt +FILE: ../../../third_party/icu/source/data/locales/mgh.txt +FILE: ../../../third_party/icu/source/data/locales/mgh_MZ.txt +FILE: ../../../third_party/icu/source/data/locales/mgo.txt +FILE: ../../../third_party/icu/source/data/locales/mgo_CM.txt +FILE: ../../../third_party/icu/source/data/locales/mi.txt +FILE: ../../../third_party/icu/source/data/locales/mi_NZ.txt +FILE: ../../../third_party/icu/source/data/locales/mk.txt +FILE: ../../../third_party/icu/source/data/locales/mk_MK.txt +FILE: ../../../third_party/icu/source/data/locales/ml.txt +FILE: ../../../third_party/icu/source/data/locales/ml_IN.txt +FILE: ../../../third_party/icu/source/data/locales/mn.txt +FILE: ../../../third_party/icu/source/data/locales/mn_MN.txt +FILE: ../../../third_party/icu/source/data/locales/mni.txt +FILE: ../../../third_party/icu/source/data/locales/mni_Beng.txt +FILE: ../../../third_party/icu/source/data/locales/mni_Beng_IN.txt +FILE: ../../../third_party/icu/source/data/locales/mni_IN.txt +FILE: ../../../third_party/icu/source/data/locales/mo.txt +FILE: ../../../third_party/icu/source/data/locales/mr.txt +FILE: ../../../third_party/icu/source/data/locales/mr_IN.txt +FILE: ../../../third_party/icu/source/data/locales/ms.txt +FILE: ../../../third_party/icu/source/data/locales/ms_BN.txt +FILE: ../../../third_party/icu/source/data/locales/ms_ID.txt +FILE: ../../../third_party/icu/source/data/locales/ms_MY.txt +FILE: ../../../third_party/icu/source/data/locales/ms_SG.txt +FILE: ../../../third_party/icu/source/data/locales/mt.txt +FILE: ../../../third_party/icu/source/data/locales/mt_MT.txt +FILE: ../../../third_party/icu/source/data/locales/mua.txt +FILE: ../../../third_party/icu/source/data/locales/mua_CM.txt +FILE: ../../../third_party/icu/source/data/locales/my.txt +FILE: ../../../third_party/icu/source/data/locales/my_MM.txt +FILE: ../../../third_party/icu/source/data/locales/mzn.txt +FILE: ../../../third_party/icu/source/data/locales/mzn_IR.txt +FILE: ../../../third_party/icu/source/data/locales/naq.txt +FILE: ../../../third_party/icu/source/data/locales/naq_NA.txt +FILE: ../../../third_party/icu/source/data/locales/nb.txt +FILE: ../../../third_party/icu/source/data/locales/nb_NO.txt +FILE: ../../../third_party/icu/source/data/locales/nb_SJ.txt +FILE: ../../../third_party/icu/source/data/locales/nd.txt +FILE: ../../../third_party/icu/source/data/locales/nd_ZW.txt +FILE: ../../../third_party/icu/source/data/locales/ne.txt +FILE: ../../../third_party/icu/source/data/locales/ne_IN.txt +FILE: ../../../third_party/icu/source/data/locales/ne_NP.txt +FILE: ../../../third_party/icu/source/data/locales/nl.txt +FILE: ../../../third_party/icu/source/data/locales/nl_AW.txt +FILE: ../../../third_party/icu/source/data/locales/nl_BE.txt +FILE: ../../../third_party/icu/source/data/locales/nl_BQ.txt +FILE: ../../../third_party/icu/source/data/locales/nl_CW.txt +FILE: ../../../third_party/icu/source/data/locales/nl_NL.txt +FILE: ../../../third_party/icu/source/data/locales/nl_SR.txt +FILE: ../../../third_party/icu/source/data/locales/nl_SX.txt +FILE: ../../../third_party/icu/source/data/locales/nmg.txt +FILE: ../../../third_party/icu/source/data/locales/nmg_CM.txt +FILE: ../../../third_party/icu/source/data/locales/nn.txt +FILE: ../../../third_party/icu/source/data/locales/nn_NO.txt +FILE: ../../../third_party/icu/source/data/locales/nnh.txt +FILE: ../../../third_party/icu/source/data/locales/nnh_CM.txt +FILE: ../../../third_party/icu/source/data/locales/no.txt +FILE: ../../../third_party/icu/source/data/locales/no_NO.txt +FILE: ../../../third_party/icu/source/data/locales/no_NO_NY.txt +FILE: ../../../third_party/icu/source/data/locales/nus.txt +FILE: ../../../third_party/icu/source/data/locales/nus_SS.txt +FILE: ../../../third_party/icu/source/data/locales/nyn.txt +FILE: ../../../third_party/icu/source/data/locales/nyn_UG.txt +FILE: ../../../third_party/icu/source/data/locales/om.txt +FILE: ../../../third_party/icu/source/data/locales/om_ET.txt +FILE: ../../../third_party/icu/source/data/locales/om_KE.txt +FILE: ../../../third_party/icu/source/data/locales/or.txt +FILE: ../../../third_party/icu/source/data/locales/or_IN.txt +FILE: ../../../third_party/icu/source/data/locales/os.txt +FILE: ../../../third_party/icu/source/data/locales/os_GE.txt +FILE: ../../../third_party/icu/source/data/locales/os_RU.txt +FILE: ../../../third_party/icu/source/data/locales/pa.txt +FILE: ../../../third_party/icu/source/data/locales/pa_Arab.txt +FILE: ../../../third_party/icu/source/data/locales/pa_Arab_PK.txt +FILE: ../../../third_party/icu/source/data/locales/pa_Guru.txt +FILE: ../../../third_party/icu/source/data/locales/pa_Guru_IN.txt +FILE: ../../../third_party/icu/source/data/locales/pa_IN.txt +FILE: ../../../third_party/icu/source/data/locales/pa_PK.txt +FILE: ../../../third_party/icu/source/data/locales/pcm.txt +FILE: ../../../third_party/icu/source/data/locales/pcm_NG.txt +FILE: ../../../third_party/icu/source/data/locales/pl.txt +FILE: ../../../third_party/icu/source/data/locales/pl_PL.txt +FILE: ../../../third_party/icu/source/data/locales/ps.txt +FILE: ../../../third_party/icu/source/data/locales/ps_AF.txt +FILE: ../../../third_party/icu/source/data/locales/ps_PK.txt +FILE: ../../../third_party/icu/source/data/locales/pt.txt +FILE: ../../../third_party/icu/source/data/locales/pt_AO.txt +FILE: ../../../third_party/icu/source/data/locales/pt_BR.txt +FILE: ../../../third_party/icu/source/data/locales/pt_CH.txt +FILE: ../../../third_party/icu/source/data/locales/pt_CV.txt +FILE: ../../../third_party/icu/source/data/locales/pt_GQ.txt +FILE: ../../../third_party/icu/source/data/locales/pt_GW.txt +FILE: ../../../third_party/icu/source/data/locales/pt_LU.txt +FILE: ../../../third_party/icu/source/data/locales/pt_MO.txt +FILE: ../../../third_party/icu/source/data/locales/pt_MZ.txt +FILE: ../../../third_party/icu/source/data/locales/pt_PT.txt +FILE: ../../../third_party/icu/source/data/locales/pt_ST.txt +FILE: ../../../third_party/icu/source/data/locales/pt_TL.txt +FILE: ../../../third_party/icu/source/data/locales/qu.txt +FILE: ../../../third_party/icu/source/data/locales/qu_BO.txt +FILE: ../../../third_party/icu/source/data/locales/qu_EC.txt +FILE: ../../../third_party/icu/source/data/locales/qu_PE.txt +FILE: ../../../third_party/icu/source/data/locales/raj.txt +FILE: ../../../third_party/icu/source/data/locales/raj_IN.txt +FILE: ../../../third_party/icu/source/data/locales/rm.txt +FILE: ../../../third_party/icu/source/data/locales/rm_CH.txt +FILE: ../../../third_party/icu/source/data/locales/rn.txt +FILE: ../../../third_party/icu/source/data/locales/rn_BI.txt +FILE: ../../../third_party/icu/source/data/locales/ro.txt +FILE: ../../../third_party/icu/source/data/locales/ro_MD.txt +FILE: ../../../third_party/icu/source/data/locales/ro_RO.txt +FILE: ../../../third_party/icu/source/data/locales/rof.txt +FILE: ../../../third_party/icu/source/data/locales/rof_TZ.txt +FILE: ../../../third_party/icu/source/data/locales/root.txt +FILE: ../../../third_party/icu/source/data/locales/ru.txt +FILE: ../../../third_party/icu/source/data/locales/ru_BY.txt +FILE: ../../../third_party/icu/source/data/locales/ru_KG.txt +FILE: ../../../third_party/icu/source/data/locales/ru_KZ.txt +FILE: ../../../third_party/icu/source/data/locales/ru_MD.txt +FILE: ../../../third_party/icu/source/data/locales/ru_RU.txt +FILE: ../../../third_party/icu/source/data/locales/ru_UA.txt +FILE: ../../../third_party/icu/source/data/locales/rw.txt +FILE: ../../../third_party/icu/source/data/locales/rw_RW.txt +FILE: ../../../third_party/icu/source/data/locales/rwk.txt +FILE: ../../../third_party/icu/source/data/locales/rwk_TZ.txt +FILE: ../../../third_party/icu/source/data/locales/sa.txt +FILE: ../../../third_party/icu/source/data/locales/sa_IN.txt +FILE: ../../../third_party/icu/source/data/locales/sah.txt +FILE: ../../../third_party/icu/source/data/locales/sah_RU.txt +FILE: ../../../third_party/icu/source/data/locales/saq.txt +FILE: ../../../third_party/icu/source/data/locales/saq_KE.txt +FILE: ../../../third_party/icu/source/data/locales/sat.txt +FILE: ../../../third_party/icu/source/data/locales/sat_IN.txt +FILE: ../../../third_party/icu/source/data/locales/sat_Olck.txt +FILE: ../../../third_party/icu/source/data/locales/sat_Olck_IN.txt +FILE: ../../../third_party/icu/source/data/locales/sbp.txt +FILE: ../../../third_party/icu/source/data/locales/sbp_TZ.txt +FILE: ../../../third_party/icu/source/data/locales/sc.txt +FILE: ../../../third_party/icu/source/data/locales/sc_IT.txt +FILE: ../../../third_party/icu/source/data/locales/sd.txt +FILE: ../../../third_party/icu/source/data/locales/sd_Arab.txt +FILE: ../../../third_party/icu/source/data/locales/sd_Arab_PK.txt +FILE: ../../../third_party/icu/source/data/locales/sd_Deva.txt +FILE: ../../../third_party/icu/source/data/locales/sd_Deva_IN.txt +FILE: ../../../third_party/icu/source/data/locales/sd_IN.txt +FILE: ../../../third_party/icu/source/data/locales/sd_PK.txt +FILE: ../../../third_party/icu/source/data/locales/se.txt +FILE: ../../../third_party/icu/source/data/locales/se_FI.txt +FILE: ../../../third_party/icu/source/data/locales/se_NO.txt +FILE: ../../../third_party/icu/source/data/locales/se_SE.txt +FILE: ../../../third_party/icu/source/data/locales/seh.txt +FILE: ../../../third_party/icu/source/data/locales/seh_MZ.txt +FILE: ../../../third_party/icu/source/data/locales/ses.txt +FILE: ../../../third_party/icu/source/data/locales/ses_ML.txt +FILE: ../../../third_party/icu/source/data/locales/sg.txt +FILE: ../../../third_party/icu/source/data/locales/sg_CF.txt +FILE: ../../../third_party/icu/source/data/locales/sh.txt +FILE: ../../../third_party/icu/source/data/locales/sh_BA.txt +FILE: ../../../third_party/icu/source/data/locales/sh_CS.txt +FILE: ../../../third_party/icu/source/data/locales/sh_YU.txt +FILE: ../../../third_party/icu/source/data/locales/shi.txt +FILE: ../../../third_party/icu/source/data/locales/shi_Latn.txt +FILE: ../../../third_party/icu/source/data/locales/shi_Latn_MA.txt +FILE: ../../../third_party/icu/source/data/locales/shi_MA.txt +FILE: ../../../third_party/icu/source/data/locales/shi_Tfng.txt +FILE: ../../../third_party/icu/source/data/locales/shi_Tfng_MA.txt +FILE: ../../../third_party/icu/source/data/locales/si.txt +FILE: ../../../third_party/icu/source/data/locales/si_LK.txt +FILE: ../../../third_party/icu/source/data/locales/sk.txt +FILE: ../../../third_party/icu/source/data/locales/sk_SK.txt +FILE: ../../../third_party/icu/source/data/locales/sl.txt +FILE: ../../../third_party/icu/source/data/locales/sl_SI.txt +FILE: ../../../third_party/icu/source/data/locales/smn.txt +FILE: ../../../third_party/icu/source/data/locales/smn_FI.txt +FILE: ../../../third_party/icu/source/data/locales/sn.txt +FILE: ../../../third_party/icu/source/data/locales/sn_ZW.txt +FILE: ../../../third_party/icu/source/data/locales/so.txt +FILE: ../../../third_party/icu/source/data/locales/so_DJ.txt +FILE: ../../../third_party/icu/source/data/locales/so_ET.txt +FILE: ../../../third_party/icu/source/data/locales/so_KE.txt +FILE: ../../../third_party/icu/source/data/locales/so_SO.txt +FILE: ../../../third_party/icu/source/data/locales/sq.txt +FILE: ../../../third_party/icu/source/data/locales/sq_AL.txt +FILE: ../../../third_party/icu/source/data/locales/sq_MK.txt +FILE: ../../../third_party/icu/source/data/locales/sq_XK.txt +FILE: ../../../third_party/icu/source/data/locales/sr.txt +FILE: ../../../third_party/icu/source/data/locales/sr_BA.txt +FILE: ../../../third_party/icu/source/data/locales/sr_CS.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Cyrl.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Cyrl_BA.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Cyrl_CS.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Cyrl_ME.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Cyrl_RS.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Cyrl_XK.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Cyrl_YU.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Latn.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Latn_BA.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Latn_CS.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Latn_ME.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Latn_RS.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Latn_XK.txt +FILE: ../../../third_party/icu/source/data/locales/sr_Latn_YU.txt +FILE: ../../../third_party/icu/source/data/locales/sr_ME.txt +FILE: ../../../third_party/icu/source/data/locales/sr_RS.txt +FILE: ../../../third_party/icu/source/data/locales/sr_XK.txt +FILE: ../../../third_party/icu/source/data/locales/sr_YU.txt +FILE: ../../../third_party/icu/source/data/locales/su.txt +FILE: ../../../third_party/icu/source/data/locales/su_ID.txt +FILE: ../../../third_party/icu/source/data/locales/su_Latn.txt +FILE: ../../../third_party/icu/source/data/locales/su_Latn_ID.txt +FILE: ../../../third_party/icu/source/data/locales/sv.txt +FILE: ../../../third_party/icu/source/data/locales/sv_AX.txt +FILE: ../../../third_party/icu/source/data/locales/sv_FI.txt +FILE: ../../../third_party/icu/source/data/locales/sv_SE.txt +FILE: ../../../third_party/icu/source/data/locales/sw.txt +FILE: ../../../third_party/icu/source/data/locales/sw_CD.txt +FILE: ../../../third_party/icu/source/data/locales/sw_KE.txt +FILE: ../../../third_party/icu/source/data/locales/sw_TZ.txt +FILE: ../../../third_party/icu/source/data/locales/sw_UG.txt +FILE: ../../../third_party/icu/source/data/locales/ta.txt +FILE: ../../../third_party/icu/source/data/locales/ta_IN.txt +FILE: ../../../third_party/icu/source/data/locales/ta_LK.txt +FILE: ../../../third_party/icu/source/data/locales/ta_MY.txt +FILE: ../../../third_party/icu/source/data/locales/ta_SG.txt +FILE: ../../../third_party/icu/source/data/locales/te.txt +FILE: ../../../third_party/icu/source/data/locales/te_IN.txt +FILE: ../../../third_party/icu/source/data/locales/teo.txt +FILE: ../../../third_party/icu/source/data/locales/teo_KE.txt +FILE: ../../../third_party/icu/source/data/locales/teo_UG.txt +FILE: ../../../third_party/icu/source/data/locales/tg_TJ.txt +FILE: ../../../third_party/icu/source/data/locales/th.txt +FILE: ../../../third_party/icu/source/data/locales/th_TH.txt +FILE: ../../../third_party/icu/source/data/locales/th_TH_TRADITIONAL.txt +FILE: ../../../third_party/icu/source/data/locales/ti.txt +FILE: ../../../third_party/icu/source/data/locales/ti_ER.txt +FILE: ../../../third_party/icu/source/data/locales/ti_ET.txt +FILE: ../../../third_party/icu/source/data/locales/tk.txt +FILE: ../../../third_party/icu/source/data/locales/tk_TM.txt +FILE: ../../../third_party/icu/source/data/locales/tl.txt +FILE: ../../../third_party/icu/source/data/locales/tl_PH.txt +FILE: ../../../third_party/icu/source/data/locales/to.txt +FILE: ../../../third_party/icu/source/data/locales/to_TO.txt +FILE: ../../../third_party/icu/source/data/locales/tr.txt +FILE: ../../../third_party/icu/source/data/locales/tr_CY.txt +FILE: ../../../third_party/icu/source/data/locales/tr_TR.txt +FILE: ../../../third_party/icu/source/data/locales/tt.txt +FILE: ../../../third_party/icu/source/data/locales/tt_RU.txt +FILE: ../../../third_party/icu/source/data/locales/twq.txt +FILE: ../../../third_party/icu/source/data/locales/twq_NE.txt +FILE: ../../../third_party/icu/source/data/locales/tzm.txt +FILE: ../../../third_party/icu/source/data/locales/tzm_MA.txt +FILE: ../../../third_party/icu/source/data/locales/ug.txt +FILE: ../../../third_party/icu/source/data/locales/ug_CN.txt +FILE: ../../../third_party/icu/source/data/locales/uk.txt +FILE: ../../../third_party/icu/source/data/locales/uk_UA.txt +FILE: ../../../third_party/icu/source/data/locales/ur.txt +FILE: ../../../third_party/icu/source/data/locales/ur_IN.txt +FILE: ../../../third_party/icu/source/data/locales/ur_PK.txt +FILE: ../../../third_party/icu/source/data/locales/uz.txt +FILE: ../../../third_party/icu/source/data/locales/uz_AF.txt +FILE: ../../../third_party/icu/source/data/locales/uz_Arab.txt +FILE: ../../../third_party/icu/source/data/locales/uz_Arab_AF.txt +FILE: ../../../third_party/icu/source/data/locales/uz_Cyrl.txt +FILE: ../../../third_party/icu/source/data/locales/uz_Cyrl_UZ.txt +FILE: ../../../third_party/icu/source/data/locales/uz_Latn.txt +FILE: ../../../third_party/icu/source/data/locales/uz_Latn_UZ.txt +FILE: ../../../third_party/icu/source/data/locales/uz_UZ.txt +FILE: ../../../third_party/icu/source/data/locales/vai.txt +FILE: ../../../third_party/icu/source/data/locales/vai_LR.txt +FILE: ../../../third_party/icu/source/data/locales/vai_Latn.txt +FILE: ../../../third_party/icu/source/data/locales/vai_Latn_LR.txt +FILE: ../../../third_party/icu/source/data/locales/vai_Vaii.txt +FILE: ../../../third_party/icu/source/data/locales/vai_Vaii_LR.txt +FILE: ../../../third_party/icu/source/data/locales/vi.txt +FILE: ../../../third_party/icu/source/data/locales/vi_VN.txt +FILE: ../../../third_party/icu/source/data/locales/vun.txt +FILE: ../../../third_party/icu/source/data/locales/vun_TZ.txt +FILE: ../../../third_party/icu/source/data/locales/wae.txt +FILE: ../../../third_party/icu/source/data/locales/wae_CH.txt +FILE: ../../../third_party/icu/source/data/locales/wo.txt +FILE: ../../../third_party/icu/source/data/locales/wo_SN.txt +FILE: ../../../third_party/icu/source/data/locales/xh.txt +FILE: ../../../third_party/icu/source/data/locales/xh_ZA.txt +FILE: ../../../third_party/icu/source/data/locales/xog.txt +FILE: ../../../third_party/icu/source/data/locales/xog_UG.txt +FILE: ../../../third_party/icu/source/data/locales/yav.txt +FILE: ../../../third_party/icu/source/data/locales/yav_CM.txt +FILE: ../../../third_party/icu/source/data/locales/yi.txt +FILE: ../../../third_party/icu/source/data/locales/yi_001.txt +FILE: ../../../third_party/icu/source/data/locales/yo.txt +FILE: ../../../third_party/icu/source/data/locales/yo_BJ.txt +FILE: ../../../third_party/icu/source/data/locales/yo_NG.txt +FILE: ../../../third_party/icu/source/data/locales/yrl.txt +FILE: ../../../third_party/icu/source/data/locales/yrl_BR.txt +FILE: ../../../third_party/icu/source/data/locales/yrl_CO.txt +FILE: ../../../third_party/icu/source/data/locales/yrl_VE.txt +FILE: ../../../third_party/icu/source/data/locales/yue.txt +FILE: ../../../third_party/icu/source/data/locales/yue_CN.txt +FILE: ../../../third_party/icu/source/data/locales/yue_HK.txt +FILE: ../../../third_party/icu/source/data/locales/yue_Hans.txt +FILE: ../../../third_party/icu/source/data/locales/yue_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/locales/yue_Hant.txt +FILE: ../../../third_party/icu/source/data/locales/yue_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/locales/zgh.txt +FILE: ../../../third_party/icu/source/data/locales/zgh_MA.txt +FILE: ../../../third_party/icu/source/data/locales/zh.txt +FILE: ../../../third_party/icu/source/data/locales/zh_CN.txt +FILE: ../../../third_party/icu/source/data/locales/zh_HK.txt +FILE: ../../../third_party/icu/source/data/locales/zh_Hans.txt +FILE: ../../../third_party/icu/source/data/locales/zh_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/locales/zh_Hans_HK.txt +FILE: ../../../third_party/icu/source/data/locales/zh_Hans_MO.txt +FILE: ../../../third_party/icu/source/data/locales/zh_Hans_SG.txt +FILE: ../../../third_party/icu/source/data/locales/zh_Hant.txt +FILE: ../../../third_party/icu/source/data/locales/zh_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/locales/zh_Hant_MO.txt +FILE: ../../../third_party/icu/source/data/locales/zh_Hant_TW.txt +FILE: ../../../third_party/icu/source/data/locales/zh_MO.txt +FILE: ../../../third_party/icu/source/data/locales/zh_SG.txt +FILE: ../../../third_party/icu/source/data/locales/zh_TW.txt +FILE: ../../../third_party/icu/source/data/locales/zu.txt +FILE: ../../../third_party/icu/source/data/locales/zu_ZA.txt FILE: ../../../third_party/icu/source/data/makedata.mak FILE: ../../../third_party/icu/source/data/mappings/cns-11643-1992.ucm FILE: ../../../third_party/icu/source/data/mappings/ebcdic-xml-us.ucm @@ -26923,22 +60415,1997 @@ FILE: ../../../third_party/icu/source/data/mappings/macos-7_3-10.2.ucm FILE: ../../../third_party/icu/source/data/mappings/windows-874-2000.ucm FILE: ../../../third_party/icu/source/data/mappings/windows-949-2000.ucm FILE: ../../../third_party/icu/source/data/mappings/windows-950-2000.ucm +FILE: ../../../third_party/icu/source/data/misc/currencyNumericCodes.txt +FILE: ../../../third_party/icu/source/data/misc/dayPeriods.txt +FILE: ../../../third_party/icu/source/data/misc/genderList.txt +FILE: ../../../third_party/icu/source/data/misc/grammaticalFeatures.txt FILE: ../../../third_party/icu/source/data/misc/icudata.rc -FILE: ../../../third_party/icu/source/data/rbnf/LOCALE_DEPS.json -FILE: ../../../third_party/icu/source/data/region/LOCALE_DEPS.json -FILE: ../../../third_party/icu/source/data/unidata/norm2/BUILD.bazel -FILE: ../../../third_party/icu/source/data/unit/LOCALE_DEPS.json -FILE: ../../../third_party/icu/source/data/zone/LOCALE_DEPS.json +FILE: ../../../third_party/icu/source/data/misc/icustd.txt +FILE: ../../../third_party/icu/source/data/misc/icuver.txt +FILE: ../../../third_party/icu/source/data/misc/keyTypeData.txt +FILE: ../../../third_party/icu/source/data/misc/langInfo.txt +FILE: ../../../third_party/icu/source/data/misc/likelySubtags.txt +FILE: ../../../third_party/icu/source/data/misc/metaZones.txt +FILE: ../../../third_party/icu/source/data/misc/metadata.txt +FILE: ../../../third_party/icu/source/data/misc/numberingSystems.txt +FILE: ../../../third_party/icu/source/data/misc/pluralRanges.txt +FILE: ../../../third_party/icu/source/data/misc/plurals.txt +FILE: ../../../third_party/icu/source/data/misc/supplementalData.txt +FILE: ../../../third_party/icu/source/data/misc/timezoneTypes.txt +FILE: ../../../third_party/icu/source/data/misc/units.txt +FILE: ../../../third_party/icu/source/data/misc/windowsZones.txt +FILE: ../../../third_party/icu/source/data/misc/zoneinfo64.txt +FILE: ../../../third_party/icu/source/data/rbnf/af.txt +FILE: ../../../third_party/icu/source/data/rbnf/ak.txt +FILE: ../../../third_party/icu/source/data/rbnf/am.txt +FILE: ../../../third_party/icu/source/data/rbnf/ar.txt +FILE: ../../../third_party/icu/source/data/rbnf/ar_SA.txt +FILE: ../../../third_party/icu/source/data/rbnf/ars.txt +FILE: ../../../third_party/icu/source/data/rbnf/az.txt +FILE: ../../../third_party/icu/source/data/rbnf/be.txt +FILE: ../../../third_party/icu/source/data/rbnf/bg.txt +FILE: ../../../third_party/icu/source/data/rbnf/bs.txt +FILE: ../../../third_party/icu/source/data/rbnf/ca.txt +FILE: ../../../third_party/icu/source/data/rbnf/ccp.txt +FILE: ../../../third_party/icu/source/data/rbnf/chr.txt +FILE: ../../../third_party/icu/source/data/rbnf/cs.txt +FILE: ../../../third_party/icu/source/data/rbnf/cy.txt +FILE: ../../../third_party/icu/source/data/rbnf/da.txt +FILE: ../../../third_party/icu/source/data/rbnf/de.txt +FILE: ../../../third_party/icu/source/data/rbnf/de_CH.txt +FILE: ../../../third_party/icu/source/data/rbnf/ee.txt +FILE: ../../../third_party/icu/source/data/rbnf/el.txt +FILE: ../../../third_party/icu/source/data/rbnf/en.txt +FILE: ../../../third_party/icu/source/data/rbnf/en_001.txt +FILE: ../../../third_party/icu/source/data/rbnf/en_IN.txt +FILE: ../../../third_party/icu/source/data/rbnf/eo.txt +FILE: ../../../third_party/icu/source/data/rbnf/es.txt +FILE: ../../../third_party/icu/source/data/rbnf/es_419.txt +FILE: ../../../third_party/icu/source/data/rbnf/es_DO.txt +FILE: ../../../third_party/icu/source/data/rbnf/es_GT.txt +FILE: ../../../third_party/icu/source/data/rbnf/es_HN.txt +FILE: ../../../third_party/icu/source/data/rbnf/es_MX.txt +FILE: ../../../third_party/icu/source/data/rbnf/es_NI.txt +FILE: ../../../third_party/icu/source/data/rbnf/es_PA.txt +FILE: ../../../third_party/icu/source/data/rbnf/es_PR.txt +FILE: ../../../third_party/icu/source/data/rbnf/es_SV.txt +FILE: ../../../third_party/icu/source/data/rbnf/es_US.txt +FILE: ../../../third_party/icu/source/data/rbnf/et.txt +FILE: ../../../third_party/icu/source/data/rbnf/fa.txt +FILE: ../../../third_party/icu/source/data/rbnf/fa_AF.txt +FILE: ../../../third_party/icu/source/data/rbnf/ff.txt +FILE: ../../../third_party/icu/source/data/rbnf/fi.txt +FILE: ../../../third_party/icu/source/data/rbnf/fil.txt +FILE: ../../../third_party/icu/source/data/rbnf/fo.txt +FILE: ../../../third_party/icu/source/data/rbnf/fr.txt +FILE: ../../../third_party/icu/source/data/rbnf/fr_BE.txt +FILE: ../../../third_party/icu/source/data/rbnf/fr_CH.txt +FILE: ../../../third_party/icu/source/data/rbnf/ga.txt +FILE: ../../../third_party/icu/source/data/rbnf/he.txt +FILE: ../../../third_party/icu/source/data/rbnf/hi.txt +FILE: ../../../third_party/icu/source/data/rbnf/hr.txt +FILE: ../../../third_party/icu/source/data/rbnf/hu.txt +FILE: ../../../third_party/icu/source/data/rbnf/hy.txt +FILE: ../../../third_party/icu/source/data/rbnf/id.txt +FILE: ../../../third_party/icu/source/data/rbnf/in.txt +FILE: ../../../third_party/icu/source/data/rbnf/is.txt +FILE: ../../../third_party/icu/source/data/rbnf/it.txt +FILE: ../../../third_party/icu/source/data/rbnf/iw.txt +FILE: ../../../third_party/icu/source/data/rbnf/ja.txt +FILE: ../../../third_party/icu/source/data/rbnf/ka.txt +FILE: ../../../third_party/icu/source/data/rbnf/kk.txt +FILE: ../../../third_party/icu/source/data/rbnf/kl.txt +FILE: ../../../third_party/icu/source/data/rbnf/km.txt +FILE: ../../../third_party/icu/source/data/rbnf/ko.txt +FILE: ../../../third_party/icu/source/data/rbnf/ky.txt +FILE: ../../../third_party/icu/source/data/rbnf/lb.txt +FILE: ../../../third_party/icu/source/data/rbnf/lo.txt +FILE: ../../../third_party/icu/source/data/rbnf/lrc.txt +FILE: ../../../third_party/icu/source/data/rbnf/lt.txt +FILE: ../../../third_party/icu/source/data/rbnf/lv.txt +FILE: ../../../third_party/icu/source/data/rbnf/mk.txt +FILE: ../../../third_party/icu/source/data/rbnf/ms.txt +FILE: ../../../third_party/icu/source/data/rbnf/mt.txt +FILE: ../../../third_party/icu/source/data/rbnf/my.txt +FILE: ../../../third_party/icu/source/data/rbnf/nb.txt +FILE: ../../../third_party/icu/source/data/rbnf/ne.txt +FILE: ../../../third_party/icu/source/data/rbnf/nl.txt +FILE: ../../../third_party/icu/source/data/rbnf/nn.txt +FILE: ../../../third_party/icu/source/data/rbnf/no.txt +FILE: ../../../third_party/icu/source/data/rbnf/pl.txt +FILE: ../../../third_party/icu/source/data/rbnf/pt.txt +FILE: ../../../third_party/icu/source/data/rbnf/pt_PT.txt +FILE: ../../../third_party/icu/source/data/rbnf/qu.txt +FILE: ../../../third_party/icu/source/data/rbnf/ro.txt +FILE: ../../../third_party/icu/source/data/rbnf/root.txt +FILE: ../../../third_party/icu/source/data/rbnf/ru.txt +FILE: ../../../third_party/icu/source/data/rbnf/se.txt +FILE: ../../../third_party/icu/source/data/rbnf/sh.txt +FILE: ../../../third_party/icu/source/data/rbnf/sk.txt +FILE: ../../../third_party/icu/source/data/rbnf/sl.txt +FILE: ../../../third_party/icu/source/data/rbnf/sq.txt +FILE: ../../../third_party/icu/source/data/rbnf/sr.txt +FILE: ../../../third_party/icu/source/data/rbnf/sr_Latn.txt +FILE: ../../../third_party/icu/source/data/rbnf/su.txt +FILE: ../../../third_party/icu/source/data/rbnf/sv.txt +FILE: ../../../third_party/icu/source/data/rbnf/sw.txt +FILE: ../../../third_party/icu/source/data/rbnf/ta.txt +FILE: ../../../third_party/icu/source/data/rbnf/th.txt +FILE: ../../../third_party/icu/source/data/rbnf/tr.txt +FILE: ../../../third_party/icu/source/data/rbnf/uk.txt +FILE: ../../../third_party/icu/source/data/rbnf/vi.txt +FILE: ../../../third_party/icu/source/data/rbnf/yue.txt +FILE: ../../../third_party/icu/source/data/rbnf/yue_Hans.txt +FILE: ../../../third_party/icu/source/data/rbnf/zh.txt +FILE: ../../../third_party/icu/source/data/rbnf/zh_HK.txt +FILE: ../../../third_party/icu/source/data/rbnf/zh_Hant.txt +FILE: ../../../third_party/icu/source/data/rbnf/zh_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/rbnf/zh_Hant_MO.txt +FILE: ../../../third_party/icu/source/data/rbnf/zh_Hant_TW.txt +FILE: ../../../third_party/icu/source/data/rbnf/zh_MO.txt +FILE: ../../../third_party/icu/source/data/rbnf/zh_TW.txt +FILE: ../../../third_party/icu/source/data/region/af.txt +FILE: ../../../third_party/icu/source/data/region/agq.txt +FILE: ../../../third_party/icu/source/data/region/ak.txt +FILE: ../../../third_party/icu/source/data/region/am.txt +FILE: ../../../third_party/icu/source/data/region/ar.txt +FILE: ../../../third_party/icu/source/data/region/ar_AE.txt +FILE: ../../../third_party/icu/source/data/region/ar_LY.txt +FILE: ../../../third_party/icu/source/data/region/ar_SA.txt +FILE: ../../../third_party/icu/source/data/region/ars.txt +FILE: ../../../third_party/icu/source/data/region/as.txt +FILE: ../../../third_party/icu/source/data/region/asa.txt +FILE: ../../../third_party/icu/source/data/region/ast.txt +FILE: ../../../third_party/icu/source/data/region/az.txt +FILE: ../../../third_party/icu/source/data/region/az_AZ.txt +FILE: ../../../third_party/icu/source/data/region/az_Cyrl.txt +FILE: ../../../third_party/icu/source/data/region/az_Latn.txt +FILE: ../../../third_party/icu/source/data/region/az_Latn_AZ.txt +FILE: ../../../third_party/icu/source/data/region/bas.txt +FILE: ../../../third_party/icu/source/data/region/be.txt +FILE: ../../../third_party/icu/source/data/region/bem.txt +FILE: ../../../third_party/icu/source/data/region/bez.txt +FILE: ../../../third_party/icu/source/data/region/bg.txt +FILE: ../../../third_party/icu/source/data/region/bgc.txt +FILE: ../../../third_party/icu/source/data/region/bho.txt +FILE: ../../../third_party/icu/source/data/region/bm.txt +FILE: ../../../third_party/icu/source/data/region/bn.txt +FILE: ../../../third_party/icu/source/data/region/bn_IN.txt +FILE: ../../../third_party/icu/source/data/region/bo.txt +FILE: ../../../third_party/icu/source/data/region/bo_IN.txt +FILE: ../../../third_party/icu/source/data/region/br.txt +FILE: ../../../third_party/icu/source/data/region/brx.txt +FILE: ../../../third_party/icu/source/data/region/bs.txt +FILE: ../../../third_party/icu/source/data/region/bs_BA.txt +FILE: ../../../third_party/icu/source/data/region/bs_Cyrl.txt +FILE: ../../../third_party/icu/source/data/region/bs_Latn.txt +FILE: ../../../third_party/icu/source/data/region/bs_Latn_BA.txt +FILE: ../../../third_party/icu/source/data/region/ca.txt +FILE: ../../../third_party/icu/source/data/region/ccp.txt +FILE: ../../../third_party/icu/source/data/region/ce.txt +FILE: ../../../third_party/icu/source/data/region/ceb.txt +FILE: ../../../third_party/icu/source/data/region/cgg.txt +FILE: ../../../third_party/icu/source/data/region/chr.txt +FILE: ../../../third_party/icu/source/data/region/ckb.txt +FILE: ../../../third_party/icu/source/data/region/cs.txt +FILE: ../../../third_party/icu/source/data/region/cv.txt +FILE: ../../../third_party/icu/source/data/region/cy.txt +FILE: ../../../third_party/icu/source/data/region/da.txt +FILE: ../../../third_party/icu/source/data/region/dav.txt +FILE: ../../../third_party/icu/source/data/region/de.txt +FILE: ../../../third_party/icu/source/data/region/de_AT.txt +FILE: ../../../third_party/icu/source/data/region/de_CH.txt +FILE: ../../../third_party/icu/source/data/region/dje.txt +FILE: ../../../third_party/icu/source/data/region/doi.txt +FILE: ../../../third_party/icu/source/data/region/dsb.txt +FILE: ../../../third_party/icu/source/data/region/dua.txt +FILE: ../../../third_party/icu/source/data/region/dyo.txt +FILE: ../../../third_party/icu/source/data/region/dz.txt +FILE: ../../../third_party/icu/source/data/region/ebu.txt +FILE: ../../../third_party/icu/source/data/region/ee.txt +FILE: ../../../third_party/icu/source/data/region/el.txt +FILE: ../../../third_party/icu/source/data/region/en.txt +FILE: ../../../third_party/icu/source/data/region/en_001.txt +FILE: ../../../third_party/icu/source/data/region/en_150.txt +FILE: ../../../third_party/icu/source/data/region/en_AG.txt +FILE: ../../../third_party/icu/source/data/region/en_AI.txt +FILE: ../../../third_party/icu/source/data/region/en_AT.txt +FILE: ../../../third_party/icu/source/data/region/en_AU.txt +FILE: ../../../third_party/icu/source/data/region/en_BB.txt +FILE: ../../../third_party/icu/source/data/region/en_BE.txt +FILE: ../../../third_party/icu/source/data/region/en_BM.txt +FILE: ../../../third_party/icu/source/data/region/en_BS.txt +FILE: ../../../third_party/icu/source/data/region/en_BW.txt +FILE: ../../../third_party/icu/source/data/region/en_BZ.txt +FILE: ../../../third_party/icu/source/data/region/en_CA.txt +FILE: ../../../third_party/icu/source/data/region/en_CC.txt +FILE: ../../../third_party/icu/source/data/region/en_CH.txt +FILE: ../../../third_party/icu/source/data/region/en_CK.txt +FILE: ../../../third_party/icu/source/data/region/en_CM.txt +FILE: ../../../third_party/icu/source/data/region/en_CX.txt +FILE: ../../../third_party/icu/source/data/region/en_CY.txt +FILE: ../../../third_party/icu/source/data/region/en_DE.txt +FILE: ../../../third_party/icu/source/data/region/en_DG.txt +FILE: ../../../third_party/icu/source/data/region/en_DK.txt +FILE: ../../../third_party/icu/source/data/region/en_DM.txt +FILE: ../../../third_party/icu/source/data/region/en_ER.txt +FILE: ../../../third_party/icu/source/data/region/en_FI.txt +FILE: ../../../third_party/icu/source/data/region/en_FJ.txt +FILE: ../../../third_party/icu/source/data/region/en_FK.txt +FILE: ../../../third_party/icu/source/data/region/en_FM.txt +FILE: ../../../third_party/icu/source/data/region/en_GB.txt +FILE: ../../../third_party/icu/source/data/region/en_GD.txt +FILE: ../../../third_party/icu/source/data/region/en_GG.txt +FILE: ../../../third_party/icu/source/data/region/en_GH.txt +FILE: ../../../third_party/icu/source/data/region/en_GI.txt +FILE: ../../../third_party/icu/source/data/region/en_GM.txt +FILE: ../../../third_party/icu/source/data/region/en_GY.txt +FILE: ../../../third_party/icu/source/data/region/en_HK.txt +FILE: ../../../third_party/icu/source/data/region/en_IE.txt +FILE: ../../../third_party/icu/source/data/region/en_IL.txt +FILE: ../../../third_party/icu/source/data/region/en_IM.txt +FILE: ../../../third_party/icu/source/data/region/en_IN.txt +FILE: ../../../third_party/icu/source/data/region/en_IO.txt +FILE: ../../../third_party/icu/source/data/region/en_JE.txt +FILE: ../../../third_party/icu/source/data/region/en_JM.txt +FILE: ../../../third_party/icu/source/data/region/en_KE.txt +FILE: ../../../third_party/icu/source/data/region/en_KI.txt +FILE: ../../../third_party/icu/source/data/region/en_KN.txt +FILE: ../../../third_party/icu/source/data/region/en_KY.txt +FILE: ../../../third_party/icu/source/data/region/en_LC.txt +FILE: ../../../third_party/icu/source/data/region/en_LR.txt +FILE: ../../../third_party/icu/source/data/region/en_LS.txt +FILE: ../../../third_party/icu/source/data/region/en_MG.txt +FILE: ../../../third_party/icu/source/data/region/en_MO.txt +FILE: ../../../third_party/icu/source/data/region/en_MS.txt +FILE: ../../../third_party/icu/source/data/region/en_MT.txt +FILE: ../../../third_party/icu/source/data/region/en_MU.txt +FILE: ../../../third_party/icu/source/data/region/en_MV.txt +FILE: ../../../third_party/icu/source/data/region/en_MW.txt +FILE: ../../../third_party/icu/source/data/region/en_MY.txt +FILE: ../../../third_party/icu/source/data/region/en_NA.txt +FILE: ../../../third_party/icu/source/data/region/en_NF.txt +FILE: ../../../third_party/icu/source/data/region/en_NG.txt +FILE: ../../../third_party/icu/source/data/region/en_NH.txt +FILE: ../../../third_party/icu/source/data/region/en_NL.txt +FILE: ../../../third_party/icu/source/data/region/en_NR.txt +FILE: ../../../third_party/icu/source/data/region/en_NU.txt +FILE: ../../../third_party/icu/source/data/region/en_NZ.txt +FILE: ../../../third_party/icu/source/data/region/en_PG.txt +FILE: ../../../third_party/icu/source/data/region/en_PK.txt +FILE: ../../../third_party/icu/source/data/region/en_PN.txt +FILE: ../../../third_party/icu/source/data/region/en_PW.txt +FILE: ../../../third_party/icu/source/data/region/en_RH.txt +FILE: ../../../third_party/icu/source/data/region/en_RW.txt +FILE: ../../../third_party/icu/source/data/region/en_SB.txt +FILE: ../../../third_party/icu/source/data/region/en_SC.txt +FILE: ../../../third_party/icu/source/data/region/en_SD.txt +FILE: ../../../third_party/icu/source/data/region/en_SE.txt +FILE: ../../../third_party/icu/source/data/region/en_SG.txt +FILE: ../../../third_party/icu/source/data/region/en_SH.txt +FILE: ../../../third_party/icu/source/data/region/en_SI.txt +FILE: ../../../third_party/icu/source/data/region/en_SL.txt +FILE: ../../../third_party/icu/source/data/region/en_SS.txt +FILE: ../../../third_party/icu/source/data/region/en_SX.txt +FILE: ../../../third_party/icu/source/data/region/en_SZ.txt +FILE: ../../../third_party/icu/source/data/region/en_TC.txt +FILE: ../../../third_party/icu/source/data/region/en_TK.txt +FILE: ../../../third_party/icu/source/data/region/en_TO.txt +FILE: ../../../third_party/icu/source/data/region/en_TT.txt +FILE: ../../../third_party/icu/source/data/region/en_TV.txt +FILE: ../../../third_party/icu/source/data/region/en_TZ.txt +FILE: ../../../third_party/icu/source/data/region/en_UG.txt +FILE: ../../../third_party/icu/source/data/region/en_VC.txt +FILE: ../../../third_party/icu/source/data/region/en_VG.txt +FILE: ../../../third_party/icu/source/data/region/en_VU.txt +FILE: ../../../third_party/icu/source/data/region/en_WS.txt +FILE: ../../../third_party/icu/source/data/region/en_ZA.txt +FILE: ../../../third_party/icu/source/data/region/en_ZM.txt +FILE: ../../../third_party/icu/source/data/region/en_ZW.txt +FILE: ../../../third_party/icu/source/data/region/eo.txt +FILE: ../../../third_party/icu/source/data/region/es.txt +FILE: ../../../third_party/icu/source/data/region/es_419.txt +FILE: ../../../third_party/icu/source/data/region/es_AR.txt +FILE: ../../../third_party/icu/source/data/region/es_BO.txt +FILE: ../../../third_party/icu/source/data/region/es_BR.txt +FILE: ../../../third_party/icu/source/data/region/es_BZ.txt +FILE: ../../../third_party/icu/source/data/region/es_CL.txt +FILE: ../../../third_party/icu/source/data/region/es_CO.txt +FILE: ../../../third_party/icu/source/data/region/es_CR.txt +FILE: ../../../third_party/icu/source/data/region/es_CU.txt +FILE: ../../../third_party/icu/source/data/region/es_DO.txt +FILE: ../../../third_party/icu/source/data/region/es_EC.txt +FILE: ../../../third_party/icu/source/data/region/es_GT.txt +FILE: ../../../third_party/icu/source/data/region/es_HN.txt +FILE: ../../../third_party/icu/source/data/region/es_MX.txt +FILE: ../../../third_party/icu/source/data/region/es_NI.txt +FILE: ../../../third_party/icu/source/data/region/es_PA.txt +FILE: ../../../third_party/icu/source/data/region/es_PE.txt +FILE: ../../../third_party/icu/source/data/region/es_PR.txt +FILE: ../../../third_party/icu/source/data/region/es_PY.txt +FILE: ../../../third_party/icu/source/data/region/es_SV.txt +FILE: ../../../third_party/icu/source/data/region/es_US.txt +FILE: ../../../third_party/icu/source/data/region/es_UY.txt +FILE: ../../../third_party/icu/source/data/region/es_VE.txt +FILE: ../../../third_party/icu/source/data/region/et.txt +FILE: ../../../third_party/icu/source/data/region/eu.txt +FILE: ../../../third_party/icu/source/data/region/ewo.txt +FILE: ../../../third_party/icu/source/data/region/fa.txt +FILE: ../../../third_party/icu/source/data/region/fa_AF.txt +FILE: ../../../third_party/icu/source/data/region/ff.txt +FILE: ../../../third_party/icu/source/data/region/ff_Adlm.txt +FILE: ../../../third_party/icu/source/data/region/ff_CM.txt +FILE: ../../../third_party/icu/source/data/region/ff_GN.txt +FILE: ../../../third_party/icu/source/data/region/ff_Latn.txt +FILE: ../../../third_party/icu/source/data/region/ff_Latn_CM.txt +FILE: ../../../third_party/icu/source/data/region/ff_Latn_GN.txt +FILE: ../../../third_party/icu/source/data/region/ff_Latn_MR.txt +FILE: ../../../third_party/icu/source/data/region/ff_Latn_SN.txt +FILE: ../../../third_party/icu/source/data/region/ff_MR.txt +FILE: ../../../third_party/icu/source/data/region/ff_SN.txt +FILE: ../../../third_party/icu/source/data/region/fi.txt +FILE: ../../../third_party/icu/source/data/region/fil.txt +FILE: ../../../third_party/icu/source/data/region/fil_PH.txt +FILE: ../../../third_party/icu/source/data/region/fo.txt +FILE: ../../../third_party/icu/source/data/region/fr.txt +FILE: ../../../third_party/icu/source/data/region/fr_BE.txt +FILE: ../../../third_party/icu/source/data/region/fr_CA.txt +FILE: ../../../third_party/icu/source/data/region/fur.txt +FILE: ../../../third_party/icu/source/data/region/fy.txt +FILE: ../../../third_party/icu/source/data/region/ga.txt +FILE: ../../../third_party/icu/source/data/region/gd.txt +FILE: ../../../third_party/icu/source/data/region/gl.txt +FILE: ../../../third_party/icu/source/data/region/gsw.txt +FILE: ../../../third_party/icu/source/data/region/gu.txt +FILE: ../../../third_party/icu/source/data/region/guz.txt +FILE: ../../../third_party/icu/source/data/region/gv.txt +FILE: ../../../third_party/icu/source/data/region/ha.txt +FILE: ../../../third_party/icu/source/data/region/haw.txt +FILE: ../../../third_party/icu/source/data/region/he.txt +FILE: ../../../third_party/icu/source/data/region/he_IL.txt +FILE: ../../../third_party/icu/source/data/region/hi.txt +FILE: ../../../third_party/icu/source/data/region/hi_Latn.txt +FILE: ../../../third_party/icu/source/data/region/hr.txt +FILE: ../../../third_party/icu/source/data/region/hsb.txt +FILE: ../../../third_party/icu/source/data/region/hu.txt +FILE: ../../../third_party/icu/source/data/region/hy.txt +FILE: ../../../third_party/icu/source/data/region/ia.txt +FILE: ../../../third_party/icu/source/data/region/id.txt +FILE: ../../../third_party/icu/source/data/region/id_ID.txt +FILE: ../../../third_party/icu/source/data/region/ig.txt +FILE: ../../../third_party/icu/source/data/region/ii.txt +FILE: ../../../third_party/icu/source/data/region/in.txt +FILE: ../../../third_party/icu/source/data/region/in_ID.txt +FILE: ../../../third_party/icu/source/data/region/is.txt +FILE: ../../../third_party/icu/source/data/region/it.txt +FILE: ../../../third_party/icu/source/data/region/iw.txt +FILE: ../../../third_party/icu/source/data/region/iw_IL.txt +FILE: ../../../third_party/icu/source/data/region/ja.txt +FILE: ../../../third_party/icu/source/data/region/jgo.txt +FILE: ../../../third_party/icu/source/data/region/jmc.txt +FILE: ../../../third_party/icu/source/data/region/jv.txt +FILE: ../../../third_party/icu/source/data/region/ka.txt +FILE: ../../../third_party/icu/source/data/region/kab.txt +FILE: ../../../third_party/icu/source/data/region/kam.txt +FILE: ../../../third_party/icu/source/data/region/kde.txt +FILE: ../../../third_party/icu/source/data/region/kea.txt +FILE: ../../../third_party/icu/source/data/region/kgp.txt +FILE: ../../../third_party/icu/source/data/region/khq.txt +FILE: ../../../third_party/icu/source/data/region/ki.txt +FILE: ../../../third_party/icu/source/data/region/kk.txt +FILE: ../../../third_party/icu/source/data/region/kkj.txt +FILE: ../../../third_party/icu/source/data/region/kl.txt +FILE: ../../../third_party/icu/source/data/region/kln.txt +FILE: ../../../third_party/icu/source/data/region/km.txt +FILE: ../../../third_party/icu/source/data/region/kn.txt +FILE: ../../../third_party/icu/source/data/region/ko.txt +FILE: ../../../third_party/icu/source/data/region/ko_KP.txt +FILE: ../../../third_party/icu/source/data/region/kok.txt +FILE: ../../../third_party/icu/source/data/region/ks.txt +FILE: ../../../third_party/icu/source/data/region/ks_Arab.txt +FILE: ../../../third_party/icu/source/data/region/ks_Arab_IN.txt +FILE: ../../../third_party/icu/source/data/region/ks_Deva.txt +FILE: ../../../third_party/icu/source/data/region/ks_IN.txt +FILE: ../../../third_party/icu/source/data/region/ksb.txt +FILE: ../../../third_party/icu/source/data/region/ksf.txt +FILE: ../../../third_party/icu/source/data/region/ksh.txt +FILE: ../../../third_party/icu/source/data/region/ku.txt +FILE: ../../../third_party/icu/source/data/region/kw.txt +FILE: ../../../third_party/icu/source/data/region/ky.txt +FILE: ../../../third_party/icu/source/data/region/lag.txt +FILE: ../../../third_party/icu/source/data/region/lb.txt +FILE: ../../../third_party/icu/source/data/region/lg.txt +FILE: ../../../third_party/icu/source/data/region/lkt.txt +FILE: ../../../third_party/icu/source/data/region/ln.txt +FILE: ../../../third_party/icu/source/data/region/lo.txt +FILE: ../../../third_party/icu/source/data/region/lrc.txt +FILE: ../../../third_party/icu/source/data/region/lt.txt +FILE: ../../../third_party/icu/source/data/region/lu.txt +FILE: ../../../third_party/icu/source/data/region/luo.txt +FILE: ../../../third_party/icu/source/data/region/luy.txt +FILE: ../../../third_party/icu/source/data/region/lv.txt +FILE: ../../../third_party/icu/source/data/region/mai.txt +FILE: ../../../third_party/icu/source/data/region/mas.txt +FILE: ../../../third_party/icu/source/data/region/mer.txt +FILE: ../../../third_party/icu/source/data/region/mfe.txt +FILE: ../../../third_party/icu/source/data/region/mg.txt +FILE: ../../../third_party/icu/source/data/region/mgh.txt +FILE: ../../../third_party/icu/source/data/region/mgo.txt +FILE: ../../../third_party/icu/source/data/region/mi.txt +FILE: ../../../third_party/icu/source/data/region/mk.txt +FILE: ../../../third_party/icu/source/data/region/ml.txt +FILE: ../../../third_party/icu/source/data/region/mn.txt +FILE: ../../../third_party/icu/source/data/region/mni.txt +FILE: ../../../third_party/icu/source/data/region/mni_Beng.txt +FILE: ../../../third_party/icu/source/data/region/mni_Beng_IN.txt +FILE: ../../../third_party/icu/source/data/region/mni_IN.txt +FILE: ../../../third_party/icu/source/data/region/mo.txt +FILE: ../../../third_party/icu/source/data/region/mr.txt +FILE: ../../../third_party/icu/source/data/region/ms.txt +FILE: ../../../third_party/icu/source/data/region/mt.txt +FILE: ../../../third_party/icu/source/data/region/mua.txt +FILE: ../../../third_party/icu/source/data/region/my.txt +FILE: ../../../third_party/icu/source/data/region/mzn.txt +FILE: ../../../third_party/icu/source/data/region/naq.txt +FILE: ../../../third_party/icu/source/data/region/nb.txt +FILE: ../../../third_party/icu/source/data/region/nd.txt +FILE: ../../../third_party/icu/source/data/region/ne.txt +FILE: ../../../third_party/icu/source/data/region/nl.txt +FILE: ../../../third_party/icu/source/data/region/nmg.txt +FILE: ../../../third_party/icu/source/data/region/nn.txt +FILE: ../../../third_party/icu/source/data/region/nn_NO.txt +FILE: ../../../third_party/icu/source/data/region/nnh.txt +FILE: ../../../third_party/icu/source/data/region/no.txt +FILE: ../../../third_party/icu/source/data/region/no_NO.txt +FILE: ../../../third_party/icu/source/data/region/no_NO_NY.txt +FILE: ../../../third_party/icu/source/data/region/nus.txt +FILE: ../../../third_party/icu/source/data/region/nyn.txt +FILE: ../../../third_party/icu/source/data/region/om.txt +FILE: ../../../third_party/icu/source/data/region/or.txt +FILE: ../../../third_party/icu/source/data/region/os.txt +FILE: ../../../third_party/icu/source/data/region/pa.txt +FILE: ../../../third_party/icu/source/data/region/pa_Arab.txt +FILE: ../../../third_party/icu/source/data/region/pa_Arab_PK.txt +FILE: ../../../third_party/icu/source/data/region/pa_Guru.txt +FILE: ../../../third_party/icu/source/data/region/pa_Guru_IN.txt +FILE: ../../../third_party/icu/source/data/region/pa_IN.txt +FILE: ../../../third_party/icu/source/data/region/pa_PK.txt +FILE: ../../../third_party/icu/source/data/region/pcm.txt +FILE: ../../../third_party/icu/source/data/region/pl.txt +FILE: ../../../third_party/icu/source/data/region/ps.txt +FILE: ../../../third_party/icu/source/data/region/ps_PK.txt +FILE: ../../../third_party/icu/source/data/region/pt.txt +FILE: ../../../third_party/icu/source/data/region/pt_AO.txt +FILE: ../../../third_party/icu/source/data/region/pt_CH.txt +FILE: ../../../third_party/icu/source/data/region/pt_CV.txt +FILE: ../../../third_party/icu/source/data/region/pt_GQ.txt +FILE: ../../../third_party/icu/source/data/region/pt_GW.txt +FILE: ../../../third_party/icu/source/data/region/pt_LU.txt +FILE: ../../../third_party/icu/source/data/region/pt_MO.txt +FILE: ../../../third_party/icu/source/data/region/pt_MZ.txt +FILE: ../../../third_party/icu/source/data/region/pt_PT.txt +FILE: ../../../third_party/icu/source/data/region/pt_ST.txt +FILE: ../../../third_party/icu/source/data/region/pt_TL.txt +FILE: ../../../third_party/icu/source/data/region/qu.txt +FILE: ../../../third_party/icu/source/data/region/raj.txt +FILE: ../../../third_party/icu/source/data/region/rm.txt +FILE: ../../../third_party/icu/source/data/region/rn.txt +FILE: ../../../third_party/icu/source/data/region/ro.txt +FILE: ../../../third_party/icu/source/data/region/ro_MD.txt +FILE: ../../../third_party/icu/source/data/region/rof.txt +FILE: ../../../third_party/icu/source/data/region/root.txt +FILE: ../../../third_party/icu/source/data/region/ru.txt +FILE: ../../../third_party/icu/source/data/region/ru_UA.txt +FILE: ../../../third_party/icu/source/data/region/rw.txt +FILE: ../../../third_party/icu/source/data/region/rwk.txt +FILE: ../../../third_party/icu/source/data/region/sa.txt +FILE: ../../../third_party/icu/source/data/region/sah.txt +FILE: ../../../third_party/icu/source/data/region/saq.txt +FILE: ../../../third_party/icu/source/data/region/sat.txt +FILE: ../../../third_party/icu/source/data/region/sat_IN.txt +FILE: ../../../third_party/icu/source/data/region/sat_Olck.txt +FILE: ../../../third_party/icu/source/data/region/sat_Olck_IN.txt +FILE: ../../../third_party/icu/source/data/region/sbp.txt +FILE: ../../../third_party/icu/source/data/region/sc.txt +FILE: ../../../third_party/icu/source/data/region/sd.txt +FILE: ../../../third_party/icu/source/data/region/sd_Arab.txt +FILE: ../../../third_party/icu/source/data/region/sd_Arab_PK.txt +FILE: ../../../third_party/icu/source/data/region/sd_Deva.txt +FILE: ../../../third_party/icu/source/data/region/sd_Deva_IN.txt +FILE: ../../../third_party/icu/source/data/region/sd_IN.txt +FILE: ../../../third_party/icu/source/data/region/sd_PK.txt +FILE: ../../../third_party/icu/source/data/region/se.txt +FILE: ../../../third_party/icu/source/data/region/se_FI.txt +FILE: ../../../third_party/icu/source/data/region/seh.txt +FILE: ../../../third_party/icu/source/data/region/ses.txt +FILE: ../../../third_party/icu/source/data/region/sg.txt +FILE: ../../../third_party/icu/source/data/region/sh.txt +FILE: ../../../third_party/icu/source/data/region/sh_BA.txt +FILE: ../../../third_party/icu/source/data/region/sh_CS.txt +FILE: ../../../third_party/icu/source/data/region/sh_YU.txt +FILE: ../../../third_party/icu/source/data/region/shi.txt +FILE: ../../../third_party/icu/source/data/region/shi_Latn.txt +FILE: ../../../third_party/icu/source/data/region/shi_MA.txt +FILE: ../../../third_party/icu/source/data/region/shi_Tfng.txt +FILE: ../../../third_party/icu/source/data/region/shi_Tfng_MA.txt +FILE: ../../../third_party/icu/source/data/region/si.txt +FILE: ../../../third_party/icu/source/data/region/sk.txt +FILE: ../../../third_party/icu/source/data/region/sl.txt +FILE: ../../../third_party/icu/source/data/region/smn.txt +FILE: ../../../third_party/icu/source/data/region/sn.txt +FILE: ../../../third_party/icu/source/data/region/so.txt +FILE: ../../../third_party/icu/source/data/region/sq.txt +FILE: ../../../third_party/icu/source/data/region/sr.txt +FILE: ../../../third_party/icu/source/data/region/sr_BA.txt +FILE: ../../../third_party/icu/source/data/region/sr_CS.txt +FILE: ../../../third_party/icu/source/data/region/sr_Cyrl.txt +FILE: ../../../third_party/icu/source/data/region/sr_Cyrl_BA.txt +FILE: ../../../third_party/icu/source/data/region/sr_Cyrl_CS.txt +FILE: ../../../third_party/icu/source/data/region/sr_Cyrl_ME.txt +FILE: ../../../third_party/icu/source/data/region/sr_Cyrl_RS.txt +FILE: ../../../third_party/icu/source/data/region/sr_Cyrl_XK.txt +FILE: ../../../third_party/icu/source/data/region/sr_Cyrl_YU.txt +FILE: ../../../third_party/icu/source/data/region/sr_Latn.txt +FILE: ../../../third_party/icu/source/data/region/sr_Latn_BA.txt +FILE: ../../../third_party/icu/source/data/region/sr_Latn_CS.txt +FILE: ../../../third_party/icu/source/data/region/sr_Latn_ME.txt +FILE: ../../../third_party/icu/source/data/region/sr_Latn_RS.txt +FILE: ../../../third_party/icu/source/data/region/sr_Latn_XK.txt +FILE: ../../../third_party/icu/source/data/region/sr_Latn_YU.txt +FILE: ../../../third_party/icu/source/data/region/sr_ME.txt +FILE: ../../../third_party/icu/source/data/region/sr_RS.txt +FILE: ../../../third_party/icu/source/data/region/sr_XK.txt +FILE: ../../../third_party/icu/source/data/region/sr_YU.txt +FILE: ../../../third_party/icu/source/data/region/su.txt +FILE: ../../../third_party/icu/source/data/region/su_ID.txt +FILE: ../../../third_party/icu/source/data/region/su_Latn.txt +FILE: ../../../third_party/icu/source/data/region/su_Latn_ID.txt +FILE: ../../../third_party/icu/source/data/region/sv.txt +FILE: ../../../third_party/icu/source/data/region/sw.txt +FILE: ../../../third_party/icu/source/data/region/sw_CD.txt +FILE: ../../../third_party/icu/source/data/region/sw_KE.txt +FILE: ../../../third_party/icu/source/data/region/ta.txt +FILE: ../../../third_party/icu/source/data/region/te.txt +FILE: ../../../third_party/icu/source/data/region/teo.txt +FILE: ../../../third_party/icu/source/data/region/tg.txt +FILE: ../../../third_party/icu/source/data/region/th.txt +FILE: ../../../third_party/icu/source/data/region/ti.txt +FILE: ../../../third_party/icu/source/data/region/tk.txt +FILE: ../../../third_party/icu/source/data/region/tl.txt +FILE: ../../../third_party/icu/source/data/region/tl_PH.txt +FILE: ../../../third_party/icu/source/data/region/to.txt +FILE: ../../../third_party/icu/source/data/region/tr.txt +FILE: ../../../third_party/icu/source/data/region/tt.txt +FILE: ../../../third_party/icu/source/data/region/twq.txt +FILE: ../../../third_party/icu/source/data/region/tzm.txt +FILE: ../../../third_party/icu/source/data/region/ug.txt +FILE: ../../../third_party/icu/source/data/region/uk.txt +FILE: ../../../third_party/icu/source/data/region/ur.txt +FILE: ../../../third_party/icu/source/data/region/ur_IN.txt +FILE: ../../../third_party/icu/source/data/region/uz.txt +FILE: ../../../third_party/icu/source/data/region/uz_AF.txt +FILE: ../../../third_party/icu/source/data/region/uz_Arab.txt +FILE: ../../../third_party/icu/source/data/region/uz_Arab_AF.txt +FILE: ../../../third_party/icu/source/data/region/uz_Cyrl.txt +FILE: ../../../third_party/icu/source/data/region/uz_Latn.txt +FILE: ../../../third_party/icu/source/data/region/uz_Latn_UZ.txt +FILE: ../../../third_party/icu/source/data/region/uz_UZ.txt +FILE: ../../../third_party/icu/source/data/region/vai.txt +FILE: ../../../third_party/icu/source/data/region/vai_LR.txt +FILE: ../../../third_party/icu/source/data/region/vai_Latn.txt +FILE: ../../../third_party/icu/source/data/region/vai_Vaii.txt +FILE: ../../../third_party/icu/source/data/region/vai_Vaii_LR.txt +FILE: ../../../third_party/icu/source/data/region/vi.txt +FILE: ../../../third_party/icu/source/data/region/vun.txt +FILE: ../../../third_party/icu/source/data/region/wae.txt +FILE: ../../../third_party/icu/source/data/region/wo.txt +FILE: ../../../third_party/icu/source/data/region/xh.txt +FILE: ../../../third_party/icu/source/data/region/xog.txt +FILE: ../../../third_party/icu/source/data/region/yav.txt +FILE: ../../../third_party/icu/source/data/region/yi.txt +FILE: ../../../third_party/icu/source/data/region/yo.txt +FILE: ../../../third_party/icu/source/data/region/yo_BJ.txt +FILE: ../../../third_party/icu/source/data/region/yrl.txt +FILE: ../../../third_party/icu/source/data/region/yrl_CO.txt +FILE: ../../../third_party/icu/source/data/region/yrl_VE.txt +FILE: ../../../third_party/icu/source/data/region/yue.txt +FILE: ../../../third_party/icu/source/data/region/yue_CN.txt +FILE: ../../../third_party/icu/source/data/region/yue_HK.txt +FILE: ../../../third_party/icu/source/data/region/yue_Hans.txt +FILE: ../../../third_party/icu/source/data/region/yue_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/region/yue_Hant.txt +FILE: ../../../third_party/icu/source/data/region/yue_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/region/zgh.txt +FILE: ../../../third_party/icu/source/data/region/zh.txt +FILE: ../../../third_party/icu/source/data/region/zh_CN.txt +FILE: ../../../third_party/icu/source/data/region/zh_HK.txt +FILE: ../../../third_party/icu/source/data/region/zh_Hans.txt +FILE: ../../../third_party/icu/source/data/region/zh_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/region/zh_Hans_SG.txt +FILE: ../../../third_party/icu/source/data/region/zh_Hant.txt +FILE: ../../../third_party/icu/source/data/region/zh_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/region/zh_Hant_MO.txt +FILE: ../../../third_party/icu/source/data/region/zh_Hant_TW.txt +FILE: ../../../third_party/icu/source/data/region/zh_MO.txt +FILE: ../../../third_party/icu/source/data/region/zh_SG.txt +FILE: ../../../third_party/icu/source/data/region/zh_TW.txt +FILE: ../../../third_party/icu/source/data/region/zu.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3491.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3530cs.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3530csci.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3530mixp.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3722.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3920node.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc3920res.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4011.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4013.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4505.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4518.txt +FILE: ../../../third_party/icu/source/data/sprep/rfc4518ci.txt +FILE: ../../../third_party/icu/source/data/translit/Any_Accents.txt +FILE: ../../../third_party/icu/source/data/translit/Any_Publishing.txt +FILE: ../../../third_party/icu/source/data/translit/Arab_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Beng_Arab.txt +FILE: ../../../third_party/icu/source/data/translit/Beng_Deva.txt +FILE: ../../../third_party/icu/source/data/translit/Beng_Gujr.txt +FILE: ../../../third_party/icu/source/data/translit/Beng_Guru.txt +FILE: ../../../third_party/icu/source/data/translit/Beng_Knda.txt +FILE: ../../../third_party/icu/source/data/translit/Beng_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Beng_Mlym.txt +FILE: ../../../third_party/icu/source/data/translit/Beng_Orya.txt +FILE: ../../../third_party/icu/source/data/translit/Beng_Taml.txt +FILE: ../../../third_party/icu/source/data/translit/Beng_Telu.txt +FILE: ../../../third_party/icu/source/data/translit/Beng_ur.txt +FILE: ../../../third_party/icu/source/data/translit/Bengali_InterIndic.txt +FILE: ../../../third_party/icu/source/data/translit/Cyrl_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Deva_Arab.txt +FILE: ../../../third_party/icu/source/data/translit/Deva_Beng.txt +FILE: ../../../third_party/icu/source/data/translit/Deva_Gujr.txt +FILE: ../../../third_party/icu/source/data/translit/Deva_Guru.txt +FILE: ../../../third_party/icu/source/data/translit/Deva_Knda.txt +FILE: ../../../third_party/icu/source/data/translit/Deva_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Deva_Mlym.txt +FILE: ../../../third_party/icu/source/data/translit/Deva_Orya.txt +FILE: ../../../third_party/icu/source/data/translit/Deva_Taml.txt +FILE: ../../../third_party/icu/source/data/translit/Deva_Telu.txt +FILE: ../../../third_party/icu/source/data/translit/Deva_ur.txt +FILE: ../../../third_party/icu/source/data/translit/Devanagari_InterIndic.txt +FILE: ../../../third_party/icu/source/data/translit/Ethi_Cyrl_Gutgarts.txt +FILE: ../../../third_party/icu/source/data/translit/Ethi_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Ethi_Latn_ALALOC.txt +FILE: ../../../third_party/icu/source/data/translit/Ethi_Latn_Aethiopi.txt +FILE: ../../../third_party/icu/source/data/translit/Ethi_Latn_Beta_Metsehaf.txt +FILE: ../../../third_party/icu/source/data/translit/Ethi_Latn_ES3842.txt +FILE: ../../../third_party/icu/source/data/translit/Ethi_Latn_IES_JES_1964.txt +FILE: ../../../third_party/icu/source/data/translit/Ethi_Latn_Lambdin.txt +FILE: ../../../third_party/icu/source/data/translit/Ethi_Latn_SERA.txt +FILE: ../../../third_party/icu/source/data/translit/Fullwidth_Halfwidth.txt +FILE: ../../../third_party/icu/source/data/translit/Geor_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Grek_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Grek_Latn_UNGEGN.txt +FILE: ../../../third_party/icu/source/data/translit/Gujarati_InterIndic.txt +FILE: ../../../third_party/icu/source/data/translit/Gujr_Arab.txt +FILE: ../../../third_party/icu/source/data/translit/Gujr_Beng.txt +FILE: ../../../third_party/icu/source/data/translit/Gujr_Deva.txt +FILE: ../../../third_party/icu/source/data/translit/Gujr_Guru.txt +FILE: ../../../third_party/icu/source/data/translit/Gujr_Knda.txt +FILE: ../../../third_party/icu/source/data/translit/Gujr_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Gujr_Mlym.txt +FILE: ../../../third_party/icu/source/data/translit/Gujr_Orya.txt +FILE: ../../../third_party/icu/source/data/translit/Gujr_Taml.txt +FILE: ../../../third_party/icu/source/data/translit/Gujr_Telu.txt +FILE: ../../../third_party/icu/source/data/translit/Gujr_ur.txt +FILE: ../../../third_party/icu/source/data/translit/Gurmukhi_InterIndic.txt +FILE: ../../../third_party/icu/source/data/translit/Guru_Arab.txt +FILE: ../../../third_party/icu/source/data/translit/Guru_Beng.txt +FILE: ../../../third_party/icu/source/data/translit/Guru_Deva.txt +FILE: ../../../third_party/icu/source/data/translit/Guru_Gujr.txt +FILE: ../../../third_party/icu/source/data/translit/Guru_Knda.txt +FILE: ../../../third_party/icu/source/data/translit/Guru_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Guru_Mlym.txt +FILE: ../../../third_party/icu/source/data/translit/Guru_Orya.txt +FILE: ../../../third_party/icu/source/data/translit/Guru_Taml.txt +FILE: ../../../third_party/icu/source/data/translit/Guru_Telu.txt +FILE: ../../../third_party/icu/source/data/translit/Guru_ur.txt +FILE: ../../../third_party/icu/source/data/translit/Han_Latin_Names.txt +FILE: ../../../third_party/icu/source/data/translit/Han_Spacedhan.txt +FILE: ../../../third_party/icu/source/data/translit/Hang_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Hani_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Hans_Hant.txt +FILE: ../../../third_party/icu/source/data/translit/Hebr_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Hira_Kana.txt +FILE: ../../../third_party/icu/source/data/translit/Hira_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/InterIndic_Arabic.txt +FILE: ../../../third_party/icu/source/data/translit/InterIndic_Bengali.txt +FILE: ../../../third_party/icu/source/data/translit/InterIndic_Devanagari.txt +FILE: ../../../third_party/icu/source/data/translit/InterIndic_Gujarati.txt +FILE: ../../../third_party/icu/source/data/translit/InterIndic_Gurmukhi.txt +FILE: ../../../third_party/icu/source/data/translit/InterIndic_Kannada.txt +FILE: ../../../third_party/icu/source/data/translit/InterIndic_Latin.txt +FILE: ../../../third_party/icu/source/data/translit/InterIndic_Malayalam.txt +FILE: ../../../third_party/icu/source/data/translit/InterIndic_Oriya.txt +FILE: ../../../third_party/icu/source/data/translit/InterIndic_Tamil.txt +FILE: ../../../third_party/icu/source/data/translit/InterIndic_Telugu.txt +FILE: ../../../third_party/icu/source/data/translit/InterIndic_ur.txt +FILE: ../../../third_party/icu/source/data/translit/Jamo_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Kannada_InterIndic.txt +FILE: ../../../third_party/icu/source/data/translit/Knda_Arab.txt +FILE: ../../../third_party/icu/source/data/translit/Knda_Beng.txt +FILE: ../../../third_party/icu/source/data/translit/Knda_Deva.txt +FILE: ../../../third_party/icu/source/data/translit/Knda_Gujr.txt +FILE: ../../../third_party/icu/source/data/translit/Knda_Guru.txt +FILE: ../../../third_party/icu/source/data/translit/Knda_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Knda_Mlym.txt +FILE: ../../../third_party/icu/source/data/translit/Knda_Orya.txt +FILE: ../../../third_party/icu/source/data/translit/Knda_Taml.txt +FILE: ../../../third_party/icu/source/data/translit/Knda_Telu.txt +FILE: ../../../third_party/icu/source/data/translit/Knda_ur.txt +FILE: ../../../third_party/icu/source/data/translit/Latin_ASCII.txt +FILE: ../../../third_party/icu/source/data/translit/Latin_ConjoiningJamo.txt +FILE: ../../../third_party/icu/source/data/translit/Latin_InterIndic.txt +FILE: ../../../third_party/icu/source/data/translit/Latin_NumericPinyin.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Armn.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Beng.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Bopo.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Cans.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Deva.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Ethi_Williamson.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Gujr.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Guru.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Hang.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Jamo.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Kana.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Knda.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Mlym.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Orya.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Taml.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Telu.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Thaa.txt +FILE: ../../../third_party/icu/source/data/translit/Latn_Thai.txt +FILE: ../../../third_party/icu/source/data/translit/Malayalam_InterIndic.txt +FILE: ../../../third_party/icu/source/data/translit/Mlym_Arab.txt +FILE: ../../../third_party/icu/source/data/translit/Mlym_Beng.txt +FILE: ../../../third_party/icu/source/data/translit/Mlym_Deva.txt +FILE: ../../../third_party/icu/source/data/translit/Mlym_Gujr.txt +FILE: ../../../third_party/icu/source/data/translit/Mlym_Guru.txt +FILE: ../../../third_party/icu/source/data/translit/Mlym_Knda.txt +FILE: ../../../third_party/icu/source/data/translit/Mlym_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Mlym_Orya.txt +FILE: ../../../third_party/icu/source/data/translit/Mlym_Taml.txt +FILE: ../../../third_party/icu/source/data/translit/Mlym_Telu.txt +FILE: ../../../third_party/icu/source/data/translit/Mlym_ur.txt +FILE: ../../../third_party/icu/source/data/translit/Oriya_InterIndic.txt +FILE: ../../../third_party/icu/source/data/translit/Orya_Arab.txt +FILE: ../../../third_party/icu/source/data/translit/Orya_Beng.txt +FILE: ../../../third_party/icu/source/data/translit/Orya_Deva.txt +FILE: ../../../third_party/icu/source/data/translit/Orya_Gujr.txt +FILE: ../../../third_party/icu/source/data/translit/Orya_Guru.txt +FILE: ../../../third_party/icu/source/data/translit/Orya_Knda.txt +FILE: ../../../third_party/icu/source/data/translit/Orya_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Orya_Mlym.txt +FILE: ../../../third_party/icu/source/data/translit/Orya_Taml.txt +FILE: ../../../third_party/icu/source/data/translit/Orya_Telu.txt +FILE: ../../../third_party/icu/source/data/translit/Orya_ur.txt +FILE: ../../../third_party/icu/source/data/translit/Pinyin_NumericPinyin.txt +FILE: ../../../third_party/icu/source/data/translit/Syrc_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Tamil_InterIndic.txt +FILE: ../../../third_party/icu/source/data/translit/Taml_Arab.txt +FILE: ../../../third_party/icu/source/data/translit/Taml_Beng.txt +FILE: ../../../third_party/icu/source/data/translit/Taml_Deva.txt +FILE: ../../../third_party/icu/source/data/translit/Taml_Gujr.txt +FILE: ../../../third_party/icu/source/data/translit/Taml_Guru.txt +FILE: ../../../third_party/icu/source/data/translit/Taml_Knda.txt +FILE: ../../../third_party/icu/source/data/translit/Taml_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Taml_Mlym.txt +FILE: ../../../third_party/icu/source/data/translit/Taml_Orya.txt +FILE: ../../../third_party/icu/source/data/translit/Taml_Telu.txt +FILE: ../../../third_party/icu/source/data/translit/Taml_ur.txt +FILE: ../../../third_party/icu/source/data/translit/Telu_Arab.txt +FILE: ../../../third_party/icu/source/data/translit/Telu_Beng.txt +FILE: ../../../third_party/icu/source/data/translit/Telu_Deva.txt +FILE: ../../../third_party/icu/source/data/translit/Telu_Gujr.txt +FILE: ../../../third_party/icu/source/data/translit/Telu_Guru.txt +FILE: ../../../third_party/icu/source/data/translit/Telu_Knda.txt +FILE: ../../../third_party/icu/source/data/translit/Telu_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Telu_Mlym.txt +FILE: ../../../third_party/icu/source/data/translit/Telu_Orya.txt +FILE: ../../../third_party/icu/source/data/translit/Telu_Taml.txt +FILE: ../../../third_party/icu/source/data/translit/Telu_ur.txt +FILE: ../../../third_party/icu/source/data/translit/Telugu_InterIndic.txt +FILE: ../../../third_party/icu/source/data/translit/ThaiLogical_Latin.txt +FILE: ../../../third_party/icu/source/data/translit/Thai_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/Thai_ThaiLogical.txt +FILE: ../../../third_party/icu/source/data/translit/Thai_ThaiSemi.txt +FILE: ../../../third_party/icu/source/data/translit/Zawgyi_my.txt +FILE: ../../../third_party/icu/source/data/translit/am_Ethi_am_Brai.txt +FILE: ../../../third_party/icu/source/data/translit/am_Ethi_d0_Morse.txt +FILE: ../../../third_party/icu/source/data/translit/am_am_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/am_am_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/am_ar.txt +FILE: ../../../third_party/icu/source/data/translit/am_chr.txt +FILE: ../../../third_party/icu/source/data/translit/am_fa.txt +FILE: ../../../third_party/icu/source/data/translit/ar_ar_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/az_Cyrl_az_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/az_Lower.txt +FILE: ../../../third_party/icu/source/data/translit/az_Title.txt +FILE: ../../../third_party/icu/source/data/translit/az_Upper.txt +FILE: ../../../third_party/icu/source/data/translit/be_be_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/bg_bg_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/blt_blt_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/byn_Ethi_byn_Latn_Tekie_Alibekit.txt +FILE: ../../../third_party/icu/source/data/translit/byn_Ethi_byn_Latn_Xaleget.txt +FILE: ../../../third_party/icu/source/data/translit/ch_am.txt +FILE: ../../../third_party/icu/source/data/translit/ch_ar.txt +FILE: ../../../third_party/icu/source/data/translit/ch_ch_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/ch_chr.txt +FILE: ../../../third_party/icu/source/data/translit/ch_fa.txt +FILE: ../../../third_party/icu/source/data/translit/chr_chr_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/cs_FONIPA_ja.txt +FILE: ../../../third_party/icu/source/data/translit/cs_FONIPA_ko.txt +FILE: ../../../third_party/icu/source/data/translit/cs_am.txt +FILE: ../../../third_party/icu/source/data/translit/cs_ar.txt +FILE: ../../../third_party/icu/source/data/translit/cs_chr.txt +FILE: ../../../third_party/icu/source/data/translit/cs_cs_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/cs_fa.txt +FILE: ../../../third_party/icu/source/data/translit/cs_ja.txt +FILE: ../../../third_party/icu/source/data/translit/cs_ko.txt +FILE: ../../../third_party/icu/source/data/translit/cy_cy_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/de_ASCII.txt +FILE: ../../../third_party/icu/source/data/translit/dsb_dsb_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/dv_dv_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/el.txt +FILE: ../../../third_party/icu/source/data/translit/el_Lower.txt +FILE: ../../../third_party/icu/source/data/translit/el_Title.txt +FILE: ../../../third_party/icu/source/data/translit/el_Upper.txt +FILE: ../../../third_party/icu/source/data/translit/el_el_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/en.txt +FILE: ../../../third_party/icu/source/data/translit/eo_am.txt +FILE: ../../../third_party/icu/source/data/translit/eo_ar.txt +FILE: ../../../third_party/icu/source/data/translit/eo_chr.txt +FILE: ../../../third_party/icu/source/data/translit/eo_eo_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/eo_fa.txt +FILE: ../../../third_party/icu/source/data/translit/es_419_am.txt +FILE: ../../../third_party/icu/source/data/translit/es_419_ar.txt +FILE: ../../../third_party/icu/source/data/translit/es_419_chr.txt +FILE: ../../../third_party/icu/source/data/translit/es_419_fa.txt +FILE: ../../../third_party/icu/source/data/translit/es_419_ja.txt +FILE: ../../../third_party/icu/source/data/translit/es_419_zh.txt +FILE: ../../../third_party/icu/source/data/translit/es_FONIPA_am.txt +FILE: ../../../third_party/icu/source/data/translit/es_FONIPA_es_419_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/es_FONIPA_ja.txt +FILE: ../../../third_party/icu/source/data/translit/es_FONIPA_zh.txt +FILE: ../../../third_party/icu/source/data/translit/es_am.txt +FILE: ../../../third_party/icu/source/data/translit/es_ar.txt +FILE: ../../../third_party/icu/source/data/translit/es_chr.txt +FILE: ../../../third_party/icu/source/data/translit/es_es_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/es_fa.txt +FILE: ../../../third_party/icu/source/data/translit/es_ja.txt +FILE: ../../../third_party/icu/source/data/translit/es_zh.txt +FILE: ../../../third_party/icu/source/data/translit/fa_fa_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/fa_fa_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/gz_Ethi_Sarb.txt +FILE: ../../../third_party/icu/source/data/translit/ha_ha_NE.txt +FILE: ../../../third_party/icu/source/data/translit/he_he_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/hy_AREVMDA_am.txt +FILE: ../../../third_party/icu/source/data/translit/hy_AREVMDA_ar.txt +FILE: ../../../third_party/icu/source/data/translit/hy_AREVMDA_chr.txt +FILE: ../../../third_party/icu/source/data/translit/hy_AREVMDA_fa.txt +FILE: ../../../third_party/icu/source/data/translit/hy_AREVMDA_hy_AREVMDA_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/hy_am.txt +FILE: ../../../third_party/icu/source/data/translit/hy_ar.txt +FILE: ../../../third_party/icu/source/data/translit/hy_chr.txt +FILE: ../../../third_party/icu/source/data/translit/hy_fa.txt +FILE: ../../../third_party/icu/source/data/translit/hy_hy_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/hy_hy_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/ia_am.txt +FILE: ../../../third_party/icu/source/data/translit/ia_ar.txt +FILE: ../../../third_party/icu/source/data/translit/ia_chr.txt +FILE: ../../../third_party/icu/source/data/translit/ia_fa.txt +FILE: ../../../third_party/icu/source/data/translit/ia_ia_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/it_am.txt +FILE: ../../../third_party/icu/source/data/translit/it_ja.txt +FILE: ../../../third_party/icu/source/data/translit/ja_Hrkt_ja_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/ja_Latn_ko.txt +FILE: ../../../third_party/icu/source/data/translit/ja_Latn_ru.txt +FILE: ../../../third_party/icu/source/data/translit/ka_ka_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/ka_ka_Latn_BGN_1981.txt +FILE: ../../../third_party/icu/source/data/translit/kk_am.txt +FILE: ../../../third_party/icu/source/data/translit/kk_ar.txt +FILE: ../../../third_party/icu/source/data/translit/kk_chr.txt +FILE: ../../../third_party/icu/source/data/translit/kk_fa.txt +FILE: ../../../third_party/icu/source/data/translit/kk_kk_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/kk_kk_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/ko_ko_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/ky_am.txt +FILE: ../../../third_party/icu/source/data/translit/ky_ar.txt +FILE: ../../../third_party/icu/source/data/translit/ky_chr.txt +FILE: ../../../third_party/icu/source/data/translit/ky_fa.txt +FILE: ../../../third_party/icu/source/data/translit/ky_ky_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/ky_ky_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/la_la_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/lt_Lower.txt +FILE: ../../../third_party/icu/source/data/translit/lt_Title.txt +FILE: ../../../third_party/icu/source/data/translit/lt_Upper.txt +FILE: ../../../third_party/icu/source/data/translit/mk_mk_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/mn_mn_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/mn_mn_Latn_MNS.txt +FILE: ../../../third_party/icu/source/data/translit/my_Zawgyi.txt +FILE: ../../../third_party/icu/source/data/translit/my_am.txt +FILE: ../../../third_party/icu/source/data/translit/my_ar.txt +FILE: ../../../third_party/icu/source/data/translit/my_chr.txt +FILE: ../../../third_party/icu/source/data/translit/my_fa.txt +FILE: ../../../third_party/icu/source/data/translit/my_my_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/my_my_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/nl_Title.txt +FILE: ../../../third_party/icu/source/data/translit/nv_nv_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/pl_FONIPA_ja.txt +FILE: ../../../third_party/icu/source/data/translit/pl_am.txt +FILE: ../../../third_party/icu/source/data/translit/pl_ar.txt +FILE: ../../../third_party/icu/source/data/translit/pl_chr.txt +FILE: ../../../third_party/icu/source/data/translit/pl_fa.txt +FILE: ../../../third_party/icu/source/data/translit/pl_ja.txt +FILE: ../../../third_party/icu/source/data/translit/pl_pl_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/ps_ps_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/rm_SURSILV_am.txt +FILE: ../../../third_party/icu/source/data/translit/rm_SURSILV_ar.txt +FILE: ../../../third_party/icu/source/data/translit/rm_SURSILV_chr.txt +FILE: ../../../third_party/icu/source/data/translit/rm_SURSILV_fa.txt +FILE: ../../../third_party/icu/source/data/translit/rm_SURSILV_rm_FONIPA_SURSILV.txt +FILE: ../../../third_party/icu/source/data/translit/ro_FONIPA_ja.txt +FILE: ../../../third_party/icu/source/data/translit/ro_am.txt +FILE: ../../../third_party/icu/source/data/translit/ro_ar.txt +FILE: ../../../third_party/icu/source/data/translit/ro_chr.txt +FILE: ../../../third_party/icu/source/data/translit/ro_fa.txt +FILE: ../../../third_party/icu/source/data/translit/ro_ja.txt +FILE: ../../../third_party/icu/source/data/translit/ro_ro_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/root.txt +FILE: ../../../third_party/icu/source/data/translit/ru_Latn_ru_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/ru_ja.txt +FILE: ../../../third_party/icu/source/data/translit/ru_ru_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/ru_zh.txt +FILE: ../../../third_party/icu/source/data/translit/sat_Olck_sat_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/sat_am.txt +FILE: ../../../third_party/icu/source/data/translit/sat_ar.txt +FILE: ../../../third_party/icu/source/data/translit/sat_chr.txt +FILE: ../../../third_party/icu/source/data/translit/sat_fa.txt +FILE: ../../../third_party/icu/source/data/translit/sgw_Ethi_Ethi_Gurage_2013.txt +FILE: ../../../third_party/icu/source/data/translit/si_am.txt +FILE: ../../../third_party/icu/source/data/translit/si_ar.txt +FILE: ../../../third_party/icu/source/data/translit/si_chr.txt +FILE: ../../../third_party/icu/source/data/translit/si_fa.txt +FILE: ../../../third_party/icu/source/data/translit/si_si_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/si_si_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/sk_FONIPA_ja.txt +FILE: ../../../third_party/icu/source/data/translit/sk_am.txt +FILE: ../../../third_party/icu/source/data/translit/sk_ar.txt +FILE: ../../../third_party/icu/source/data/translit/sk_chr.txt +FILE: ../../../third_party/icu/source/data/translit/sk_fa.txt +FILE: ../../../third_party/icu/source/data/translit/sk_ja.txt +FILE: ../../../third_party/icu/source/data/translit/sk_sk_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/sr_sr_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/ta_ta_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/tk_Cyrl_tk_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/tlh_am.txt +FILE: ../../../third_party/icu/source/data/translit/tlh_ar.txt +FILE: ../../../third_party/icu/source/data/translit/tlh_chr.txt +FILE: ../../../third_party/icu/source/data/translit/tlh_fa.txt +FILE: ../../../third_party/icu/source/data/translit/tlh_tlh_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/tr_Lower.txt +FILE: ../../../third_party/icu/source/data/translit/tr_Title.txt +FILE: ../../../third_party/icu/source/data/translit/tr_Upper.txt +FILE: ../../../third_party/icu/source/data/translit/ug_ug_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/uk_uk_Latn_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/und_FONIPA_ar.txt +FILE: ../../../third_party/icu/source/data/translit/und_FONIPA_chr.txt +FILE: ../../../third_party/icu/source/data/translit/und_FONIPA_fa.txt +FILE: ../../../third_party/icu/source/data/translit/und_FONIPA_und_FONXSAMP.txt +FILE: ../../../third_party/icu/source/data/translit/uz_Cyrl_uz_BGN.txt +FILE: ../../../third_party/icu/source/data/translit/uz_Cyrl_uz_Latn.txt +FILE: ../../../third_party/icu/source/data/translit/vec_vec_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/xh_am.txt +FILE: ../../../third_party/icu/source/data/translit/xh_ar.txt +FILE: ../../../third_party/icu/source/data/translit/xh_chr.txt +FILE: ../../../third_party/icu/source/data/translit/xh_fa.txt +FILE: ../../../third_party/icu/source/data/translit/xh_xh_FONIPA.txt +FILE: ../../../third_party/icu/source/data/translit/yo_yo_BJ.txt +FILE: ../../../third_party/icu/source/data/translit/zh_Latn_PINYIN_ru.txt +FILE: ../../../third_party/icu/source/data/translit/zu_am.txt +FILE: ../../../third_party/icu/source/data/translit/zu_ar.txt +FILE: ../../../third_party/icu/source/data/translit/zu_chr.txt +FILE: ../../../third_party/icu/source/data/translit/zu_fa.txt +FILE: ../../../third_party/icu/source/data/translit/zu_zu_FONIPA.txt +FILE: ../../../third_party/icu/source/data/unidata/CaseFolding.txt +FILE: ../../../third_party/icu/source/data/unidata/DerivedCoreProperties.txt +FILE: ../../../third_party/icu/source/data/unidata/DerivedNormalizationProps.txt +FILE: ../../../third_party/icu/source/data/unidata/FractionalUCA.txt +FILE: ../../../third_party/icu/source/data/unidata/NormalizationCorrections.txt +FILE: ../../../third_party/icu/source/data/unidata/NormalizationTest.txt +FILE: ../../../third_party/icu/source/data/unidata/SpecialCasing.txt +FILE: ../../../third_party/icu/source/data/unidata/UCARules.txt +FILE: ../../../third_party/icu/source/data/unidata/changes.txt +FILE: ../../../third_party/icu/source/data/unidata/confusables.txt +FILE: ../../../third_party/icu/source/data/unidata/emoji-sequences.txt +FILE: ../../../third_party/icu/source/data/unidata/emoji-zwj-sequences.txt +FILE: ../../../third_party/icu/source/data/unidata/norm2/nfc.txt +FILE: ../../../third_party/icu/source/data/unidata/norm2/nfkc.txt +FILE: ../../../third_party/icu/source/data/unidata/norm2/nfkc_cf.txt +FILE: ../../../third_party/icu/source/data/unidata/norm2/uts46.txt +FILE: ../../../third_party/icu/source/data/unidata/ppucd.txt +FILE: ../../../third_party/icu/source/data/unit/af.txt +FILE: ../../../third_party/icu/source/data/unit/agq.txt +FILE: ../../../third_party/icu/source/data/unit/ak.txt +FILE: ../../../third_party/icu/source/data/unit/am.txt +FILE: ../../../third_party/icu/source/data/unit/ar.txt +FILE: ../../../third_party/icu/source/data/unit/ar_SA.txt +FILE: ../../../third_party/icu/source/data/unit/ars.txt +FILE: ../../../third_party/icu/source/data/unit/as.txt +FILE: ../../../third_party/icu/source/data/unit/asa.txt +FILE: ../../../third_party/icu/source/data/unit/ast.txt +FILE: ../../../third_party/icu/source/data/unit/az.txt +FILE: ../../../third_party/icu/source/data/unit/az_AZ.txt +FILE: ../../../third_party/icu/source/data/unit/az_Cyrl.txt +FILE: ../../../third_party/icu/source/data/unit/az_Latn.txt +FILE: ../../../third_party/icu/source/data/unit/az_Latn_AZ.txt +FILE: ../../../third_party/icu/source/data/unit/bas.txt +FILE: ../../../third_party/icu/source/data/unit/be.txt +FILE: ../../../third_party/icu/source/data/unit/bem.txt +FILE: ../../../third_party/icu/source/data/unit/bez.txt +FILE: ../../../third_party/icu/source/data/unit/bg.txt +FILE: ../../../third_party/icu/source/data/unit/bgc.txt +FILE: ../../../third_party/icu/source/data/unit/bho.txt +FILE: ../../../third_party/icu/source/data/unit/bm.txt +FILE: ../../../third_party/icu/source/data/unit/bn.txt +FILE: ../../../third_party/icu/source/data/unit/bn_IN.txt +FILE: ../../../third_party/icu/source/data/unit/bo.txt +FILE: ../../../third_party/icu/source/data/unit/br.txt +FILE: ../../../third_party/icu/source/data/unit/brx.txt +FILE: ../../../third_party/icu/source/data/unit/bs.txt +FILE: ../../../third_party/icu/source/data/unit/bs_BA.txt +FILE: ../../../third_party/icu/source/data/unit/bs_Cyrl.txt +FILE: ../../../third_party/icu/source/data/unit/bs_Latn.txt +FILE: ../../../third_party/icu/source/data/unit/bs_Latn_BA.txt +FILE: ../../../third_party/icu/source/data/unit/ca.txt +FILE: ../../../third_party/icu/source/data/unit/ccp.txt +FILE: ../../../third_party/icu/source/data/unit/ce.txt +FILE: ../../../third_party/icu/source/data/unit/ceb.txt +FILE: ../../../third_party/icu/source/data/unit/cgg.txt +FILE: ../../../third_party/icu/source/data/unit/chr.txt +FILE: ../../../third_party/icu/source/data/unit/ckb.txt +FILE: ../../../third_party/icu/source/data/unit/cs.txt +FILE: ../../../third_party/icu/source/data/unit/cv.txt +FILE: ../../../third_party/icu/source/data/unit/cy.txt +FILE: ../../../third_party/icu/source/data/unit/da.txt +FILE: ../../../third_party/icu/source/data/unit/dav.txt +FILE: ../../../third_party/icu/source/data/unit/de.txt +FILE: ../../../third_party/icu/source/data/unit/de_CH.txt +FILE: ../../../third_party/icu/source/data/unit/dje.txt +FILE: ../../../third_party/icu/source/data/unit/doi.txt +FILE: ../../../third_party/icu/source/data/unit/dsb.txt +FILE: ../../../third_party/icu/source/data/unit/dua.txt +FILE: ../../../third_party/icu/source/data/unit/dyo.txt +FILE: ../../../third_party/icu/source/data/unit/dz.txt +FILE: ../../../third_party/icu/source/data/unit/ebu.txt +FILE: ../../../third_party/icu/source/data/unit/ee.txt +FILE: ../../../third_party/icu/source/data/unit/el.txt +FILE: ../../../third_party/icu/source/data/unit/en.txt +FILE: ../../../third_party/icu/source/data/unit/en_001.txt +FILE: ../../../third_party/icu/source/data/unit/en_150.txt +FILE: ../../../third_party/icu/source/data/unit/en_AG.txt +FILE: ../../../third_party/icu/source/data/unit/en_AI.txt +FILE: ../../../third_party/icu/source/data/unit/en_AT.txt +FILE: ../../../third_party/icu/source/data/unit/en_AU.txt +FILE: ../../../third_party/icu/source/data/unit/en_BB.txt +FILE: ../../../third_party/icu/source/data/unit/en_BE.txt +FILE: ../../../third_party/icu/source/data/unit/en_BM.txt +FILE: ../../../third_party/icu/source/data/unit/en_BS.txt +FILE: ../../../third_party/icu/source/data/unit/en_BW.txt +FILE: ../../../third_party/icu/source/data/unit/en_BZ.txt +FILE: ../../../third_party/icu/source/data/unit/en_CA.txt +FILE: ../../../third_party/icu/source/data/unit/en_CC.txt +FILE: ../../../third_party/icu/source/data/unit/en_CH.txt +FILE: ../../../third_party/icu/source/data/unit/en_CK.txt +FILE: ../../../third_party/icu/source/data/unit/en_CM.txt +FILE: ../../../third_party/icu/source/data/unit/en_CX.txt +FILE: ../../../third_party/icu/source/data/unit/en_CY.txt +FILE: ../../../third_party/icu/source/data/unit/en_DE.txt +FILE: ../../../third_party/icu/source/data/unit/en_DG.txt +FILE: ../../../third_party/icu/source/data/unit/en_DK.txt +FILE: ../../../third_party/icu/source/data/unit/en_DM.txt +FILE: ../../../third_party/icu/source/data/unit/en_ER.txt +FILE: ../../../third_party/icu/source/data/unit/en_FI.txt +FILE: ../../../third_party/icu/source/data/unit/en_FJ.txt +FILE: ../../../third_party/icu/source/data/unit/en_FK.txt +FILE: ../../../third_party/icu/source/data/unit/en_FM.txt +FILE: ../../../third_party/icu/source/data/unit/en_GB.txt +FILE: ../../../third_party/icu/source/data/unit/en_GD.txt +FILE: ../../../third_party/icu/source/data/unit/en_GG.txt +FILE: ../../../third_party/icu/source/data/unit/en_GH.txt +FILE: ../../../third_party/icu/source/data/unit/en_GI.txt +FILE: ../../../third_party/icu/source/data/unit/en_GM.txt +FILE: ../../../third_party/icu/source/data/unit/en_GY.txt +FILE: ../../../third_party/icu/source/data/unit/en_HK.txt +FILE: ../../../third_party/icu/source/data/unit/en_IE.txt +FILE: ../../../third_party/icu/source/data/unit/en_IL.txt +FILE: ../../../third_party/icu/source/data/unit/en_IM.txt +FILE: ../../../third_party/icu/source/data/unit/en_IN.txt +FILE: ../../../third_party/icu/source/data/unit/en_IO.txt +FILE: ../../../third_party/icu/source/data/unit/en_JE.txt +FILE: ../../../third_party/icu/source/data/unit/en_JM.txt +FILE: ../../../third_party/icu/source/data/unit/en_KE.txt +FILE: ../../../third_party/icu/source/data/unit/en_KI.txt +FILE: ../../../third_party/icu/source/data/unit/en_KN.txt +FILE: ../../../third_party/icu/source/data/unit/en_KY.txt +FILE: ../../../third_party/icu/source/data/unit/en_LC.txt +FILE: ../../../third_party/icu/source/data/unit/en_LR.txt +FILE: ../../../third_party/icu/source/data/unit/en_LS.txt +FILE: ../../../third_party/icu/source/data/unit/en_MG.txt +FILE: ../../../third_party/icu/source/data/unit/en_MO.txt +FILE: ../../../third_party/icu/source/data/unit/en_MS.txt +FILE: ../../../third_party/icu/source/data/unit/en_MT.txt +FILE: ../../../third_party/icu/source/data/unit/en_MU.txt +FILE: ../../../third_party/icu/source/data/unit/en_MV.txt +FILE: ../../../third_party/icu/source/data/unit/en_MW.txt +FILE: ../../../third_party/icu/source/data/unit/en_MY.txt +FILE: ../../../third_party/icu/source/data/unit/en_NA.txt +FILE: ../../../third_party/icu/source/data/unit/en_NF.txt +FILE: ../../../third_party/icu/source/data/unit/en_NG.txt +FILE: ../../../third_party/icu/source/data/unit/en_NH.txt +FILE: ../../../third_party/icu/source/data/unit/en_NL.txt +FILE: ../../../third_party/icu/source/data/unit/en_NR.txt +FILE: ../../../third_party/icu/source/data/unit/en_NU.txt +FILE: ../../../third_party/icu/source/data/unit/en_NZ.txt +FILE: ../../../third_party/icu/source/data/unit/en_PG.txt +FILE: ../../../third_party/icu/source/data/unit/en_PK.txt +FILE: ../../../third_party/icu/source/data/unit/en_PN.txt +FILE: ../../../third_party/icu/source/data/unit/en_PW.txt +FILE: ../../../third_party/icu/source/data/unit/en_RH.txt +FILE: ../../../third_party/icu/source/data/unit/en_RW.txt +FILE: ../../../third_party/icu/source/data/unit/en_SB.txt +FILE: ../../../third_party/icu/source/data/unit/en_SC.txt +FILE: ../../../third_party/icu/source/data/unit/en_SD.txt +FILE: ../../../third_party/icu/source/data/unit/en_SE.txt +FILE: ../../../third_party/icu/source/data/unit/en_SG.txt +FILE: ../../../third_party/icu/source/data/unit/en_SH.txt +FILE: ../../../third_party/icu/source/data/unit/en_SI.txt +FILE: ../../../third_party/icu/source/data/unit/en_SL.txt +FILE: ../../../third_party/icu/source/data/unit/en_SS.txt +FILE: ../../../third_party/icu/source/data/unit/en_SX.txt +FILE: ../../../third_party/icu/source/data/unit/en_SZ.txt +FILE: ../../../third_party/icu/source/data/unit/en_TC.txt +FILE: ../../../third_party/icu/source/data/unit/en_TK.txt +FILE: ../../../third_party/icu/source/data/unit/en_TO.txt +FILE: ../../../third_party/icu/source/data/unit/en_TT.txt +FILE: ../../../third_party/icu/source/data/unit/en_TV.txt +FILE: ../../../third_party/icu/source/data/unit/en_TZ.txt +FILE: ../../../third_party/icu/source/data/unit/en_UG.txt +FILE: ../../../third_party/icu/source/data/unit/en_VC.txt +FILE: ../../../third_party/icu/source/data/unit/en_VG.txt +FILE: ../../../third_party/icu/source/data/unit/en_VU.txt +FILE: ../../../third_party/icu/source/data/unit/en_WS.txt +FILE: ../../../third_party/icu/source/data/unit/en_ZA.txt +FILE: ../../../third_party/icu/source/data/unit/en_ZM.txt +FILE: ../../../third_party/icu/source/data/unit/en_ZW.txt +FILE: ../../../third_party/icu/source/data/unit/eo.txt +FILE: ../../../third_party/icu/source/data/unit/es.txt +FILE: ../../../third_party/icu/source/data/unit/es_419.txt +FILE: ../../../third_party/icu/source/data/unit/es_AR.txt +FILE: ../../../third_party/icu/source/data/unit/es_BO.txt +FILE: ../../../third_party/icu/source/data/unit/es_BR.txt +FILE: ../../../third_party/icu/source/data/unit/es_BZ.txt +FILE: ../../../third_party/icu/source/data/unit/es_CL.txt +FILE: ../../../third_party/icu/source/data/unit/es_CO.txt +FILE: ../../../third_party/icu/source/data/unit/es_CR.txt +FILE: ../../../third_party/icu/source/data/unit/es_CU.txt +FILE: ../../../third_party/icu/source/data/unit/es_DO.txt +FILE: ../../../third_party/icu/source/data/unit/es_EC.txt +FILE: ../../../third_party/icu/source/data/unit/es_GT.txt +FILE: ../../../third_party/icu/source/data/unit/es_HN.txt +FILE: ../../../third_party/icu/source/data/unit/es_MX.txt +FILE: ../../../third_party/icu/source/data/unit/es_NI.txt +FILE: ../../../third_party/icu/source/data/unit/es_PA.txt +FILE: ../../../third_party/icu/source/data/unit/es_PE.txt +FILE: ../../../third_party/icu/source/data/unit/es_PR.txt +FILE: ../../../third_party/icu/source/data/unit/es_PY.txt +FILE: ../../../third_party/icu/source/data/unit/es_SV.txt +FILE: ../../../third_party/icu/source/data/unit/es_US.txt +FILE: ../../../third_party/icu/source/data/unit/es_UY.txt +FILE: ../../../third_party/icu/source/data/unit/es_VE.txt +FILE: ../../../third_party/icu/source/data/unit/et.txt +FILE: ../../../third_party/icu/source/data/unit/eu.txt +FILE: ../../../third_party/icu/source/data/unit/ewo.txt +FILE: ../../../third_party/icu/source/data/unit/fa.txt +FILE: ../../../third_party/icu/source/data/unit/ff.txt +FILE: ../../../third_party/icu/source/data/unit/ff_Adlm.txt +FILE: ../../../third_party/icu/source/data/unit/ff_CM.txt +FILE: ../../../third_party/icu/source/data/unit/ff_GN.txt +FILE: ../../../third_party/icu/source/data/unit/ff_Latn.txt +FILE: ../../../third_party/icu/source/data/unit/ff_Latn_CM.txt +FILE: ../../../third_party/icu/source/data/unit/ff_Latn_GN.txt +FILE: ../../../third_party/icu/source/data/unit/ff_Latn_MR.txt +FILE: ../../../third_party/icu/source/data/unit/ff_Latn_SN.txt +FILE: ../../../third_party/icu/source/data/unit/ff_MR.txt +FILE: ../../../third_party/icu/source/data/unit/ff_SN.txt +FILE: ../../../third_party/icu/source/data/unit/fi.txt +FILE: ../../../third_party/icu/source/data/unit/fil.txt +FILE: ../../../third_party/icu/source/data/unit/fil_PH.txt +FILE: ../../../third_party/icu/source/data/unit/fo.txt +FILE: ../../../third_party/icu/source/data/unit/fr.txt +FILE: ../../../third_party/icu/source/data/unit/fr_CA.txt +FILE: ../../../third_party/icu/source/data/unit/fr_HT.txt +FILE: ../../../third_party/icu/source/data/unit/fur.txt +FILE: ../../../third_party/icu/source/data/unit/fy.txt +FILE: ../../../third_party/icu/source/data/unit/ga.txt +FILE: ../../../third_party/icu/source/data/unit/gd.txt +FILE: ../../../third_party/icu/source/data/unit/gl.txt +FILE: ../../../third_party/icu/source/data/unit/gsw.txt +FILE: ../../../third_party/icu/source/data/unit/gu.txt +FILE: ../../../third_party/icu/source/data/unit/guz.txt +FILE: ../../../third_party/icu/source/data/unit/gv.txt +FILE: ../../../third_party/icu/source/data/unit/ha.txt +FILE: ../../../third_party/icu/source/data/unit/haw.txt +FILE: ../../../third_party/icu/source/data/unit/he.txt +FILE: ../../../third_party/icu/source/data/unit/he_IL.txt +FILE: ../../../third_party/icu/source/data/unit/hi.txt +FILE: ../../../third_party/icu/source/data/unit/hi_Latn.txt +FILE: ../../../third_party/icu/source/data/unit/hr.txt +FILE: ../../../third_party/icu/source/data/unit/hsb.txt +FILE: ../../../third_party/icu/source/data/unit/hu.txt +FILE: ../../../third_party/icu/source/data/unit/hy.txt +FILE: ../../../third_party/icu/source/data/unit/ia.txt +FILE: ../../../third_party/icu/source/data/unit/id.txt +FILE: ../../../third_party/icu/source/data/unit/id_ID.txt +FILE: ../../../third_party/icu/source/data/unit/ig.txt +FILE: ../../../third_party/icu/source/data/unit/ii.txt +FILE: ../../../third_party/icu/source/data/unit/in.txt +FILE: ../../../third_party/icu/source/data/unit/in_ID.txt +FILE: ../../../third_party/icu/source/data/unit/is.txt +FILE: ../../../third_party/icu/source/data/unit/it.txt +FILE: ../../../third_party/icu/source/data/unit/iw.txt +FILE: ../../../third_party/icu/source/data/unit/iw_IL.txt +FILE: ../../../third_party/icu/source/data/unit/ja.txt +FILE: ../../../third_party/icu/source/data/unit/jgo.txt +FILE: ../../../third_party/icu/source/data/unit/jmc.txt +FILE: ../../../third_party/icu/source/data/unit/jv.txt +FILE: ../../../third_party/icu/source/data/unit/ka.txt +FILE: ../../../third_party/icu/source/data/unit/kab.txt +FILE: ../../../third_party/icu/source/data/unit/kam.txt +FILE: ../../../third_party/icu/source/data/unit/kde.txt +FILE: ../../../third_party/icu/source/data/unit/kea.txt +FILE: ../../../third_party/icu/source/data/unit/kgp.txt +FILE: ../../../third_party/icu/source/data/unit/khq.txt +FILE: ../../../third_party/icu/source/data/unit/ki.txt +FILE: ../../../third_party/icu/source/data/unit/kk.txt +FILE: ../../../third_party/icu/source/data/unit/kkj.txt +FILE: ../../../third_party/icu/source/data/unit/kl.txt +FILE: ../../../third_party/icu/source/data/unit/kln.txt +FILE: ../../../third_party/icu/source/data/unit/km.txt +FILE: ../../../third_party/icu/source/data/unit/kn.txt +FILE: ../../../third_party/icu/source/data/unit/ko.txt +FILE: ../../../third_party/icu/source/data/unit/kok.txt +FILE: ../../../third_party/icu/source/data/unit/ks.txt +FILE: ../../../third_party/icu/source/data/unit/ks_Arab.txt +FILE: ../../../third_party/icu/source/data/unit/ks_Arab_IN.txt +FILE: ../../../third_party/icu/source/data/unit/ks_Deva.txt +FILE: ../../../third_party/icu/source/data/unit/ks_IN.txt +FILE: ../../../third_party/icu/source/data/unit/ksb.txt +FILE: ../../../third_party/icu/source/data/unit/ksf.txt +FILE: ../../../third_party/icu/source/data/unit/ksh.txt +FILE: ../../../third_party/icu/source/data/unit/ku.txt +FILE: ../../../third_party/icu/source/data/unit/kw.txt +FILE: ../../../third_party/icu/source/data/unit/ky.txt +FILE: ../../../third_party/icu/source/data/unit/lag.txt +FILE: ../../../third_party/icu/source/data/unit/lb.txt +FILE: ../../../third_party/icu/source/data/unit/lg.txt +FILE: ../../../third_party/icu/source/data/unit/lkt.txt +FILE: ../../../third_party/icu/source/data/unit/ln.txt +FILE: ../../../third_party/icu/source/data/unit/lo.txt +FILE: ../../../third_party/icu/source/data/unit/lrc.txt +FILE: ../../../third_party/icu/source/data/unit/lt.txt +FILE: ../../../third_party/icu/source/data/unit/lu.txt +FILE: ../../../third_party/icu/source/data/unit/luo.txt +FILE: ../../../third_party/icu/source/data/unit/luy.txt +FILE: ../../../third_party/icu/source/data/unit/lv.txt +FILE: ../../../third_party/icu/source/data/unit/mai.txt +FILE: ../../../third_party/icu/source/data/unit/mas.txt +FILE: ../../../third_party/icu/source/data/unit/mer.txt +FILE: ../../../third_party/icu/source/data/unit/mfe.txt +FILE: ../../../third_party/icu/source/data/unit/mg.txt +FILE: ../../../third_party/icu/source/data/unit/mgh.txt +FILE: ../../../third_party/icu/source/data/unit/mgo.txt +FILE: ../../../third_party/icu/source/data/unit/mi.txt +FILE: ../../../third_party/icu/source/data/unit/mk.txt +FILE: ../../../third_party/icu/source/data/unit/ml.txt +FILE: ../../../third_party/icu/source/data/unit/mn.txt +FILE: ../../../third_party/icu/source/data/unit/mni.txt +FILE: ../../../third_party/icu/source/data/unit/mni_Beng.txt +FILE: ../../../third_party/icu/source/data/unit/mni_Beng_IN.txt +FILE: ../../../third_party/icu/source/data/unit/mni_IN.txt +FILE: ../../../third_party/icu/source/data/unit/mo.txt +FILE: ../../../third_party/icu/source/data/unit/mr.txt +FILE: ../../../third_party/icu/source/data/unit/ms.txt +FILE: ../../../third_party/icu/source/data/unit/mt.txt +FILE: ../../../third_party/icu/source/data/unit/mua.txt +FILE: ../../../third_party/icu/source/data/unit/my.txt +FILE: ../../../third_party/icu/source/data/unit/mzn.txt +FILE: ../../../third_party/icu/source/data/unit/naq.txt +FILE: ../../../third_party/icu/source/data/unit/nb.txt +FILE: ../../../third_party/icu/source/data/unit/nd.txt +FILE: ../../../third_party/icu/source/data/unit/ne.txt +FILE: ../../../third_party/icu/source/data/unit/nl.txt +FILE: ../../../third_party/icu/source/data/unit/nmg.txt +FILE: ../../../third_party/icu/source/data/unit/nn.txt +FILE: ../../../third_party/icu/source/data/unit/nn_NO.txt +FILE: ../../../third_party/icu/source/data/unit/nnh.txt +FILE: ../../../third_party/icu/source/data/unit/no.txt +FILE: ../../../third_party/icu/source/data/unit/no_NO.txt +FILE: ../../../third_party/icu/source/data/unit/no_NO_NY.txt +FILE: ../../../third_party/icu/source/data/unit/nus.txt +FILE: ../../../third_party/icu/source/data/unit/nyn.txt +FILE: ../../../third_party/icu/source/data/unit/om.txt +FILE: ../../../third_party/icu/source/data/unit/or.txt +FILE: ../../../third_party/icu/source/data/unit/os.txt +FILE: ../../../third_party/icu/source/data/unit/pa.txt +FILE: ../../../third_party/icu/source/data/unit/pa_Arab.txt +FILE: ../../../third_party/icu/source/data/unit/pa_Arab_PK.txt +FILE: ../../../third_party/icu/source/data/unit/pa_Guru.txt +FILE: ../../../third_party/icu/source/data/unit/pa_Guru_IN.txt +FILE: ../../../third_party/icu/source/data/unit/pa_IN.txt +FILE: ../../../third_party/icu/source/data/unit/pa_PK.txt +FILE: ../../../third_party/icu/source/data/unit/pcm.txt +FILE: ../../../third_party/icu/source/data/unit/pl.txt +FILE: ../../../third_party/icu/source/data/unit/ps.txt +FILE: ../../../third_party/icu/source/data/unit/ps_PK.txt +FILE: ../../../third_party/icu/source/data/unit/pt.txt +FILE: ../../../third_party/icu/source/data/unit/pt_AO.txt +FILE: ../../../third_party/icu/source/data/unit/pt_CH.txt +FILE: ../../../third_party/icu/source/data/unit/pt_CV.txt +FILE: ../../../third_party/icu/source/data/unit/pt_GQ.txt +FILE: ../../../third_party/icu/source/data/unit/pt_GW.txt +FILE: ../../../third_party/icu/source/data/unit/pt_LU.txt +FILE: ../../../third_party/icu/source/data/unit/pt_MO.txt +FILE: ../../../third_party/icu/source/data/unit/pt_MZ.txt +FILE: ../../../third_party/icu/source/data/unit/pt_PT.txt +FILE: ../../../third_party/icu/source/data/unit/pt_ST.txt +FILE: ../../../third_party/icu/source/data/unit/pt_TL.txt +FILE: ../../../third_party/icu/source/data/unit/qu.txt +FILE: ../../../third_party/icu/source/data/unit/raj.txt +FILE: ../../../third_party/icu/source/data/unit/rm.txt +FILE: ../../../third_party/icu/source/data/unit/rn.txt +FILE: ../../../third_party/icu/source/data/unit/ro.txt +FILE: ../../../third_party/icu/source/data/unit/ro_MD.txt +FILE: ../../../third_party/icu/source/data/unit/rof.txt +FILE: ../../../third_party/icu/source/data/unit/root.txt +FILE: ../../../third_party/icu/source/data/unit/ru.txt +FILE: ../../../third_party/icu/source/data/unit/rw.txt +FILE: ../../../third_party/icu/source/data/unit/rwk.txt +FILE: ../../../third_party/icu/source/data/unit/sa.txt +FILE: ../../../third_party/icu/source/data/unit/sah.txt +FILE: ../../../third_party/icu/source/data/unit/saq.txt +FILE: ../../../third_party/icu/source/data/unit/sat.txt +FILE: ../../../third_party/icu/source/data/unit/sat_IN.txt +FILE: ../../../third_party/icu/source/data/unit/sat_Olck.txt +FILE: ../../../third_party/icu/source/data/unit/sat_Olck_IN.txt +FILE: ../../../third_party/icu/source/data/unit/sbp.txt +FILE: ../../../third_party/icu/source/data/unit/sc.txt +FILE: ../../../third_party/icu/source/data/unit/sd.txt +FILE: ../../../third_party/icu/source/data/unit/sd_Arab.txt +FILE: ../../../third_party/icu/source/data/unit/sd_Arab_PK.txt +FILE: ../../../third_party/icu/source/data/unit/sd_Deva.txt +FILE: ../../../third_party/icu/source/data/unit/sd_Deva_IN.txt +FILE: ../../../third_party/icu/source/data/unit/sd_IN.txt +FILE: ../../../third_party/icu/source/data/unit/sd_PK.txt +FILE: ../../../third_party/icu/source/data/unit/se.txt +FILE: ../../../third_party/icu/source/data/unit/seh.txt +FILE: ../../../third_party/icu/source/data/unit/ses.txt +FILE: ../../../third_party/icu/source/data/unit/sg.txt +FILE: ../../../third_party/icu/source/data/unit/sh.txt +FILE: ../../../third_party/icu/source/data/unit/sh_BA.txt +FILE: ../../../third_party/icu/source/data/unit/sh_CS.txt +FILE: ../../../third_party/icu/source/data/unit/sh_YU.txt +FILE: ../../../third_party/icu/source/data/unit/shi.txt +FILE: ../../../third_party/icu/source/data/unit/shi_Latn.txt +FILE: ../../../third_party/icu/source/data/unit/shi_MA.txt +FILE: ../../../third_party/icu/source/data/unit/shi_Tfng.txt +FILE: ../../../third_party/icu/source/data/unit/shi_Tfng_MA.txt +FILE: ../../../third_party/icu/source/data/unit/si.txt +FILE: ../../../third_party/icu/source/data/unit/sk.txt +FILE: ../../../third_party/icu/source/data/unit/sl.txt +FILE: ../../../third_party/icu/source/data/unit/smn.txt +FILE: ../../../third_party/icu/source/data/unit/sn.txt +FILE: ../../../third_party/icu/source/data/unit/so.txt +FILE: ../../../third_party/icu/source/data/unit/sq.txt +FILE: ../../../third_party/icu/source/data/unit/sr.txt +FILE: ../../../third_party/icu/source/data/unit/sr_BA.txt +FILE: ../../../third_party/icu/source/data/unit/sr_CS.txt +FILE: ../../../third_party/icu/source/data/unit/sr_Cyrl.txt +FILE: ../../../third_party/icu/source/data/unit/sr_Cyrl_BA.txt +FILE: ../../../third_party/icu/source/data/unit/sr_Cyrl_CS.txt +FILE: ../../../third_party/icu/source/data/unit/sr_Cyrl_RS.txt +FILE: ../../../third_party/icu/source/data/unit/sr_Cyrl_XK.txt +FILE: ../../../third_party/icu/source/data/unit/sr_Cyrl_YU.txt +FILE: ../../../third_party/icu/source/data/unit/sr_Latn.txt +FILE: ../../../third_party/icu/source/data/unit/sr_Latn_BA.txt +FILE: ../../../third_party/icu/source/data/unit/sr_Latn_CS.txt +FILE: ../../../third_party/icu/source/data/unit/sr_Latn_ME.txt +FILE: ../../../third_party/icu/source/data/unit/sr_Latn_RS.txt +FILE: ../../../third_party/icu/source/data/unit/sr_Latn_YU.txt +FILE: ../../../third_party/icu/source/data/unit/sr_ME.txt +FILE: ../../../third_party/icu/source/data/unit/sr_RS.txt +FILE: ../../../third_party/icu/source/data/unit/sr_XK.txt +FILE: ../../../third_party/icu/source/data/unit/sr_YU.txt +FILE: ../../../third_party/icu/source/data/unit/su.txt +FILE: ../../../third_party/icu/source/data/unit/su_ID.txt +FILE: ../../../third_party/icu/source/data/unit/su_Latn.txt +FILE: ../../../third_party/icu/source/data/unit/su_Latn_ID.txt +FILE: ../../../third_party/icu/source/data/unit/sv.txt +FILE: ../../../third_party/icu/source/data/unit/sv_FI.txt +FILE: ../../../third_party/icu/source/data/unit/sw.txt +FILE: ../../../third_party/icu/source/data/unit/sw_KE.txt +FILE: ../../../third_party/icu/source/data/unit/ta.txt +FILE: ../../../third_party/icu/source/data/unit/te.txt +FILE: ../../../third_party/icu/source/data/unit/teo.txt +FILE: ../../../third_party/icu/source/data/unit/tg.txt +FILE: ../../../third_party/icu/source/data/unit/th.txt +FILE: ../../../third_party/icu/source/data/unit/ti.txt +FILE: ../../../third_party/icu/source/data/unit/tk.txt +FILE: ../../../third_party/icu/source/data/unit/tl.txt +FILE: ../../../third_party/icu/source/data/unit/tl_PH.txt +FILE: ../../../third_party/icu/source/data/unit/to.txt +FILE: ../../../third_party/icu/source/data/unit/tr.txt +FILE: ../../../third_party/icu/source/data/unit/tt.txt +FILE: ../../../third_party/icu/source/data/unit/twq.txt +FILE: ../../../third_party/icu/source/data/unit/tzm.txt +FILE: ../../../third_party/icu/source/data/unit/ug.txt +FILE: ../../../third_party/icu/source/data/unit/uk.txt +FILE: ../../../third_party/icu/source/data/unit/ur.txt +FILE: ../../../third_party/icu/source/data/unit/ur_IN.txt +FILE: ../../../third_party/icu/source/data/unit/uz.txt +FILE: ../../../third_party/icu/source/data/unit/uz_AF.txt +FILE: ../../../third_party/icu/source/data/unit/uz_Arab.txt +FILE: ../../../third_party/icu/source/data/unit/uz_Arab_AF.txt +FILE: ../../../third_party/icu/source/data/unit/uz_Cyrl.txt +FILE: ../../../third_party/icu/source/data/unit/uz_Latn.txt +FILE: ../../../third_party/icu/source/data/unit/uz_Latn_UZ.txt +FILE: ../../../third_party/icu/source/data/unit/uz_UZ.txt +FILE: ../../../third_party/icu/source/data/unit/vai.txt +FILE: ../../../third_party/icu/source/data/unit/vai_LR.txt +FILE: ../../../third_party/icu/source/data/unit/vai_Latn.txt +FILE: ../../../third_party/icu/source/data/unit/vai_Vaii.txt +FILE: ../../../third_party/icu/source/data/unit/vai_Vaii_LR.txt +FILE: ../../../third_party/icu/source/data/unit/vi.txt +FILE: ../../../third_party/icu/source/data/unit/vun.txt +FILE: ../../../third_party/icu/source/data/unit/wae.txt +FILE: ../../../third_party/icu/source/data/unit/wo.txt +FILE: ../../../third_party/icu/source/data/unit/xh.txt +FILE: ../../../third_party/icu/source/data/unit/xog.txt +FILE: ../../../third_party/icu/source/data/unit/yav.txt +FILE: ../../../third_party/icu/source/data/unit/yi.txt +FILE: ../../../third_party/icu/source/data/unit/yo.txt +FILE: ../../../third_party/icu/source/data/unit/yo_BJ.txt +FILE: ../../../third_party/icu/source/data/unit/yrl.txt +FILE: ../../../third_party/icu/source/data/unit/yrl_CO.txt +FILE: ../../../third_party/icu/source/data/unit/yrl_VE.txt +FILE: ../../../third_party/icu/source/data/unit/yue.txt +FILE: ../../../third_party/icu/source/data/unit/yue_CN.txt +FILE: ../../../third_party/icu/source/data/unit/yue_HK.txt +FILE: ../../../third_party/icu/source/data/unit/yue_Hans.txt +FILE: ../../../third_party/icu/source/data/unit/yue_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/unit/yue_Hant.txt +FILE: ../../../third_party/icu/source/data/unit/yue_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/unit/zgh.txt +FILE: ../../../third_party/icu/source/data/unit/zh.txt +FILE: ../../../third_party/icu/source/data/unit/zh_CN.txt +FILE: ../../../third_party/icu/source/data/unit/zh_HK.txt +FILE: ../../../third_party/icu/source/data/unit/zh_Hans.txt +FILE: ../../../third_party/icu/source/data/unit/zh_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/unit/zh_Hans_HK.txt +FILE: ../../../third_party/icu/source/data/unit/zh_Hans_MO.txt +FILE: ../../../third_party/icu/source/data/unit/zh_Hans_SG.txt +FILE: ../../../third_party/icu/source/data/unit/zh_Hant.txt +FILE: ../../../third_party/icu/source/data/unit/zh_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/unit/zh_Hant_MO.txt +FILE: ../../../third_party/icu/source/data/unit/zh_Hant_TW.txt +FILE: ../../../third_party/icu/source/data/unit/zh_MO.txt +FILE: ../../../third_party/icu/source/data/unit/zh_SG.txt +FILE: ../../../third_party/icu/source/data/unit/zh_TW.txt +FILE: ../../../third_party/icu/source/data/unit/zu.txt +FILE: ../../../third_party/icu/source/data/zone/af.txt +FILE: ../../../third_party/icu/source/data/zone/agq.txt +FILE: ../../../third_party/icu/source/data/zone/ak.txt +FILE: ../../../third_party/icu/source/data/zone/am.txt +FILE: ../../../third_party/icu/source/data/zone/ar.txt +FILE: ../../../third_party/icu/source/data/zone/ar_SA.txt +FILE: ../../../third_party/icu/source/data/zone/ars.txt +FILE: ../../../third_party/icu/source/data/zone/as.txt +FILE: ../../../third_party/icu/source/data/zone/asa.txt +FILE: ../../../third_party/icu/source/data/zone/ast.txt +FILE: ../../../third_party/icu/source/data/zone/az.txt +FILE: ../../../third_party/icu/source/data/zone/az_AZ.txt +FILE: ../../../third_party/icu/source/data/zone/az_Cyrl.txt +FILE: ../../../third_party/icu/source/data/zone/az_Latn.txt +FILE: ../../../third_party/icu/source/data/zone/az_Latn_AZ.txt +FILE: ../../../third_party/icu/source/data/zone/bas.txt +FILE: ../../../third_party/icu/source/data/zone/be.txt +FILE: ../../../third_party/icu/source/data/zone/bem.txt +FILE: ../../../third_party/icu/source/data/zone/bez.txt +FILE: ../../../third_party/icu/source/data/zone/bg.txt +FILE: ../../../third_party/icu/source/data/zone/bgc.txt +FILE: ../../../third_party/icu/source/data/zone/bho.txt +FILE: ../../../third_party/icu/source/data/zone/bm.txt +FILE: ../../../third_party/icu/source/data/zone/bn.txt +FILE: ../../../third_party/icu/source/data/zone/bo.txt +FILE: ../../../third_party/icu/source/data/zone/br.txt +FILE: ../../../third_party/icu/source/data/zone/brx.txt +FILE: ../../../third_party/icu/source/data/zone/bs.txt +FILE: ../../../third_party/icu/source/data/zone/bs_BA.txt +FILE: ../../../third_party/icu/source/data/zone/bs_Cyrl.txt +FILE: ../../../third_party/icu/source/data/zone/bs_Latn.txt +FILE: ../../../third_party/icu/source/data/zone/bs_Latn_BA.txt +FILE: ../../../third_party/icu/source/data/zone/ca.txt +FILE: ../../../third_party/icu/source/data/zone/ccp.txt +FILE: ../../../third_party/icu/source/data/zone/ce.txt +FILE: ../../../third_party/icu/source/data/zone/ceb.txt +FILE: ../../../third_party/icu/source/data/zone/cgg.txt +FILE: ../../../third_party/icu/source/data/zone/chr.txt +FILE: ../../../third_party/icu/source/data/zone/ckb.txt +FILE: ../../../third_party/icu/source/data/zone/cs.txt +FILE: ../../../third_party/icu/source/data/zone/cv.txt +FILE: ../../../third_party/icu/source/data/zone/cy.txt +FILE: ../../../third_party/icu/source/data/zone/da.txt +FILE: ../../../third_party/icu/source/data/zone/dav.txt +FILE: ../../../third_party/icu/source/data/zone/de.txt +FILE: ../../../third_party/icu/source/data/zone/de_CH.txt +FILE: ../../../third_party/icu/source/data/zone/dje.txt +FILE: ../../../third_party/icu/source/data/zone/doi.txt +FILE: ../../../third_party/icu/source/data/zone/dsb.txt +FILE: ../../../third_party/icu/source/data/zone/dua.txt +FILE: ../../../third_party/icu/source/data/zone/dyo.txt +FILE: ../../../third_party/icu/source/data/zone/dz.txt +FILE: ../../../third_party/icu/source/data/zone/ebu.txt +FILE: ../../../third_party/icu/source/data/zone/ee.txt +FILE: ../../../third_party/icu/source/data/zone/el.txt +FILE: ../../../third_party/icu/source/data/zone/en.txt +FILE: ../../../third_party/icu/source/data/zone/en_001.txt +FILE: ../../../third_party/icu/source/data/zone/en_150.txt +FILE: ../../../third_party/icu/source/data/zone/en_AE.txt +FILE: ../../../third_party/icu/source/data/zone/en_AG.txt +FILE: ../../../third_party/icu/source/data/zone/en_AI.txt +FILE: ../../../third_party/icu/source/data/zone/en_AT.txt +FILE: ../../../third_party/icu/source/data/zone/en_AU.txt +FILE: ../../../third_party/icu/source/data/zone/en_BB.txt +FILE: ../../../third_party/icu/source/data/zone/en_BE.txt +FILE: ../../../third_party/icu/source/data/zone/en_BM.txt +FILE: ../../../third_party/icu/source/data/zone/en_BS.txt +FILE: ../../../third_party/icu/source/data/zone/en_BW.txt +FILE: ../../../third_party/icu/source/data/zone/en_BZ.txt +FILE: ../../../third_party/icu/source/data/zone/en_CA.txt +FILE: ../../../third_party/icu/source/data/zone/en_CC.txt +FILE: ../../../third_party/icu/source/data/zone/en_CH.txt +FILE: ../../../third_party/icu/source/data/zone/en_CK.txt +FILE: ../../../third_party/icu/source/data/zone/en_CM.txt +FILE: ../../../third_party/icu/source/data/zone/en_CX.txt +FILE: ../../../third_party/icu/source/data/zone/en_CY.txt +FILE: ../../../third_party/icu/source/data/zone/en_DE.txt +FILE: ../../../third_party/icu/source/data/zone/en_DG.txt +FILE: ../../../third_party/icu/source/data/zone/en_DK.txt +FILE: ../../../third_party/icu/source/data/zone/en_DM.txt +FILE: ../../../third_party/icu/source/data/zone/en_ER.txt +FILE: ../../../third_party/icu/source/data/zone/en_FI.txt +FILE: ../../../third_party/icu/source/data/zone/en_FJ.txt +FILE: ../../../third_party/icu/source/data/zone/en_FK.txt +FILE: ../../../third_party/icu/source/data/zone/en_FM.txt +FILE: ../../../third_party/icu/source/data/zone/en_GB.txt +FILE: ../../../third_party/icu/source/data/zone/en_GD.txt +FILE: ../../../third_party/icu/source/data/zone/en_GG.txt +FILE: ../../../third_party/icu/source/data/zone/en_GH.txt +FILE: ../../../third_party/icu/source/data/zone/en_GI.txt +FILE: ../../../third_party/icu/source/data/zone/en_GM.txt +FILE: ../../../third_party/icu/source/data/zone/en_GU.txt +FILE: ../../../third_party/icu/source/data/zone/en_GY.txt +FILE: ../../../third_party/icu/source/data/zone/en_HK.txt +FILE: ../../../third_party/icu/source/data/zone/en_IE.txt +FILE: ../../../third_party/icu/source/data/zone/en_IL.txt +FILE: ../../../third_party/icu/source/data/zone/en_IM.txt +FILE: ../../../third_party/icu/source/data/zone/en_IN.txt +FILE: ../../../third_party/icu/source/data/zone/en_IO.txt +FILE: ../../../third_party/icu/source/data/zone/en_JE.txt +FILE: ../../../third_party/icu/source/data/zone/en_JM.txt +FILE: ../../../third_party/icu/source/data/zone/en_KE.txt +FILE: ../../../third_party/icu/source/data/zone/en_KI.txt +FILE: ../../../third_party/icu/source/data/zone/en_KN.txt +FILE: ../../../third_party/icu/source/data/zone/en_KY.txt +FILE: ../../../third_party/icu/source/data/zone/en_LC.txt +FILE: ../../../third_party/icu/source/data/zone/en_LR.txt +FILE: ../../../third_party/icu/source/data/zone/en_LS.txt +FILE: ../../../third_party/icu/source/data/zone/en_MG.txt +FILE: ../../../third_party/icu/source/data/zone/en_MH.txt +FILE: ../../../third_party/icu/source/data/zone/en_MO.txt +FILE: ../../../third_party/icu/source/data/zone/en_MP.txt +FILE: ../../../third_party/icu/source/data/zone/en_MS.txt +FILE: ../../../third_party/icu/source/data/zone/en_MT.txt +FILE: ../../../third_party/icu/source/data/zone/en_MU.txt +FILE: ../../../third_party/icu/source/data/zone/en_MV.txt +FILE: ../../../third_party/icu/source/data/zone/en_MW.txt +FILE: ../../../third_party/icu/source/data/zone/en_MY.txt +FILE: ../../../third_party/icu/source/data/zone/en_NA.txt +FILE: ../../../third_party/icu/source/data/zone/en_NF.txt +FILE: ../../../third_party/icu/source/data/zone/en_NG.txt +FILE: ../../../third_party/icu/source/data/zone/en_NH.txt +FILE: ../../../third_party/icu/source/data/zone/en_NL.txt +FILE: ../../../third_party/icu/source/data/zone/en_NR.txt +FILE: ../../../third_party/icu/source/data/zone/en_NU.txt +FILE: ../../../third_party/icu/source/data/zone/en_NZ.txt +FILE: ../../../third_party/icu/source/data/zone/en_PG.txt +FILE: ../../../third_party/icu/source/data/zone/en_PK.txt +FILE: ../../../third_party/icu/source/data/zone/en_PN.txt +FILE: ../../../third_party/icu/source/data/zone/en_PW.txt +FILE: ../../../third_party/icu/source/data/zone/en_RH.txt +FILE: ../../../third_party/icu/source/data/zone/en_RW.txt +FILE: ../../../third_party/icu/source/data/zone/en_SB.txt +FILE: ../../../third_party/icu/source/data/zone/en_SC.txt +FILE: ../../../third_party/icu/source/data/zone/en_SD.txt +FILE: ../../../third_party/icu/source/data/zone/en_SE.txt +FILE: ../../../third_party/icu/source/data/zone/en_SG.txt +FILE: ../../../third_party/icu/source/data/zone/en_SH.txt +FILE: ../../../third_party/icu/source/data/zone/en_SI.txt +FILE: ../../../third_party/icu/source/data/zone/en_SL.txt +FILE: ../../../third_party/icu/source/data/zone/en_SS.txt +FILE: ../../../third_party/icu/source/data/zone/en_SX.txt +FILE: ../../../third_party/icu/source/data/zone/en_SZ.txt +FILE: ../../../third_party/icu/source/data/zone/en_TC.txt +FILE: ../../../third_party/icu/source/data/zone/en_TK.txt +FILE: ../../../third_party/icu/source/data/zone/en_TO.txt +FILE: ../../../third_party/icu/source/data/zone/en_TT.txt +FILE: ../../../third_party/icu/source/data/zone/en_TV.txt +FILE: ../../../third_party/icu/source/data/zone/en_TZ.txt +FILE: ../../../third_party/icu/source/data/zone/en_UG.txt +FILE: ../../../third_party/icu/source/data/zone/en_VC.txt +FILE: ../../../third_party/icu/source/data/zone/en_VG.txt +FILE: ../../../third_party/icu/source/data/zone/en_VU.txt +FILE: ../../../third_party/icu/source/data/zone/en_WS.txt +FILE: ../../../third_party/icu/source/data/zone/en_ZA.txt +FILE: ../../../third_party/icu/source/data/zone/en_ZM.txt +FILE: ../../../third_party/icu/source/data/zone/en_ZW.txt +FILE: ../../../third_party/icu/source/data/zone/eo.txt +FILE: ../../../third_party/icu/source/data/zone/es.txt +FILE: ../../../third_party/icu/source/data/zone/es_419.txt +FILE: ../../../third_party/icu/source/data/zone/es_AR.txt +FILE: ../../../third_party/icu/source/data/zone/es_BO.txt +FILE: ../../../third_party/icu/source/data/zone/es_BR.txt +FILE: ../../../third_party/icu/source/data/zone/es_BZ.txt +FILE: ../../../third_party/icu/source/data/zone/es_CL.txt +FILE: ../../../third_party/icu/source/data/zone/es_CO.txt +FILE: ../../../third_party/icu/source/data/zone/es_CR.txt +FILE: ../../../third_party/icu/source/data/zone/es_CU.txt +FILE: ../../../third_party/icu/source/data/zone/es_DO.txt +FILE: ../../../third_party/icu/source/data/zone/es_EC.txt +FILE: ../../../third_party/icu/source/data/zone/es_GT.txt +FILE: ../../../third_party/icu/source/data/zone/es_HN.txt +FILE: ../../../third_party/icu/source/data/zone/es_MX.txt +FILE: ../../../third_party/icu/source/data/zone/es_NI.txt +FILE: ../../../third_party/icu/source/data/zone/es_PA.txt +FILE: ../../../third_party/icu/source/data/zone/es_PE.txt +FILE: ../../../third_party/icu/source/data/zone/es_PR.txt +FILE: ../../../third_party/icu/source/data/zone/es_PY.txt +FILE: ../../../third_party/icu/source/data/zone/es_SV.txt +FILE: ../../../third_party/icu/source/data/zone/es_US.txt +FILE: ../../../third_party/icu/source/data/zone/es_UY.txt +FILE: ../../../third_party/icu/source/data/zone/es_VE.txt +FILE: ../../../third_party/icu/source/data/zone/et.txt +FILE: ../../../third_party/icu/source/data/zone/eu.txt +FILE: ../../../third_party/icu/source/data/zone/ewo.txt +FILE: ../../../third_party/icu/source/data/zone/fa.txt +FILE: ../../../third_party/icu/source/data/zone/ff.txt +FILE: ../../../third_party/icu/source/data/zone/ff_Adlm.txt +FILE: ../../../third_party/icu/source/data/zone/ff_CM.txt +FILE: ../../../third_party/icu/source/data/zone/ff_GN.txt +FILE: ../../../third_party/icu/source/data/zone/ff_Latn.txt +FILE: ../../../third_party/icu/source/data/zone/ff_Latn_CM.txt +FILE: ../../../third_party/icu/source/data/zone/ff_Latn_GN.txt +FILE: ../../../third_party/icu/source/data/zone/ff_Latn_MR.txt +FILE: ../../../third_party/icu/source/data/zone/ff_Latn_SN.txt +FILE: ../../../third_party/icu/source/data/zone/ff_MR.txt +FILE: ../../../third_party/icu/source/data/zone/ff_SN.txt +FILE: ../../../third_party/icu/source/data/zone/fi.txt +FILE: ../../../third_party/icu/source/data/zone/fil.txt +FILE: ../../../third_party/icu/source/data/zone/fil_PH.txt +FILE: ../../../third_party/icu/source/data/zone/fo.txt +FILE: ../../../third_party/icu/source/data/zone/fr.txt +FILE: ../../../third_party/icu/source/data/zone/fr_CA.txt +FILE: ../../../third_party/icu/source/data/zone/fr_GF.txt +FILE: ../../../third_party/icu/source/data/zone/fur.txt +FILE: ../../../third_party/icu/source/data/zone/fy.txt +FILE: ../../../third_party/icu/source/data/zone/ga.txt +FILE: ../../../third_party/icu/source/data/zone/gd.txt +FILE: ../../../third_party/icu/source/data/zone/gl.txt +FILE: ../../../third_party/icu/source/data/zone/gsw.txt +FILE: ../../../third_party/icu/source/data/zone/gu.txt +FILE: ../../../third_party/icu/source/data/zone/guz.txt +FILE: ../../../third_party/icu/source/data/zone/gv.txt +FILE: ../../../third_party/icu/source/data/zone/ha.txt +FILE: ../../../third_party/icu/source/data/zone/haw.txt +FILE: ../../../third_party/icu/source/data/zone/he.txt +FILE: ../../../third_party/icu/source/data/zone/he_IL.txt +FILE: ../../../third_party/icu/source/data/zone/hi.txt +FILE: ../../../third_party/icu/source/data/zone/hi_Latn.txt +FILE: ../../../third_party/icu/source/data/zone/hr.txt +FILE: ../../../third_party/icu/source/data/zone/hsb.txt +FILE: ../../../third_party/icu/source/data/zone/hu.txt +FILE: ../../../third_party/icu/source/data/zone/hy.txt +FILE: ../../../third_party/icu/source/data/zone/ia.txt +FILE: ../../../third_party/icu/source/data/zone/id.txt +FILE: ../../../third_party/icu/source/data/zone/id_ID.txt +FILE: ../../../third_party/icu/source/data/zone/ig.txt +FILE: ../../../third_party/icu/source/data/zone/ii.txt +FILE: ../../../third_party/icu/source/data/zone/in.txt +FILE: ../../../third_party/icu/source/data/zone/in_ID.txt +FILE: ../../../third_party/icu/source/data/zone/is.txt +FILE: ../../../third_party/icu/source/data/zone/it.txt +FILE: ../../../third_party/icu/source/data/zone/iw.txt +FILE: ../../../third_party/icu/source/data/zone/iw_IL.txt +FILE: ../../../third_party/icu/source/data/zone/ja.txt +FILE: ../../../third_party/icu/source/data/zone/jgo.txt +FILE: ../../../third_party/icu/source/data/zone/jmc.txt +FILE: ../../../third_party/icu/source/data/zone/jv.txt +FILE: ../../../third_party/icu/source/data/zone/ka.txt +FILE: ../../../third_party/icu/source/data/zone/kab.txt +FILE: ../../../third_party/icu/source/data/zone/kam.txt +FILE: ../../../third_party/icu/source/data/zone/kde.txt +FILE: ../../../third_party/icu/source/data/zone/kea.txt +FILE: ../../../third_party/icu/source/data/zone/kgp.txt +FILE: ../../../third_party/icu/source/data/zone/khq.txt +FILE: ../../../third_party/icu/source/data/zone/ki.txt +FILE: ../../../third_party/icu/source/data/zone/kk.txt +FILE: ../../../third_party/icu/source/data/zone/kkj.txt +FILE: ../../../third_party/icu/source/data/zone/kl.txt +FILE: ../../../third_party/icu/source/data/zone/kln.txt +FILE: ../../../third_party/icu/source/data/zone/km.txt +FILE: ../../../third_party/icu/source/data/zone/kn.txt +FILE: ../../../third_party/icu/source/data/zone/ko.txt +FILE: ../../../third_party/icu/source/data/zone/ko_KP.txt +FILE: ../../../third_party/icu/source/data/zone/kok.txt +FILE: ../../../third_party/icu/source/data/zone/ks.txt +FILE: ../../../third_party/icu/source/data/zone/ks_Arab.txt +FILE: ../../../third_party/icu/source/data/zone/ks_Arab_IN.txt +FILE: ../../../third_party/icu/source/data/zone/ks_Deva.txt +FILE: ../../../third_party/icu/source/data/zone/ks_IN.txt +FILE: ../../../third_party/icu/source/data/zone/ksb.txt +FILE: ../../../third_party/icu/source/data/zone/ksf.txt +FILE: ../../../third_party/icu/source/data/zone/ksh.txt +FILE: ../../../third_party/icu/source/data/zone/ku.txt +FILE: ../../../third_party/icu/source/data/zone/kw.txt +FILE: ../../../third_party/icu/source/data/zone/ky.txt +FILE: ../../../third_party/icu/source/data/zone/lag.txt +FILE: ../../../third_party/icu/source/data/zone/lb.txt +FILE: ../../../third_party/icu/source/data/zone/lg.txt +FILE: ../../../third_party/icu/source/data/zone/lkt.txt +FILE: ../../../third_party/icu/source/data/zone/ln.txt +FILE: ../../../third_party/icu/source/data/zone/lo.txt +FILE: ../../../third_party/icu/source/data/zone/lrc.txt +FILE: ../../../third_party/icu/source/data/zone/lt.txt +FILE: ../../../third_party/icu/source/data/zone/lu.txt +FILE: ../../../third_party/icu/source/data/zone/luo.txt +FILE: ../../../third_party/icu/source/data/zone/luy.txt +FILE: ../../../third_party/icu/source/data/zone/lv.txt +FILE: ../../../third_party/icu/source/data/zone/mai.txt +FILE: ../../../third_party/icu/source/data/zone/mas.txt +FILE: ../../../third_party/icu/source/data/zone/mer.txt +FILE: ../../../third_party/icu/source/data/zone/mfe.txt +FILE: ../../../third_party/icu/source/data/zone/mg.txt +FILE: ../../../third_party/icu/source/data/zone/mgh.txt +FILE: ../../../third_party/icu/source/data/zone/mgo.txt +FILE: ../../../third_party/icu/source/data/zone/mi.txt +FILE: ../../../third_party/icu/source/data/zone/mk.txt +FILE: ../../../third_party/icu/source/data/zone/ml.txt +FILE: ../../../third_party/icu/source/data/zone/mn.txt +FILE: ../../../third_party/icu/source/data/zone/mni.txt +FILE: ../../../third_party/icu/source/data/zone/mni_Beng.txt +FILE: ../../../third_party/icu/source/data/zone/mni_Beng_IN.txt +FILE: ../../../third_party/icu/source/data/zone/mni_IN.txt +FILE: ../../../third_party/icu/source/data/zone/mo.txt +FILE: ../../../third_party/icu/source/data/zone/mr.txt +FILE: ../../../third_party/icu/source/data/zone/ms.txt +FILE: ../../../third_party/icu/source/data/zone/ms_ID.txt +FILE: ../../../third_party/icu/source/data/zone/mt.txt +FILE: ../../../third_party/icu/source/data/zone/mua.txt +FILE: ../../../third_party/icu/source/data/zone/my.txt +FILE: ../../../third_party/icu/source/data/zone/mzn.txt +FILE: ../../../third_party/icu/source/data/zone/naq.txt +FILE: ../../../third_party/icu/source/data/zone/nb.txt +FILE: ../../../third_party/icu/source/data/zone/nd.txt +FILE: ../../../third_party/icu/source/data/zone/ne.txt +FILE: ../../../third_party/icu/source/data/zone/ne_IN.txt +FILE: ../../../third_party/icu/source/data/zone/nl.txt +FILE: ../../../third_party/icu/source/data/zone/nl_SR.txt +FILE: ../../../third_party/icu/source/data/zone/nmg.txt +FILE: ../../../third_party/icu/source/data/zone/nn.txt +FILE: ../../../third_party/icu/source/data/zone/nn_NO.txt +FILE: ../../../third_party/icu/source/data/zone/nnh.txt +FILE: ../../../third_party/icu/source/data/zone/no.txt +FILE: ../../../third_party/icu/source/data/zone/no_NO.txt +FILE: ../../../third_party/icu/source/data/zone/no_NO_NY.txt +FILE: ../../../third_party/icu/source/data/zone/nus.txt +FILE: ../../../third_party/icu/source/data/zone/nyn.txt +FILE: ../../../third_party/icu/source/data/zone/om.txt +FILE: ../../../third_party/icu/source/data/zone/or.txt +FILE: ../../../third_party/icu/source/data/zone/os.txt +FILE: ../../../third_party/icu/source/data/zone/pa.txt +FILE: ../../../third_party/icu/source/data/zone/pa_Arab.txt +FILE: ../../../third_party/icu/source/data/zone/pa_Arab_PK.txt +FILE: ../../../third_party/icu/source/data/zone/pa_Guru.txt +FILE: ../../../third_party/icu/source/data/zone/pa_Guru_IN.txt +FILE: ../../../third_party/icu/source/data/zone/pa_IN.txt +FILE: ../../../third_party/icu/source/data/zone/pa_PK.txt +FILE: ../../../third_party/icu/source/data/zone/pcm.txt +FILE: ../../../third_party/icu/source/data/zone/pl.txt +FILE: ../../../third_party/icu/source/data/zone/ps.txt +FILE: ../../../third_party/icu/source/data/zone/ps_PK.txt +FILE: ../../../third_party/icu/source/data/zone/pt.txt +FILE: ../../../third_party/icu/source/data/zone/pt_AO.txt +FILE: ../../../third_party/icu/source/data/zone/pt_CH.txt +FILE: ../../../third_party/icu/source/data/zone/pt_CV.txt +FILE: ../../../third_party/icu/source/data/zone/pt_GQ.txt +FILE: ../../../third_party/icu/source/data/zone/pt_GW.txt +FILE: ../../../third_party/icu/source/data/zone/pt_LU.txt +FILE: ../../../third_party/icu/source/data/zone/pt_MO.txt +FILE: ../../../third_party/icu/source/data/zone/pt_MZ.txt +FILE: ../../../third_party/icu/source/data/zone/pt_PT.txt +FILE: ../../../third_party/icu/source/data/zone/pt_ST.txt +FILE: ../../../third_party/icu/source/data/zone/pt_TL.txt +FILE: ../../../third_party/icu/source/data/zone/qu.txt +FILE: ../../../third_party/icu/source/data/zone/qu_BO.txt +FILE: ../../../third_party/icu/source/data/zone/qu_EC.txt +FILE: ../../../third_party/icu/source/data/zone/raj.txt +FILE: ../../../third_party/icu/source/data/zone/rm.txt +FILE: ../../../third_party/icu/source/data/zone/rn.txt +FILE: ../../../third_party/icu/source/data/zone/ro.txt +FILE: ../../../third_party/icu/source/data/zone/rof.txt +FILE: ../../../third_party/icu/source/data/zone/root.txt +FILE: ../../../third_party/icu/source/data/zone/ru.txt +FILE: ../../../third_party/icu/source/data/zone/rw.txt +FILE: ../../../third_party/icu/source/data/zone/rwk.txt +FILE: ../../../third_party/icu/source/data/zone/sa.txt +FILE: ../../../third_party/icu/source/data/zone/sah.txt +FILE: ../../../third_party/icu/source/data/zone/saq.txt +FILE: ../../../third_party/icu/source/data/zone/sat.txt +FILE: ../../../third_party/icu/source/data/zone/sat_IN.txt +FILE: ../../../third_party/icu/source/data/zone/sat_Olck.txt +FILE: ../../../third_party/icu/source/data/zone/sat_Olck_IN.txt +FILE: ../../../third_party/icu/source/data/zone/sbp.txt +FILE: ../../../third_party/icu/source/data/zone/sc.txt +FILE: ../../../third_party/icu/source/data/zone/sd.txt +FILE: ../../../third_party/icu/source/data/zone/sd_Arab.txt +FILE: ../../../third_party/icu/source/data/zone/sd_Arab_PK.txt +FILE: ../../../third_party/icu/source/data/zone/sd_Deva.txt +FILE: ../../../third_party/icu/source/data/zone/sd_Deva_IN.txt +FILE: ../../../third_party/icu/source/data/zone/sd_IN.txt +FILE: ../../../third_party/icu/source/data/zone/sd_PK.txt +FILE: ../../../third_party/icu/source/data/zone/se.txt +FILE: ../../../third_party/icu/source/data/zone/se_FI.txt +FILE: ../../../third_party/icu/source/data/zone/seh.txt +FILE: ../../../third_party/icu/source/data/zone/ses.txt +FILE: ../../../third_party/icu/source/data/zone/sg.txt +FILE: ../../../third_party/icu/source/data/zone/sh.txt +FILE: ../../../third_party/icu/source/data/zone/sh_BA.txt +FILE: ../../../third_party/icu/source/data/zone/sh_CS.txt +FILE: ../../../third_party/icu/source/data/zone/sh_YU.txt +FILE: ../../../third_party/icu/source/data/zone/shi.txt +FILE: ../../../third_party/icu/source/data/zone/shi_Latn.txt +FILE: ../../../third_party/icu/source/data/zone/shi_MA.txt +FILE: ../../../third_party/icu/source/data/zone/shi_Tfng.txt +FILE: ../../../third_party/icu/source/data/zone/shi_Tfng_MA.txt +FILE: ../../../third_party/icu/source/data/zone/si.txt +FILE: ../../../third_party/icu/source/data/zone/sk.txt +FILE: ../../../third_party/icu/source/data/zone/sl.txt +FILE: ../../../third_party/icu/source/data/zone/smn.txt +FILE: ../../../third_party/icu/source/data/zone/sn.txt +FILE: ../../../third_party/icu/source/data/zone/so.txt +FILE: ../../../third_party/icu/source/data/zone/sq.txt +FILE: ../../../third_party/icu/source/data/zone/sr.txt +FILE: ../../../third_party/icu/source/data/zone/sr_BA.txt +FILE: ../../../third_party/icu/source/data/zone/sr_CS.txt +FILE: ../../../third_party/icu/source/data/zone/sr_Cyrl.txt +FILE: ../../../third_party/icu/source/data/zone/sr_Cyrl_BA.txt +FILE: ../../../third_party/icu/source/data/zone/sr_Cyrl_CS.txt +FILE: ../../../third_party/icu/source/data/zone/sr_Cyrl_RS.txt +FILE: ../../../third_party/icu/source/data/zone/sr_Cyrl_XK.txt +FILE: ../../../third_party/icu/source/data/zone/sr_Cyrl_YU.txt +FILE: ../../../third_party/icu/source/data/zone/sr_Latn.txt +FILE: ../../../third_party/icu/source/data/zone/sr_Latn_BA.txt +FILE: ../../../third_party/icu/source/data/zone/sr_Latn_CS.txt +FILE: ../../../third_party/icu/source/data/zone/sr_Latn_ME.txt +FILE: ../../../third_party/icu/source/data/zone/sr_Latn_RS.txt +FILE: ../../../third_party/icu/source/data/zone/sr_Latn_YU.txt +FILE: ../../../third_party/icu/source/data/zone/sr_ME.txt +FILE: ../../../third_party/icu/source/data/zone/sr_RS.txt +FILE: ../../../third_party/icu/source/data/zone/sr_XK.txt +FILE: ../../../third_party/icu/source/data/zone/sr_YU.txt +FILE: ../../../third_party/icu/source/data/zone/su.txt +FILE: ../../../third_party/icu/source/data/zone/su_ID.txt +FILE: ../../../third_party/icu/source/data/zone/su_Latn.txt +FILE: ../../../third_party/icu/source/data/zone/su_Latn_ID.txt +FILE: ../../../third_party/icu/source/data/zone/sv.txt +FILE: ../../../third_party/icu/source/data/zone/sw.txt +FILE: ../../../third_party/icu/source/data/zone/sw_KE.txt +FILE: ../../../third_party/icu/source/data/zone/ta.txt +FILE: ../../../third_party/icu/source/data/zone/ta_MY.txt +FILE: ../../../third_party/icu/source/data/zone/ta_SG.txt +FILE: ../../../third_party/icu/source/data/zone/te.txt +FILE: ../../../third_party/icu/source/data/zone/teo.txt +FILE: ../../../third_party/icu/source/data/zone/tg.txt +FILE: ../../../third_party/icu/source/data/zone/th.txt +FILE: ../../../third_party/icu/source/data/zone/ti.txt +FILE: ../../../third_party/icu/source/data/zone/tk.txt +FILE: ../../../third_party/icu/source/data/zone/tl.txt +FILE: ../../../third_party/icu/source/data/zone/tl_PH.txt +FILE: ../../../third_party/icu/source/data/zone/to.txt +FILE: ../../../third_party/icu/source/data/zone/tr.txt +FILE: ../../../third_party/icu/source/data/zone/tt.txt +FILE: ../../../third_party/icu/source/data/zone/twq.txt +FILE: ../../../third_party/icu/source/data/zone/tzdbNames.txt +FILE: ../../../third_party/icu/source/data/zone/tzm.txt +FILE: ../../../third_party/icu/source/data/zone/ug.txt +FILE: ../../../third_party/icu/source/data/zone/uk.txt +FILE: ../../../third_party/icu/source/data/zone/ur.txt +FILE: ../../../third_party/icu/source/data/zone/ur_IN.txt +FILE: ../../../third_party/icu/source/data/zone/uz.txt +FILE: ../../../third_party/icu/source/data/zone/uz_AF.txt +FILE: ../../../third_party/icu/source/data/zone/uz_Arab.txt +FILE: ../../../third_party/icu/source/data/zone/uz_Arab_AF.txt +FILE: ../../../third_party/icu/source/data/zone/uz_Cyrl.txt +FILE: ../../../third_party/icu/source/data/zone/uz_Latn.txt +FILE: ../../../third_party/icu/source/data/zone/uz_Latn_UZ.txt +FILE: ../../../third_party/icu/source/data/zone/uz_UZ.txt +FILE: ../../../third_party/icu/source/data/zone/vai.txt +FILE: ../../../third_party/icu/source/data/zone/vai_LR.txt +FILE: ../../../third_party/icu/source/data/zone/vai_Latn.txt +FILE: ../../../third_party/icu/source/data/zone/vai_Vaii.txt +FILE: ../../../third_party/icu/source/data/zone/vai_Vaii_LR.txt +FILE: ../../../third_party/icu/source/data/zone/vi.txt +FILE: ../../../third_party/icu/source/data/zone/vun.txt +FILE: ../../../third_party/icu/source/data/zone/wae.txt +FILE: ../../../third_party/icu/source/data/zone/wo.txt +FILE: ../../../third_party/icu/source/data/zone/xh.txt +FILE: ../../../third_party/icu/source/data/zone/xog.txt +FILE: ../../../third_party/icu/source/data/zone/yav.txt +FILE: ../../../third_party/icu/source/data/zone/yi.txt +FILE: ../../../third_party/icu/source/data/zone/yo.txt +FILE: ../../../third_party/icu/source/data/zone/yo_BJ.txt +FILE: ../../../third_party/icu/source/data/zone/yrl.txt +FILE: ../../../third_party/icu/source/data/zone/yrl_CO.txt +FILE: ../../../third_party/icu/source/data/zone/yrl_VE.txt +FILE: ../../../third_party/icu/source/data/zone/yue.txt +FILE: ../../../third_party/icu/source/data/zone/yue_CN.txt +FILE: ../../../third_party/icu/source/data/zone/yue_HK.txt +FILE: ../../../third_party/icu/source/data/zone/yue_Hans.txt +FILE: ../../../third_party/icu/source/data/zone/yue_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/zone/yue_Hant.txt +FILE: ../../../third_party/icu/source/data/zone/yue_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/zone/zgh.txt +FILE: ../../../third_party/icu/source/data/zone/zh.txt +FILE: ../../../third_party/icu/source/data/zone/zh_CN.txt +FILE: ../../../third_party/icu/source/data/zone/zh_HK.txt +FILE: ../../../third_party/icu/source/data/zone/zh_Hans.txt +FILE: ../../../third_party/icu/source/data/zone/zh_Hans_CN.txt +FILE: ../../../third_party/icu/source/data/zone/zh_Hans_SG.txt +FILE: ../../../third_party/icu/source/data/zone/zh_Hant.txt +FILE: ../../../third_party/icu/source/data/zone/zh_Hant_HK.txt +FILE: ../../../third_party/icu/source/data/zone/zh_Hant_MO.txt +FILE: ../../../third_party/icu/source/data/zone/zh_Hant_TW.txt +FILE: ../../../third_party/icu/source/data/zone/zh_MO.txt +FILE: ../../../third_party/icu/source/data/zone/zh_SG.txt +FILE: ../../../third_party/icu/source/data/zone/zh_TW.txt +FILE: ../../../third_party/icu/source/data/zone/zu.txt FILE: ../../../third_party/icu/source/extra/scrptrun/scrptrun.cpp FILE: ../../../third_party/icu/source/extra/scrptrun/scrptrun.h FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.cpp FILE: ../../../third_party/icu/source/extra/uconv/makedata.mak FILE: ../../../third_party/icu/source/extra/uconv/pkgdata.inc.in -FILE: ../../../third_party/icu/source/extra/uconv/uconv.1.in +FILE: ../../../third_party/icu/source/extra/uconv/resources/fr.txt +FILE: ../../../third_party/icu/source/extra/uconv/resources/root.txt FILE: ../../../third_party/icu/source/extra/uconv/uconv.cpp FILE: ../../../third_party/icu/source/extra/uconv/unicode/uwmsg.h FILE: ../../../third_party/icu/source/extra/uconv/uwmsg.c -FILE: ../../../third_party/icu/source/i18n/BUILD.bazel FILE: ../../../third_party/icu/source/i18n/alphaindex.cpp FILE: ../../../third_party/icu/source/i18n/anytrans.cpp FILE: ../../../third_party/icu/source/i18n/anytrans.h @@ -27224,6 +62691,7 @@ FILE: ../../../third_party/icu/source/i18n/rbtz.cpp FILE: ../../../third_party/icu/source/i18n/regexcmp.cpp FILE: ../../../third_party/icu/source/i18n/regexcmp.h FILE: ../../../third_party/icu/source/i18n/regexcst.h +FILE: ../../../third_party/icu/source/i18n/regexcst.txt FILE: ../../../third_party/icu/source/i18n/regeximp.cpp FILE: ../../../third_party/icu/source/i18n/regeximp.h FILE: ../../../third_party/icu/source/i18n/regexst.cpp @@ -27469,7 +62937,6 @@ FILE: ../../../third_party/icu/source/io/uscanf_p.cpp FILE: ../../../third_party/icu/source/io/ustdio.cpp FILE: ../../../third_party/icu/source/io/ustream.cpp FILE: ../../../third_party/icu/source/python/icutools/databuilder/filtration_schema.json -FILE: ../../../third_party/icu/source/stubdata/BUILD.bazel FILE: ../../../third_party/icu/source/stubdata/stubdata.cpp FILE: ../../../third_party/icu/source/stubdata/stubdata.h FILE: ../../../third_party/icu/source/tools/ctestfw/ctest.c @@ -27486,27 +62953,19 @@ FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/tstdtmod.h FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/uperf.h FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/utimer.h FILE: ../../../third_party/icu/source/tools/ctestfw/uperf.cpp -FILE: ../../../third_party/icu/source/tools/escapesrc/cptbl.h FILE: ../../../third_party/icu/source/tools/escapesrc/escapesrc.cpp FILE: ../../../third_party/icu/source/tools/escapesrc/expect-simple.cpp FILE: ../../../third_party/icu/source/tools/escapesrc/tblgen.cpp FILE: ../../../third_party/icu/source/tools/escapesrc/test-nochange.cpp FILE: ../../../third_party/icu/source/tools/escapesrc/test-simple.cpp -FILE: ../../../third_party/icu/source/tools/genbrk/genbrk.1.in FILE: ../../../third_party/icu/source/tools/genbrk/genbrk.cpp -FILE: ../../../third_party/icu/source/tools/genccode/genccode.8.in FILE: ../../../third_party/icu/source/tools/genccode/genccode.c -FILE: ../../../third_party/icu/source/tools/gencfu/gencfu.1.in FILE: ../../../third_party/icu/source/tools/gencfu/gencfu.cpp -FILE: ../../../third_party/icu/source/tools/gencmn/gencmn.8.in FILE: ../../../third_party/icu/source/tools/gencmn/gencmn.c -FILE: ../../../third_party/icu/source/tools/gencnval/gencnval.1.in FILE: ../../../third_party/icu/source/tools/gencnval/gencnval.c FILE: ../../../third_party/icu/source/tools/gencolusb/extract_unsafe_backwards.cpp FILE: ../../../third_party/icu/source/tools/gencolusb/verify_uset.cpp -FILE: ../../../third_party/icu/source/tools/gendict/gendict.1.in FILE: ../../../third_party/icu/source/tools/gendict/gendict.cpp -FILE: ../../../third_party/icu/source/tools/gennorm2/BUILD.bazel FILE: ../../../third_party/icu/source/tools/gennorm2/extradata.cpp FILE: ../../../third_party/icu/source/tools/gennorm2/extradata.h FILE: ../../../third_party/icu/source/tools/gennorm2/gennorm2.cpp @@ -27514,13 +62973,11 @@ FILE: ../../../third_party/icu/source/tools/gennorm2/n2builder.cpp FILE: ../../../third_party/icu/source/tools/gennorm2/n2builder.h FILE: ../../../third_party/icu/source/tools/gennorm2/norms.cpp FILE: ../../../third_party/icu/source/tools/gennorm2/norms.h -FILE: ../../../third_party/icu/source/tools/genrb/derb.1.in FILE: ../../../third_party/icu/source/tools/genrb/derb.cpp FILE: ../../../third_party/icu/source/tools/genrb/errmsg.c FILE: ../../../third_party/icu/source/tools/genrb/errmsg.h FILE: ../../../third_party/icu/source/tools/genrb/filterrb.cpp FILE: ../../../third_party/icu/source/tools/genrb/filterrb.h -FILE: ../../../third_party/icu/source/tools/genrb/genrb.1.in FILE: ../../../third_party/icu/source/tools/genrb/genrb.cpp FILE: ../../../third_party/icu/source/tools/genrb/genrb.h FILE: ../../../third_party/icu/source/tools/genrb/parse.cpp @@ -27539,32 +62996,27 @@ FILE: ../../../third_party/icu/source/tools/genrb/ustr.c FILE: ../../../third_party/icu/source/tools/genrb/ustr.h FILE: ../../../third_party/icu/source/tools/genrb/wrtjava.cpp FILE: ../../../third_party/icu/source/tools/genrb/wrtxml.cpp -FILE: ../../../third_party/icu/source/tools/gensprep/gensprep.8.in FILE: ../../../third_party/icu/source/tools/gensprep/gensprep.c FILE: ../../../third_party/icu/source/tools/gensprep/gensprep.h FILE: ../../../third_party/icu/source/tools/gensprep/store.c FILE: ../../../third_party/icu/source/tools/gentest/genres32.c FILE: ../../../third_party/icu/source/tools/gentest/gentest.c FILE: ../../../third_party/icu/source/tools/gentest/gentest.h -FILE: ../../../third_party/icu/source/tools/icuexportdata/icuexportdata.1.in FILE: ../../../third_party/icu/source/tools/icuexportdata/icuexportdata.cpp FILE: ../../../third_party/icu/source/tools/icuinfo/icuinfo.cpp +FILE: ../../../third_party/icu/source/tools/icuinfo/icuplugins_windows_sample.txt FILE: ../../../third_party/icu/source/tools/icuinfo/testplug.c -FILE: ../../../third_party/icu/source/tools/icupkg/icupkg.8.in FILE: ../../../third_party/icu/source/tools/icupkg/icupkg.cpp FILE: ../../../third_party/icu/source/tools/icuswap/icuswap.cpp FILE: ../../../third_party/icu/source/tools/makeconv/gencnvex.c FILE: ../../../third_party/icu/source/tools/makeconv/genmbcs.cpp FILE: ../../../third_party/icu/source/tools/makeconv/genmbcs.h -FILE: ../../../third_party/icu/source/tools/makeconv/makeconv.1.in FILE: ../../../third_party/icu/source/tools/makeconv/makeconv.cpp FILE: ../../../third_party/icu/source/tools/makeconv/makeconv.h FILE: ../../../third_party/icu/source/tools/makeconv/ucnvstat.c -FILE: ../../../third_party/icu/source/tools/pkgdata/pkgdata.1.in FILE: ../../../third_party/icu/source/tools/pkgdata/pkgdata.cpp FILE: ../../../third_party/icu/source/tools/pkgdata/pkgtypes.c FILE: ../../../third_party/icu/source/tools/pkgdata/pkgtypes.h -FILE: ../../../third_party/icu/source/tools/toolutil/BUILD.bazel FILE: ../../../third_party/icu/source/tools/toolutil/collationinfo.cpp FILE: ../../../third_party/icu/source/tools/toolutil/collationinfo.h FILE: ../../../third_party/icu/source/tools/toolutil/dbgutil.cpp @@ -27624,18 +63076,18 @@ A. Unicode Copyright 1. Copyright © 1991-2022 Unicode, Inc. All rights reserved. B. Definitions Unicode Data Files ("DATA FILES") include all data files under the directories: -https://www.unicode.org/Public -https://www.unicode.org/reports -https://www.unicode.org/ivd/data +https://www.unicode.org/Public/ +https://www.unicode.org/reports/ +https://www.unicode.org/ivd/data/ Unicode Data Files do not include PDF online code charts under the directory: -https://www.unicode.org/Public +https://www.unicode.org/Public/ Unicode Software ("SOFTWARE") includes any source code published in the Unicode Standard or any source code or compiled code under the directories: -https://www.unicode.org/Public/PROGRAMS -https://www.unicode.org/Public/cldr -http://site.icu-project.org/download +https://www.unicode.org/Public/PROGRAMS/ +https://www.unicode.org/Public/cldr/ +http://site.icu-project.org/download/ C. Terms of Use 1. Certain documents and files on this website contain a legend indicating that "Modification is permitted." Any person is hereby authorized, without fee, to modify such documents and files to create derivative works conforming to the Unicode® Standard, subject to Terms and Conditions herein. 2. Any person is hereby authorized, without fee, to view, use, reproduce, and distribute all documents and files, subject to the Terms and Conditions herein. @@ -27714,135 +63166,124 @@ written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: libcxx -LIBRARY: libcxxabi -ORIGIN: null -TYPE: LicenseType.bsd -FILE: ../../../third_party/libcxx/.clang-tidy -FILE: ../../../third_party/libcxx/appveyor-reqs-install.cmd -FILE: ../../../third_party/libcxx/appveyor.yml -FILE: ../../../third_party/libcxx/benchmarks/GenerateInput.h -FILE: ../../../third_party/libcxx/benchmarks/algorithms.partition_point.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/filesystem.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/lit.site.cfg.py.in -FILE: ../../../third_party/libcxx/benchmarks/string.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/stringstream.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/unordered_set_operations.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/variant_visit_1.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/variant_visit_2.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/variant_visit_3.bench.cpp -FILE: ../../../third_party/libcxx/benchmarks/vector_operations.bench.cpp -FILE: ../../../third_party/libcxx/docs/AddingNewCIJobs.rst -FILE: ../../../third_party/libcxx/docs/BuildingLibcxx.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/ABIVersioning.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/AtomicDesign.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/CapturingConfigInfo.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/DebugMode.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/ExperimentalFeatures.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/ExtendedCXX03Support.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/FeatureTestMacros.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/FileTimeType.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/NoexceptPolicy.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/ThreadingSupportAPI.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/UniquePtrTrivialAbi.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/UnspecifiedBehaviorRandomization.rst -FILE: ../../../third_party/libcxx/docs/DesignDocs/VisibilityMacros.rst -FILE: ../../../third_party/libcxx/docs/FeatureTestMacroTable.rst -FILE: ../../../third_party/libcxx/docs/Helpers/Styles.rst -FILE: ../../../third_party/libcxx/docs/ReleaseNotes.rst -FILE: ../../../third_party/libcxx/docs/Status/Cxx14.rst -FILE: ../../../third_party/libcxx/docs/Status/Cxx14Issues.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx14Papers.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx17.rst -FILE: ../../../third_party/libcxx/docs/Status/Cxx17Issues.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx17Papers.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx20.rst -FILE: ../../../third_party/libcxx/docs/Status/Cxx20Issues.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx20Papers.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx2b.rst -FILE: ../../../third_party/libcxx/docs/Status/Cxx2bIssues.csv -FILE: ../../../third_party/libcxx/docs/Status/Cxx2bPapers.csv -FILE: ../../../third_party/libcxx/docs/Status/Format.rst -FILE: ../../../third_party/libcxx/docs/Status/FormatIssues.csv -FILE: ../../../third_party/libcxx/docs/Status/FormatPaper.csv -FILE: ../../../third_party/libcxx/docs/Status/Ranges.rst -FILE: ../../../third_party/libcxx/docs/Status/RangesAlgorithms.csv -FILE: ../../../third_party/libcxx/docs/Status/RangesIssues.csv -FILE: ../../../third_party/libcxx/docs/Status/RangesPaper.csv -FILE: ../../../third_party/libcxx/docs/Status/Spaceship.rst -FILE: ../../../third_party/libcxx/docs/Status/SpaceshipPapers.csv -FILE: ../../../third_party/libcxx/docs/Status/SpaceshipProjects.csv -FILE: ../../../third_party/libcxx/docs/Status/Zip.rst -FILE: ../../../third_party/libcxx/docs/Status/ZipProjects.csv -FILE: ../../../third_party/libcxx/docs/TestingLibcxx.rst -FILE: ../../../third_party/libcxx/docs/UsingLibcxx.rst -FILE: ../../../third_party/libcxx/docs/index.rst -FILE: ../../../third_party/libcxx/include/module.modulemap.in -FILE: ../../../third_party/libcxx/lib/abi/arm64-apple-darwin.libcxxabi.v1.stable.exceptions.nonew.debug.incomplete.abilist -FILE: ../../../third_party/libcxx/lib/abi/arm64-apple-darwin.libcxxabi.v1.stable.exceptions.nonew.nodebug.noincomplete.abilist -FILE: ../../../third_party/libcxx/lib/abi/powerpc-ibm-aix.libcxxabi.v1.stable.exceptions.nonew.debug.incomplete.abilist -FILE: ../../../third_party/libcxx/lib/abi/powerpc64-ibm-aix.libcxxabi.v1.stable.exceptions.nonew.debug.incomplete.abilist -FILE: ../../../third_party/libcxx/lib/abi/x86_64-apple-darwin.libcxxabi.v1.stable.exceptions.nonew.debug.incomplete.abilist -FILE: ../../../third_party/libcxx/lib/abi/x86_64-apple-darwin.libcxxabi.v1.stable.exceptions.nonew.nodebug.noincomplete.abilist -FILE: ../../../third_party/libcxx/lib/abi/x86_64-unknown-linux-gnu.libcxxabi.v1.stable.exceptions.nonew.debug.incomplete.abilist -FILE: ../../../third_party/libcxx/lib/abi/x86_64-unknown-linux-gnu.libcxxabi.v1.stable.exceptions.nonew.debug.noincomplete.abilist -FILE: ../../../third_party/libcxx/lib/abi/x86_64-unknown-linux-gnu.libcxxabi.v1.stable.exceptions.nonew.nodebug.incomplete.abilist -FILE: ../../../third_party/libcxx/lib/abi/x86_64-unknown-linux-gnu.libcxxabi.v1.stable.noexceptions.nonew.debug.incomplete.abilist -FILE: ../../../third_party/libcxx/lib/libc++abi.exp -FILE: ../../../third_party/libcxx/lib/libc++unexp.exp -FILE: ../../../third_party/libcxx/lib/notweak.exp -FILE: ../../../third_party/libcxx/lib/weak.exp -FILE: ../../../third_party/libcxx/src/chrono_system_time_init.h -FILE: ../../../third_party/libcxx/src/experimental/memory_resource_init_helper.h -FILE: ../../../third_party/libcxx/src/iostream_init.h -FILE: ../../../third_party/libcxxabi/fuzz/cxa_demangle_fuzzer.cpp -FILE: ../../../third_party/libcxxabi/lib/exceptions.exp -FILE: ../../../third_party/libcxxabi/lib/itanium-base.exp -FILE: ../../../third_party/libcxxabi/lib/new-delete.exp -FILE: ../../../third_party/libcxxabi/lib/personality-sjlj.exp -FILE: ../../../third_party/libcxxabi/lib/personality-v0.exp +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/wrgif.c +TYPE: LicenseType.unknown +FILE: ../../../third_party/libjpeg-turbo/wrgif.c ---------------------------------------------------------------------------------------------------- -University of Illinois/NCSA -Open Source License +We are also required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." +==================================================================================================== -Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/LICENSE.md +TYPE: LicenseType.unknown +FILE: ../../../third_party/libjpeg-turbo/example.c +FILE: ../../../third_party/libjpeg-turbo/jconfig.h +FILE: ../../../third_party/libjpeg-turbo/jconfig.h.in +FILE: ../../../third_party/libjpeg-turbo/jconfigint.h +FILE: ../../../third_party/libjpeg-turbo/jconfigint.h.in +FILE: ../../../third_party/libjpeg-turbo/jpeg_nbits_table.h +FILE: ../../../third_party/libjpeg-turbo/libjpeg.map.in +FILE: ../../../third_party/libjpeg-turbo/simd/jpeg_nbits_table.inc +FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc +FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc.h +FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile +FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile.jni +FILE: ../../../third_party/libjpeg-turbo/usage.txt +FILE: ../../../third_party/libjpeg-turbo/wizard.txt +---------------------------------------------------------------------------------------------------- +libjpeg-turbo Licenses +====================== -All rights reserved. +libjpeg-turbo is covered by three compatible BSD-style open source licenses: -Developed by: +- The IJG (Independent JPEG Group) License, which is listed in + [README.ijg](README.ijg) - LLVM Team + This license applies to the libjpeg API library and associated programs + (any code inherited from libjpeg, and any modifications to that code.) - University of Illinois at Urbana-Champaign +- The Modified (3-clause) BSD License, which is listed in + [turbojpeg.c](turbojpeg.c) - http://llvm.org + This license covers the TurboJPEG API library and associated programs. -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal with -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: +- The zlib License, which is listed in [simd/jsimdext.inc](simd/jsimdext.inc) - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimers. + This license is a subset of the other two, and it covers the libjpeg-turbo + SIMD extensions. - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimers in the - documentation and/or other materials provided with the distribution. - * Neither the names of the LLVM Team, University of Illinois at - Urbana-Champaign, nor the names of its contributors may be used to - endorse or promote products derived from this Software without specific - prior written permission. +Complying with the libjpeg-turbo Licenses +========================================= -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE -SOFTWARE. +This section provides a roll-up of the libjpeg-turbo licensing terms, to the +best of our understanding. + +1. If you are distributing a modified version of the libjpeg-turbo source, + then: + + 1. You cannot alter or remove any existing copyright or license notices + from the source. + + **Origin** + - Clause 1 of the IJG License + - Clause 1 of the Modified BSD License + - Clauses 1 and 3 of the zlib License + + 2. You must add your own copyright notice to the header of each source + file you modified, so others can tell that you modified that file (if + there is not an existing copyright header in that file, then you can + simply add a notice stating that you modified the file.) + + **Origin** + - Clause 1 of the IJG License + - Clause 2 of the zlib License + + 3. You must include the IJG README file, and you must not alter any of the + copyright or license text in that file. + + **Origin** + - Clause 1 of the IJG License + +2. If you are distributing only libjpeg-turbo binaries without the source, or + if you are distributing an application that statically links with + libjpeg-turbo, then: + + 1. Your product documentation must include a message stating: + + This software is based in part on the work of the Independent JPEG + Group. + + **Origin** + - Clause 2 of the IJG license + + 2. If your binary distribution includes or uses the TurboJPEG API, then + your product documentation must include the text of the Modified BSD + License. + + **Origin** + - Clause 2 of the Modified BSD License + +3. You cannot use the name of the IJG or The libjpeg-turbo Project or the + contributors thereof in advertising, publicity, etc. + + **Origin** + - IJG License + - Clause 3 of the Modified BSD License + +4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be + free of defects, nor do we accept any liability for undesirable + consequences resulting from your use of the software. + + **Origin** + - IJG License + - Modified BSD License + - zlib License ==================================================================================================== ==================================================================================================== @@ -27854,6 +63295,7 @@ FILE: ../../../third_party/libjpeg-turbo/cdjpeg.c FILE: ../../../third_party/libjpeg-turbo/cdjpeg.h FILE: ../../../third_party/libjpeg-turbo/cjpeg.c FILE: ../../../third_party/libjpeg-turbo/djpeg.c +FILE: ../../../third_party/libjpeg-turbo/example.c FILE: ../../../third_party/libjpeg-turbo/jaricom.c FILE: ../../../third_party/libjpeg-turbo/jcapimin.c FILE: ../../../third_party/libjpeg-turbo/jcapistd.c @@ -27871,6 +63313,7 @@ FILE: ../../../third_party/libjpeg-turbo/jcmaster.c FILE: ../../../third_party/libjpeg-turbo/jcomapi.c FILE: ../../../third_party/libjpeg-turbo/jconfig.h FILE: ../../../third_party/libjpeg-turbo/jconfig.h.in +FILE: ../../../third_party/libjpeg-turbo/jconfig.txt FILE: ../../../third_party/libjpeg-turbo/jconfigint.h FILE: ../../../third_party/libjpeg-turbo/jconfigint.h.in FILE: ../../../third_party/libjpeg-turbo/jcparam.c @@ -27933,6 +63376,7 @@ FILE: ../../../third_party/libjpeg-turbo/jstdhuff.c FILE: ../../../third_party/libjpeg-turbo/jutils.c FILE: ../../../third_party/libjpeg-turbo/jversion.h FILE: ../../../third_party/libjpeg-turbo/libjpeg.map.in +FILE: ../../../third_party/libjpeg-turbo/libjpeg.txt FILE: ../../../third_party/libjpeg-turbo/rdbmp.c FILE: ../../../third_party/libjpeg-turbo/rdcolmap.c FILE: ../../../third_party/libjpeg-turbo/rdgif.c @@ -27949,6 +63393,8 @@ FILE: ../../../third_party/libjpeg-turbo/transupp.c FILE: ../../../third_party/libjpeg-turbo/transupp.h FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile.jni +FILE: ../../../third_party/libjpeg-turbo/usage.txt +FILE: ../../../third_party/libjpeg-turbo/wizard.txt FILE: ../../../third_party/libjpeg-turbo/wrbmp.c FILE: ../../../third_party/libjpeg-turbo/wrgif.c FILE: ../../../third_party/libjpeg-turbo/wrjpgcom.c @@ -27963,6 +63409,7 @@ sections, and to remove impolitic language that existed in the libjpeg v8 README. It is included only for reference. Please see README.md for information specific to libjpeg-turbo. + The Independent JPEG Group's JPEG software ========================================== @@ -27978,6 +63425,7 @@ and other members of the Independent JPEG Group. IJG is not affiliated with the ISO/IEC JTC1/SC29/WG1 standards committee (also known as JPEG, together with ITU-T SG16). + DOCUMENTATION ROADMAP ===================== @@ -28012,6 +63460,7 @@ If you want to understand how the JPEG code works, we suggest reading one or more of the REFERENCES, then looking at the documentation files (in roughly the order listed) before diving into the code. + OVERVIEW ======== @@ -28064,6 +63513,7 @@ We welcome the use of this software as a component of commercial products. No royalty is required, but we do ask for an acknowledgement in product documentation, as described under LEGAL ISSUES. + LEGAL ISSUES ============ @@ -28113,6 +63563,7 @@ We specifically permit and encourage the use of this software as the basis of commercial products, provided that all warranty or liability claims are assumed by the product vendor. + The Unix configuration script "configure" was produced with GNU Autoconf. It is copyright by the Free Software Foundation but is freely distributable. The same holds for its supporting scripts (config.guess, config.sub, @@ -28131,6 +63582,7 @@ We are required to state that CompuServe Incorporated. GIF(sm) is a Service Mark property of CompuServe Incorporated." + REFERENCES ========== @@ -28138,8 +63590,8 @@ We recommend reading one or more of these references before trying to understand the innards of the JPEG software. The best short technical introduction to the JPEG compression algorithm is - Wallace, Gregory K. "The JPEG Still Picture Compression Standard", - Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. + Wallace, Gregory K. "The JPEG Still Picture Compression Standard", + Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. (Adjacent articles in that issue discuss MPEG motion picture compression, applications of JPEG, and related topics.) If you don't have the CACM issue handy, a PDF file containing a revised version of Wallace's article is @@ -28193,6 +63645,7 @@ of the TIFF spec will replace the 6.0 JPEG design with the Note's design. Although IJG's own code does not support TIFF/JPEG, the free libtiff library uses our library to implement TIFF/JPEG per the Note. + ARCHIVE LOCATIONS ================= @@ -28202,13 +63655,14 @@ directory "files". The JPEG FAQ (Frequently Asked Questions) article is a source of some general information about JPEG. -It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq +It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq/ and other news.answers archive sites, including the official news.answers archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/. If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu with body - send usenet/news.answers/jpeg-faq/part1 - send usenet/news.answers/jpeg-faq/part2 + send usenet/news.answers/jpeg-faq/part1 + send usenet/news.answers/jpeg-faq/part2 + FILE FORMAT WARS ================ @@ -28223,31 +63677,53 @@ Don't use an incompatible file format! (In any case, our decoder will remain capable of reading existing JPEG image files indefinitely.) + TO DO ===== Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org. ==================================================================================================== +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/punycode.cpp +TYPE: LicenseType.unknown +FILE: ../../../third_party/icu/source/common/punycode.cpp +---------------------------------------------------------------------------------------------------- +punycode.c 0.4.0 (2001-Nov-17-Sat) +http://www.cs.berkeley.edu/~amc/idn/ +Adam M. Costello +http://www.nicemice.net/amc/ + +Disclaimer and license + + Regarding this entire document or any portion of it (including + the pseudocode and C code), the author makes no guarantees and + is not responsible for any damage resulting from its use. The + author grants irrevocable permission to anyone to use, modify, + and distribute it in any way that does not diminish the rights + of anyone else to use, modify, and distribute it, provided that + redistributed derivative works do not contain misleading author or + version information. Derivative works need not be licensed under + similar terms. +==================================================================================================== + ==================================================================================================== LIBRARY: zlib ORIGIN: ../../../third_party/zlib/LICENSE TYPE: LicenseType.zlib -FILE: ../../../third_party/zlib/DIR_METADATA FILE: ../../../third_party/zlib/contrib/minizip/ChangeLogUnzip -FILE: ../../../third_party/zlib/contrib/minizip/crypt.h FILE: ../../../third_party/zlib/contrib/minizip/ioapi.c FILE: ../../../third_party/zlib/contrib/minizip/ioapi.h FILE: ../../../third_party/zlib/contrib/minizip/iowin32.c FILE: ../../../third_party/zlib/contrib/minizip/iowin32.h -FILE: ../../../third_party/zlib/contrib/minizip/miniunz.c -FILE: ../../../third_party/zlib/contrib/minizip/minizip.c FILE: ../../../third_party/zlib/contrib/minizip/mztools.c FILE: ../../../third_party/zlib/contrib/minizip/mztools.h FILE: ../../../third_party/zlib/contrib/minizip/unzip.c +FILE: ../../../third_party/zlib/contrib/minizip/unzip.h FILE: ../../../third_party/zlib/contrib/minizip/zip.c +FILE: ../../../third_party/zlib/contrib/minizip/zip.h FILE: ../../../third_party/zlib/crc32.h -FILE: ../../../third_party/zlib/google/DEPS FILE: ../../../third_party/zlib/inffixed.h FILE: ../../../third_party/zlib/patches/0000-build.patch FILE: ../../../third_party/zlib/patches/0001-simd.patch @@ -28281,4 +63757,5 @@ freely, subject to the following restrictions: misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. ==================================================================================================== -Total license count: 426 + +Total license count: 867 diff --git a/ci/licenses_golden/tool_signature b/ci/licenses_golden/tool_signature index 5ab989a0f4fa8..637a7ca2dfc21 100644 --- a/ci/licenses_golden/tool_signature +++ b/ci/licenses_golden/tool_signature @@ -1,2 +1,2 @@ -Signature: 9d0f7a4c4f53b80e33da848062bef937 +Signature: 2aaa7d1662adb75aac43db23f4bd5d97 diff --git a/impeller/compiler/BUILD.gn b/impeller/compiler/BUILD.gn index 2a0a4ad90eabc..dc06f32fd421d 100644 --- a/impeller/compiler/BUILD.gn +++ b/impeller/compiler/BUILD.gn @@ -61,8 +61,7 @@ impeller_component("compiler_lib") { "../runtime_stage", "//flutter/fml", - # All third_party deps must be reflected below in the impellerc_license - # target. + # All third_party deps must be included by the global license script. "//third_party/inja", "//third_party/shaderc_flutter", "//third_party/spirv_cross_flutter", @@ -86,23 +85,6 @@ generated_file("impellerc_license") { "", read_file("//flutter/sky/packages/sky_engine/LICENSE", "string"), "", - - # These licenses are ignored by the main license checker, since they are not - # shipped to end-application binaries and only shipped as part of developer - # tooling in impellerc. Add them here. - "## Additional open source licenses", - "", - "### inja", - "", - read_file("//third_party/inja/LICENSE", "string"), - "", - "### shaderc", - "", - read_file("//third_party/shaderc/LICENSE", "string"), - "", - "### spirv_cross", - "", - read_file("//third_party/vulkan-deps/spirv-cross/src/LICENSE", "string"), ] } diff --git a/sky/packages/sky_engine/LICENSE b/sky/packages/sky_engine/LICENSE index ac1c5421fca28..dd72ddcd9bae6 100644 --- a/sky/packages/sky_engine/LICENSE +++ b/sky/packages/sky_engine/LICENSE @@ -1,198 +1,42 @@ -smhasher - -All MurmurHash source files are placed in the public domain. - -The license below applies to all other code in SMHasher: - -Copyright (c) 2011 Google, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. --------------------------------------------------------------------------------- -etc1 - -Apache License - -Version 2.0, January 2004 - -http://www.apache.org/licenses +icu -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +# Copyright (c) 2006-2015 International Business Machines Corporation, + # Apple Inc., and others. All Rights Reserved. -1. Definitions. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -"License" shall mean the terms and conditions for use, reproduction, and -distribution as defined by Sections 1 through 9 of this document. - -"Licensor" shall mean the copyright owner or entity authorized by the -copyright owner that is granting the License. - -"Legal Entity" shall mean the union of the acting entity and all other -entities that control, are controlled by, or are under common control with -that entity. For the purposes of this definition, "control" means (i) the -power, direct or indirect, to cause the direction or management of such -entity, whether by contract or otherwise, or (ii) ownership of fifty -percent (50%) or more of the outstanding shares, or (iii) beneficial -ownership of such entity. - -"You" (or "Your") shall mean an individual or Legal Entity exercising -permissions granted by this License. - -"Source" form shall mean the preferred form for making modifications, -including but not limited to software source code, documentation -source, and configuration files. - -"Object" form shall mean any form resulting from mechanical transformation -or translation of a Source form, including but not limited to compiled -object code, generated documentation, and conversions to other media types. - -"Work" shall mean the work of authorship, whether in Source or Object -form, made available under the License, as indicated by a copyright -notice that is included in or attached to the work (an example is -provided in the Appendix below). - -"Derivative Works" shall mean any work, whether in Source or Object -form, that is based on (or derived from) the Work and for which the -editorial revisions, annotations, elaborations, or other modifications -represent, as a whole, an original work of authorship. For the purposes -of this License, Derivative Works shall not include works that remain -separable from, or merely link (or bind by name) to the interfaces of, -the Work and Derivative Works thereof. - -"Contribution" shall mean any work of authorship, including the original -version of the Work and any modifications or additions to that Work or -Derivative Works thereof, that is intentionally submitted to Licensor -for inclusion in the Work by the copyright owner or by an individual or -Legal Entity authorized to submit on behalf of the copyright owner. For -the purposes of this definition, "submitted" means any form of electronic, -verbal, or written communication sent to the Licensor or its -representatives, including but not limited to communication on electronic -mailing lists, source code control systems, and issue tracking systems that -are managed by, or on behalf of, the Licensor for the purpose of discussing -and improving the Work, but excluding communication that is conspicuously -marked or otherwise designated in writing by the copyright owner as "Not -a Contribution." - -"Contributor" shall mean Licensor and any individual or Legal Entity on -behalf of whom a Contribution has been received by Licensor and subsequently -incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of this -License, each Contributor hereby grants to You a perpetual, worldwide, -non-exclusive, no-charge, royalty-free, irrevocable copyright license to -reproduce, prepare Derivative Works of, publicly display, publicly perform, -sublicense, and distribute the Work and such Derivative Works in Source or -Object form. - -3. Grant of Patent License. Subject to the terms and conditions of this -License, each Contributor hereby grants to You a perpetual, worldwide, -non-exclusive, no-charge, royalty-free, irrevocable (except as stated in -this section) patent license to make, have made, use, offer to sell, sell, -import, and otherwise transfer the Work, where such license applies only to -those patent claims licensable by such Contributor that are necessarily -infringed by their Contribution(s) alone or by combination of their -Contribution(s) with the Work to which such Contribution(s) was submitted. -If You institute patent litigation against any entity (including a cross-claim -or counterclaim in a lawsuit) alleging that the Work or a Contribution -incorporated within the Work constitutes direct or contributory patent -infringement, then any patent licenses granted to You under this License -for that Work shall terminate as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the Work or -Derivative Works thereof in any medium, with or without modifications, and -in Source or Object form, provided that You meet the following conditions: - -You must give any other recipients of the Work or Derivative Works a copy of -this License; and -You must cause any modified files to carry prominent notices stating that -You changed the files; and -You must retain, in the Source form of any Derivative Works that You -distribute, all copyright, patent, trademark, and attribution notices -from the Source form of the Work, excluding those notices that do not -pertain to any part of the Derivative Works; and -If the Work includes a "NOTICE" text file as part of its distribution, -then any Derivative Works that You distribute must include a readable -copy of the attribution notices contained within such NOTICE file, excluding -those notices that do not pertain to any part of the Derivative Works, in -at least one of the following places: within a NOTICE text file distributed -as part of the Derivative Works; within the Source form or documentation, if -provided along with the Derivative Works; or, within a display generated by -the Derivative Works, if and wherever such third-party notices normally -appear. The contents of the NOTICE file are for informational purposes -only and do not modify the License. You may add Your own attribution -notices within Derivative Works that You distribute, alongside or as -an addendum to the NOTICE text from the Work, provided that such additional -attribution notices cannot be construed as modifying the License. - -You may add Your own copyright statement to Your modifications and may provide -additional or different license terms and conditions for use, reproduction, or -distribution of Your modifications, or for any such Derivative Works as a -whole, provided Your use, reproduction, and distribution of the Work otherwise -complies with the conditions stated in this License. -5. Submission of Contributions. Unless You explicitly state otherwise, any -Contribution intentionally submitted for inclusion in the Work by You to the -Licensor shall be under the terms and conditions of this License, without any -additional terms or conditions. Notwithstanding the above, nothing herein -shall supersede or modify the terms of any separate license agreement you -may have executed with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade names, -trademarks, service marks, or product names of the Licensor, except as -required for reasonable and customary use in describing the origin of the -Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or agreed to -in writing, Licensor provides the Work (and each Contributor provides its -Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF -ANY KIND, either express or implied, including, without limitation, any -warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or -FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining -the appropriateness of using or redistributing the Work and assume any risks -associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, whether in -tort (including negligence), contract, or otherwise, unless required by -applicable law (such as deliberate and grossly negligent acts) or agreed to -in writing, shall any Contributor be liable to You for damages, including -any direct, indirect, special, incidental, or consequential damages of any -character arising as a result of this License or out of the use or inability -to use the Work (including but not limited to damages for loss of goodwill, -work stoppage, computer failure or malfunction, or any and all other -commercial damages or losses), even if such Contributor has been advised -of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing the -Work or Derivative Works thereof, You may choose to offer, and charge a -fee for, acceptance of support, warranty, indemnity, or other liability -obligations and/or rights consistent with this License. However, in accepting -such obligations, You may act only on Your own behalf and on Your sole -responsibility, not on behalf of any other Contributor, and only if You -agree to indemnify, defend, and hold each Contributor harmless for any -liability incurred by, or claims asserted against, such Contributor by -reason of your accepting any such warranty or additional liability. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -END OF TERMS AND CONDITIONS +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- flatbuffers Apache License Version 2.0, January 2004 -http://www.apache.org/licenses +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -394,22 +238,25 @@ limitations under the License. -------------------------------------------------------------------------------- abseil-cpp angle -boringssl etc1 expat flatbuffers fuchsia-vulkan +fuchsia_sdk +glslang khronos -libwebp pkg +shaderc +spirv-cross txt vulkan -vulkan-deps +vulkan-headers +vulkan-validation-layers wuffs Apache License Version 2.0, January 2004 -http://www.apache.org/licenses +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -614,7 +461,7 @@ libcxxabi Apache License Version 2.0, January 2004 -http://www.apache.org/licenses +http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -814,6 +661,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + --- LLVM Exceptions to the Apache 2.0 License ---- As an exception, if, as a result of your compiling your source code, portions @@ -834,7 +682,7 @@ abseil-cpp Apache License Version 2.0, January 2004 -https://www.apache.org/licenses +https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -1034,6 +882,164 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -------------------------------------------------------------------------------- +libpng + +COPYRIGHT NOTICE, DISCLAIMER, and LICENSE +========================================= + +PNG Reference Library License version 2 +--------------------------------------- + +* Copyright (c) 1995-2019 The PNG Reference Library Authors. +* Copyright (c) 2018-2019 Cosmin Truta. +* Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson. +* Copyright (c) 1996-1997 Andreas Dilger. +* Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +The software is supplied "as is", without warranty of any kind, +express or implied, including, without limitation, the warranties +of merchantability, fitness for a particular purpose, title, and +non-infringement. In no event shall the Copyright owners, or +anyone distributing the software, be liable for any damages or +other liability, whether in contract, tort or otherwise, arising +from, out of, or in connection with the software, or the use or +other dealings in the software, even if advised of the possibility +of such damage. + +Permission is hereby granted to use, copy, modify, and distribute +this software, or portions hereof, for any purpose, without fee, +subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you + must not claim that you wrote the original software. If you + use this software in a product, an acknowledgment in the product + documentation would be appreciated, but is not required. + +2. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + +3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + + +PNG Reference Library License version 1 (for libpng 0.5 through 1.6.35) +----------------------------------------------------------------------- + +libpng versions 1.0.7, July 1, 2000, through 1.6.35, July 15, 2018 are +Copyright (c) 2000-2002, 2004, 2006-2018 Glenn Randers-Pehrson, are +derived from libpng-1.0.6, and are distributed according to the same +disclaimer and license as libpng-1.0.6 with the following individuals +added to the list of Contributing Authors: + + Simon-Pierre Cadieux + Eric S. Raymond + Mans Rullgard + Cosmin Truta + Gilles Vollant + James Yu + Mandar Sahastrabuddhe + Google Inc. + Vadim Barkov + +and with the following additions to the disclaimer: + + There is no warranty against interference with your enjoyment of + the library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is + with the user. + +Some files in the "contrib" directory and some configure-generated +files that are distributed with libpng have other copyright owners, and +are released under other open source licenses. + +libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are +Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from +libpng-0.96, and are distributed according to the same disclaimer and +license as libpng-0.96, with the following individuals added to the +list of Contributing Authors: + + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + +libpng versions 0.89, June 1996, through 0.96, May 1997, are +Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88, +and are distributed according to the same disclaimer and license as +libpng-0.88, with the following individuals added to the list of +Contributing Authors: + + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + +Some files in the "scripts" directory have other copyright owners, +but are released under this license. + +libpng versions 0.5, May 1995, through 0.88, January 1996, are +Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc. + +For the purposes of this copyright and license, "Contributing Authors" +is defined as the following set of individuals: + + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + +The PNG Reference Library is supplied "AS IS". The Contributing +Authors and Group 42, Inc. disclaim all warranties, expressed or +implied, including, without limitation, the warranties of +merchantability and of fitness for any purpose. The Contributing +Authors and Group 42, Inc. assume no liability for direct, indirect, +incidental, special, exemplary, or consequential damages, which may +result from the use of the PNG Reference Library, even if advised of +the possibility of such damage. + +Permission is hereby granted to use, copy, modify, and distribute this +source code, or portions hereof, for any purpose, without fee, subject +to the following restrictions: + +1. The origin of this source code must not be misrepresented. + +2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + +3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + +The Contributing Authors and Group 42, Inc. specifically permit, +without fee, and encourage the use of this source code as a component +to supporting the PNG file format in commercial products. If you use +this source code in a product, acknowledgment is not required but would +be appreciated. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 1988 by Jef Poskanzer. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided +that the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. This software is provided "as is" without express or +implied warranty. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 1989 by Jef Poskanzer. +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, provided +that the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. This software is provided "as is" without express or +implied warranty. +-------------------------------------------------------------------------------- boringssl Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) @@ -1150,154 +1156,383 @@ derivative of this code cannot be changed. i.e. this code cannot simply be copied and put under another distribution licence [including the GNU Public Licence.] -------------------------------------------------------------------------------- -freetype2 -zlib +icu -Copyright (C) 1995-2003, 2010 Mark Adler +Copyright (C) 1995-2001, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib +icu -Copyright (C) 1995-2003, 2010 Mark Adler -Copyright (C) 2017 ARM, Inc. +Copyright (C) 1995-2002, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib +icu -Copyright (C) 1995-2003, 2010, 2014, 2016 Jean-loup Gailly, Mark Adler +Copyright (C) 1995-2003, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -freetype2 -zlib +icu -Copyright (C) 1995-2005, 2010 Mark Adler +Copyright (C) 1995-2005, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib - -Copyright (C) 1995-2005, 2014, 2016 Jean-loup Gailly, Mark Adler +icu -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright (C) 1995-2006, International Business Machines +Corporation and others. All Rights Reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -freetype2 +icu -Copyright (C) 1995-2006, 2010, 2011, 2012, 2016 Mark Adler +Copyright (C) 1995-2007, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -freetype2 -zlib +icu -Copyright (C) 1995-2011, 2016 Mark Adler +Copyright (C) 1995-2009, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1995-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- freetype2 -zlib -Copyright (C) 1995-2016 Jean-loup Gailly, Mark Adler +Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -1315,9 +1550,9 @@ freely, subject to the following restrictions: misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. -------------------------------------------------------------------------------- -freetype2 +zlib -Copyright (C) 1995-2016 Mark Adler +Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages @@ -1335,620 +1570,930 @@ freely, subject to the following restrictions: misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. -------------------------------------------------------------------------------- -freetype2 -zlib +icu -Copyright (C) 1995-2017 Jean-loup Gailly +Copyright (C) 1996-2008, International Business Machines Corporation * +and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -freetype2 +icu -Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler +Copyright (C) 1996-2012, International Business Machines Corporation +and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -freetype2 -zlib +icu -Copyright (C) 1995-2017 Mark Adler +Copyright (C) 1996-2012, International Business Machines Corporation and +others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib +icu -Copyright (C) 1995-2018 Jean-loup Gailly +Copyright (C) 1996-2013, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib +icu -Copyright (C) 1995-2019 Mark Adler +Copyright (C) 1996-2013, International Business Machines Corporation +and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib +icu -Copyright (C) 1995-2021 Jean-loup Gailly -detect_data_type() function provided freely by Cosmin Truta, 2006 +Copyright (C) 1996-2014, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib - -Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +icu -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Copyright (C) 1996-2014, International Business Machines Corporation and +others. All Rights Reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 1995-2022 Jean-loup Gailly, Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib +icu -Copyright (C) 1995-2022 Mark Adler +Copyright (C) 1996-2014, International Business Machines Corporation and others. +All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib - -Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) - -Modifications for Zip64 support -Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) - -For more info read MiniZip_info.txt +icu -Condition of use and distribution are the same than zlib : +Copyright (C) 1996-2015, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib +icu -Copyright (C) 1998-2010 Gilles Vollant (minizip) ( http://www.winimage.com/zLibDll/minizip.html ) +Copyright (C) 1996-2015, International Business Machines Corporation and +others. All Rights Reserved. -Modifications of Unzip for Zip64 -Copyright (C) 2007-2008 Even Rouault +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Modifications for Zip64 support on both zip and unzip -Copyright (C) 2009-2010 Mathias Svensson ( http://result42.com ) +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -For more info read MiniZip_info.txt +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -Condition of use and distribution are the same than zlib : +Copyright (C) 1996-2015, International Business Machines Corporation and others. +All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +icu -Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright (C) 1996-2016, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -freetype2 +icu -Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by -Francesco Zappa Nardelli +Copyright (C) 1996-2016, International Business Machines +Corporation and others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -freetype2 +icu -Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by -Francesco Zappa Nardelli +Copyright (C) 1996-2016, International Business Machines Corporation and +others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -freetype2 +icu -Copyright (C) 2001, 2002 by -Francesco Zappa Nardelli +Copyright (C) 1997-2000, International Business Machines +Corporation and others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -freetype2 +icu -Copyright (C) 2001, 2002, 2003, 2004 by -Francesco Zappa Nardelli +Copyright (C) 1997-2003, International Business Machines +Corporation and others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -freetype2 +icu -Copyright (C) 2001-2008, 2011, 2013, 2014 by -Francesco Zappa Nardelli +Copyright (C) 1997-2005, International Business Machines +Corporation and others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -freetype2 +icu -Copyright (C) 2004, 2005, 2010, 2011, 2012, 2013, 2016 Mark Adler +Copyright (C) 1997-2005, International Business Machines Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -zlib - -Copyright (C) 2004, 2010 Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib +icu -Copyright (C) 2004-2017 Mark Adler +Copyright (C) 1997-2006, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib +icu -Copyright (C) 2004-2019 Mark Adler +Copyright (C) 1997-2009,2014 International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -angle +icu -Copyright (C) 2009 Apple Inc. All Rights Reserved. +Copyright (C) 1997-2010, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -Copyright (C) 2009, D. R. Commander. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright (C) 1997-2010, International Business Machines Corporation and * +others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2009-2011, 2014-2016, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. +icu -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright (C) 1997-2011, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +icu -Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +Copyright (C) 1997-2011, International Business Machines Corporation and others. All Rights Reserved. -Author: Siarhei Siamashka -Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved. -Author: Ragesh Radhakrishnan -Copyright (C) 2014-2016, D. R. Commander. All Rights Reserved. -Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. -Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +icu -Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). -All Rights Reserved. -Author: Siarhei Siamashka -Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved. -Copyright (C) 2014, Linaro Limited. All Rights Reserved. -Copyright (C) 2015, D. R. Commander. All Rights Reserved. -Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. +Copyright (C) 1997-2011,2014-2015 International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -harfbuzz - -Copyright (C) 2011 Google, Inc. +icu - This is part of HarfBuzz, a text shaping library. +Copyright (C) 1997-2012, International Business Machines +Corporation and others. All Rights Reserved. -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +icu -Copyright (C) 2011, D. R. Commander. +Copyright (C) 1997-2012, International Business Machines Corporation and * +others. All Rights Reserved. -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glfw + +Copyright (C) 1997-2013 Sam Lantinga + +This software is provided 'as-is', without any express or implied warranty. +In no event will the authors be held liable for any damages arising from the +use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it @@ -1956,1255 +2501,15437 @@ freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. -------------------------------------------------------------------------------- -harfbuzz +icu -Copyright (C) 2012 Grigori Goronzy +Copyright (C) 1997-2013, International Business Machines +Corporation and others. All Rights Reserved. -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -xxhash +icu -Copyright (C) 2012-2016, Yann Collet +Copyright (C) 1997-2013, International Business Machines * +Corporation and others. All Rights Reserved. -BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -* Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -xxhash +Copyright (C) 1997-2013, International Business Machines Corporation and +others. All Rights Reserved. -Copyright (C) 2012-2016, Yann Collet. - -BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -harfbuzz - -Copyright (C) 2013 Google, Inc. +icu - This is part of HarfBuzz, a text shaping library. +Copyright (C) 1997-2013, International Business Machines Corporation and * +others. All Rights Reserved. -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib +icu -Copyright (C) 2013 Intel Corporation. All rights reserved. -Authors: - Wajdi Feghali - Jim Guilford - Vinodh Gopal - Erdinc Ozturk - Jim Kukunas +Copyright (C) 1997-2013, International Business Machines Corporation and others. +All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright (C) 2013, MIPS Technologies, Inc., California. -All Rights Reserved. -Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) - Darko Laus (darko.laus@imgtec.com) -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +icu -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo +Copyright (C) 1997-2014, International Business Machines +Corporation and others. All Rights Reserved. -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -All Rights Reserved. -Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) - Darko Laus (darko.laus@imgtec.com) -Copyright (C) 2015, D. R. Commander. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -skia +icu -Copyright (C) 2014 Google Inc. All rights reserved. +Copyright (C) 1997-2015, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +Copyright (C) 1997-2015, International Business Machines +Corporation and others. All Rights Reserved. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +icu -Copyright (C) 2014, D. R. Commander. All Rights Reserved. +Copyright (C) 1997-2015, International Business Machines Corporation +and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +icu -Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. +Copyright (C) 1997-2015, International Business Machines Corporation and +others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +icu -Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. -Copyright (C) 2014, Jay Foad. All Rights Reserved. +Copyright (C) 1997-2015, International Business Machines Corporation and * +others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +icu -Copyright (C) 2015, D. R. Commander. All Rights Reserved. +Copyright (C) 1997-2015, International Business Machines Corporation and others. +All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- icu -Copyright (C) 2016 and later: Unicode, Inc. and others. -License & terms of use: http://www.unicode.org/copyright.html -Copyright (c) 2015 International Business Machines Corporation -and others. All Rights Reserved. - -Project: https://github.com/rober42539/lao-dictionary -Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt -License: https://github.com/rober42539/lao-dictionary/LICENSE.txt - (copied below) +Copyright (C) 1997-2016, International Business Machines +Corporation and others. All Rights Reserved. - This file is derived from the above dictionary version of Nov 22, 2020 +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. - Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. - All rights reserved. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu - Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. Redistributions in binary - form must reproduce the above copyright notice, this list of conditions and - the following disclaimer in the documentation and/or other materials - provided with the distribution. +Copyright (C) 1997-2016, International Business Machines Corporation and +others. All Rights Reserved. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -zlib +icu -Copyright (C) 2017 ARM, Inc. -Copyright 2017 The Chromium Authors. All rights reserved. +Copyright (C) 1997-2016, International Business Machines Corporation and * +others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libtess2 +icu -Copyright (C) [dates of first publication] Silicon Graphics, Inc. +Copyright (C) 1997-2016, International Business Machines Corporation and others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice including the dates of first publication and either this -permission notice or a reference to http://oss.sgi.com/projects/FreeB/ shall be -included in all copies or substantial portions of the Software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, -INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC. -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE -OR OTHER DEALINGS IN THE SOFTWARE. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -Except as contained in this notice, the name of Silicon Graphics, Inc. shall not -be used in advertising or otherwise to promote the sale, use or other dealings in -this Software without prior written authorization from Silicon Graphics, Inc. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +icu -Copyright (C)2009-2014 D. R. Commander. All Rights Reserved. +Copyright (C) 1998-2004, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +zlib -Copyright (C)2009-2015 D. R. Commander. All Rights Reserved. +Copyright (C) 1998-2005 Gilles Vollant +-------------------------------------------------------------------------------- +icu -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +Copyright (C) 1998-2005, International Business Machines +Corporation and others. All Rights Reserved. -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +icu -Copyright (C)2009-2016 D. R. Commander. All Rights Reserved. +Copyright (C) 1998-2006, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +icu -Copyright (C)2011 D. R. Commander. All Rights Reserved. +Copyright (C) 1998-2008, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +icu -Copyright (C)2011, 2015 D. R. Commander. All Rights Reserved. +Copyright (C) 1998-2011, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +icu -Copyright (C)2011-2016 D. R. Commander. All Rights Reserved. +Copyright (C) 1998-2012, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- icu -Copyright (c) 1995-2016 International Business Machines Corporation and others -All rights reserved. +Copyright (C) 1998-2012, International Business Machines Corporation and +others. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, and/or sell copies of the Software, and to permit persons -to whom the Software is furnished to do so, provided that the above -copyright notice(s) and this permission notice appear in all copies of -the Software and that both the above copyright notice(s) and this -permission notice appear in supporting documentation. +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR -HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY -SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF -CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, use -or other dealings in this Software without prior written authorization -of the copyright holder. - -All trademarks and registered trademarks mentioned herein are the -property of their respective owners. +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -expat - -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2000-2004 Fred L. Drake, Jr. -Copyright (c) 2001-2002 Greg Stein -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2016 Cristian Rodríguez -Copyright (c) 2016-2019 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2018 Yury Gribov -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +icu -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +Copyright (C) 1998-2014, International Business Machines +Corporation and others. All Rights Reserved. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1998-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2001, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2006,2013 IBM Corp. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2007, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2008, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2009, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2010, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2011, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2014 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2015 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines Corporation + and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 1999-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2004, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2012, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2000-2016, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2001, 2002 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2001, 2002, 2003, 2004 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2005, International Business Machines Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +freetype2 + +Copyright (C) 2001-2008, 2011, 2013, 2014 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2008,2010 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines * + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011, International Business Machines Corporation. * +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2011,2014 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2012, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2013, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines * + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2014, International Business Machines Corporation. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2015 IBM and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2015, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2016, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2001-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2019 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2020 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2018-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2015 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +Copyright (C) 2017, 2019 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2015 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2015-2016 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020-2021 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2012-2016 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2020 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013 LunarG, Inc. +Copyright (c) 2002-2010 The ANGLE Project Authors. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2013-2016 LunarG, Inc. +Copyright (C) 2016-2020 Google, Inc. +Modifications Copyright(C) 2021 Advanced Micro Devices, Inc.All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2016 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2002-2005 3Dlabs Inc. Ltd. +Copyright (C) 2017 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2005, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2008 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2008, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2011 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2011, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2014 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2015 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2015, International Business Machines Corporation and others. + All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016 International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016, International Business Machines Corporation and others. + All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2002-2016, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003 - 2008, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003 - 2009, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003 - 2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003 - 2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2003, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2004, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2008, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2009, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2009,2012,2016 International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2010, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2014, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2015, International Business Machines * + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2015, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2016, International Business Machines * + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2003-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004 - 2008, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2004-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2005-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006 International Business Machines Corporation * +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006-2012, International Business Machines Corporation and others. * +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006-2014, International Business Machines Corporation * +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2006-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2008, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2008, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2008, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2014, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2007-2016, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008, Google, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2009, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2011, International Business Machines +Corporation, Google and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2012, International Business Machines Corporation * +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2014, Google, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2014, Google, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2015, Google, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2015, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2016, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2008-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +systeminfo + +Copyright (C) 2009 Apple Inc. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY +OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2010 IBM Corporation and Others. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2010, Google, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2010, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2011, International Business Machines + Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2011, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved. +Author: Ragesh Radhakrishnan +Copyright (C) 2014-2016, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. +Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved. +Copyright (C) 2014, Linaro Limited. All Rights Reserved. +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2015, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2016, International Business Machines Corporation, * +Google, and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2009-2017, International Business Machines Corporation, * +Google, and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010 , Yahoo! Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2012,2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2012,2015 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2014, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2014, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2016 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2010-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (C) 2011 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +include + +Copyright (C) 2011 Nick Bruun +Copyright (C) 2013 Vlad Lazarenko +Copyright (C) 2014 Nicolas Pauss +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2012, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2013, Apple Inc. and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2013, Apple Inc.; Unicode, Inc.; and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2015, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2011-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (C) 2012 Grigori Goronzy + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012 International Business Machines Corporation +and others. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012,2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2012-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +vulkan-validation-layers +xxhash + +Copyright (C) 2012-2016, Yann Collet + +BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +vulkan-validation-layers +xxhash + +Copyright (C) 2012-2016, Yann Collet. + +BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +harfbuzz + +Copyright (C) 2013 Google, Inc. + +This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013 LunarG, Inc. +Copyright (C) 2017 ARM Limited. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2013, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2014, International Business Machines Corporation and * +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2014, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2013-2014, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2013-2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2013-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +skia + +Copyright (C) 2014 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014, D. R. Commander. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2015-2018 Google, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2015 LunarG, Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2014, Jay Foad. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2015-2020 Google, Inc. +Copyright (C) 2017 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2014-2016 LunarG, Inc. +Copyright (C) 2018-2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines Corporation and +others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2014-2016, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2015 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +rapidjson + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip-> All rights reserved-> + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +rapidjson + +Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C) 2015, D. R. Commander. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2015-2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2015-2016, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2015-2018 Google, Inc. +Copyright (C) 2017 ARM Limited. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 Google, Inc. +Copyright (C) 2019 ARM Limited. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016 and later: Unicode, Inc. and others. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (C) 2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 Google, Inc. +Copyright (C) 2020 The Khronos Group Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2017 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2018 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2016-2018 Google, Inc. +Copyright (C) 2016 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +zlib + +Copyright (C) 2017 ARM, Inc. +Copyright 2017 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017 LunarG, Inc. +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017 LunarG, Inc. +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2017-2018 Google, Inc. +Copyright (C) 2017 LunarG, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2018 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2018 The Khronos Group Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2020 Google, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of Google, Inc., nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +glslang + +Copyright (C) 2020 The Khronos Group Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of The Khronos Group Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +icu + +Copyright (C) The Internet Society (2002). All Rights Reserved. + +This document and translations of it may be copied and furnished to +others, and derivative works that comment on or otherwise explain it +or assist in its implementation may be prepared, copied, published +and distributed, in whole or in part, without restriction of any +kind, provided that the above copyright notice and this paragraph are +included on all such copies and derivative works. However, this +document itself may not be modified in any way, such as by removing +the copyright notice or references to the Internet Society or other +Internet organizations, except as needed for the purpose of +developing Internet standards in which case the procedures for +copyrights defined in the Internet Standards process must be +followed, or as required to translate it into languages other than +English. + +The limited permissions granted above are perpetual and will not be +revoked by the Internet Society or its successors or assigns. + +This document and the information contained herein is provided on an +"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING +TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING +BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION +HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF +MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. +-------------------------------------------------------------------------------- +libtess2 + +Copyright (C) [dates of first publication] Silicon Graphics, Inc. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice including the dates of first publication and either this +permission notice or a reference to http://oss.sgi.com/projects/FreeB/ shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC. +BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE +OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of Silicon Graphics, Inc. shall not +be used in advertising or otherwise to promote the sale, use or other dealings in +this Software without prior written authorization from Silicon Graphics, Inc. +-------------------------------------------------------------------------------- +icu + +Copyright (C) {1999-2001}, International Business Machines Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2014 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2015 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2009-2016 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011, 2015 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +libjpeg-turbo + +Copyright (C)2011-2016 D. R. Commander. All Rights Reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2015, International Business Machines Corporation and others. +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2016, International Business Machines Corporation + and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1996-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2004 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2016 Cristian Rodríguez +Copyright (c) 2016-2019 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2018 Yury Gribov + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2005 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2016 Cristian Rodríguez +Copyright (c) 2016 Thomas Beutlich +Copyright (c) 2017 Rhodri James +Copyright (c) 2022 Thijs Schreijer + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2000-2006 Fred L. Drake, Jr. +Copyright (c) 2001-2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016 Eric Rahm +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2016 Gaurav +Copyright (c) 2016 Thomas Beutlich +Copyright (c) 2016 Gustavo Grieco +Copyright (c) 2016 Pascal Cuoq +Copyright (c) 2016 Ed Schouten +Copyright (c) 2017-2022 Rhodri James +Copyright (c) 2017 Václav Slavík +Copyright (c) 2017 Viktor Szakats +Copyright (c) 2017 Chanho Park +Copyright (c) 2017 Rolf Eike Beer +Copyright (c) 2017 Hans Wennborg +Copyright (c) 2018 Anton Maklakov +Copyright (c) 2018 Benjamin Peterson +Copyright (c) 2018 Marco Maggi +Copyright (c) 2018 Mariusz Zaborski +Copyright (c) 2019 David Loffredo +Copyright (c) 2019-2020 Ben Wagner +Copyright (c) 2019 Vadim Zeitlin +Copyright (c) 2021 Dong-hee Na +Copyright (c) 2022 Samanta Navarro +Copyright (c) 2022 Jeffrey Walton +Copyright (c) 2022 Jann Horn + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2002 Fred L. Drake, Jr. +Copyright (c) 2006 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2002 Greg Stein +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2016 Pascal Cuoq +Copyright (c) 2016 Don Lewis +Copyright (c) 2017 Rhodri James +Copyright (c) 2017 Alexander Bluhm +Copyright (c) 2017 Benbuck Nason +Copyright (c) 2017 José Gutiérrez de la Concha +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Dong-hee Na +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2009 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2020 Joe Orton +Copyright (c) 2020 Kleber Tarcísio +Copyright (c) 2021 Tim Bray +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2001-2004 Fred L. Drake, Jr. +Copyright (c) 2002-2009 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2017 Franek Korta + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2005 Karl Waclawek +Copyright (c) 2016-2017 Sebastian Pipping +Copyright (c) 2017 Rhodri James + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2016 Karl Waclawek +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2018 Benjamin Peterson +Copyright (c) 2018 Anton Maklakov +Copyright (c) 2019 David Loffredo +Copyright (c) 2020 Boris Kolpackov +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2005 Karl Waclawek +Copyright (c) 2016-2019 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2005-2006 Karl Waclawek +Copyright (c) 2016-2019 Sebastian Pipping +Copyright (c) 2019 David Loffredo + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2022 Martin Ettl + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2017-2021 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2005-2009 Steven Solie +Copyright (c) 2016-2021 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Dong-hee Na + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Karl Waclawek +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2004-2006 Karl Waclawek +Copyright (c) 2005-2007 Steven Solie +Copyright (c) 2016-2021 Sebastian Pipping +Copyright (c) 2017 Rhodri James +Copyright (c) 2019 David Loffredo +Copyright (c) 2021 Dong-hee Na + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper +Copyright (c) 2017-2019 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2002 Fred L. Drake, Jr. +Copyright (c) 2016-2018 Sebastian Pipping +Copyright (c) 2018 Marco Maggi + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 2016-2021 Sebastian Pipping +Copyright (c) 2017 Rhodri James + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -expat +icu + +Copyright (c) 1997-2011, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1997-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1997-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1997-2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2000-2005 Fred L. Drake, Jr. -Copyright (c) 2001-2002 Greg Stein -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2016 Cristian Rodríguez -Copyright (c) 2016 Thomas Beutlich -Copyright (c) 2017 Rhodri James -Copyright (c) 2022 Thijs Schreijer -Licensed under the MIT license: +Copyright (c) 1997-2016, International Business Machines Corporation +and others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- expat -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2000-2006 Fred L. Drake, Jr. -Copyright (c) 2001-2002 Greg Stein -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016 Eric Rahm -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2016 Gaurav -Copyright (c) 2016 Thomas Beutlich -Copyright (c) 2016 Gustavo Grieco -Copyright (c) 2016 Pascal Cuoq -Copyright (c) 2016 Ed Schouten -Copyright (c) 2017-2022 Rhodri James -Copyright (c) 2017 Václav Slavík -Copyright (c) 2017 Viktor Szakats -Copyright (c) 2017 Chanho Park -Copyright (c) 2017 Rolf Eike Beer -Copyright (c) 2017 Hans Wennborg -Copyright (c) 2018 Anton Maklakov -Copyright (c) 2018 Benjamin Peterson -Copyright (c) 2018 Marco Maggi -Copyright (c) 2018 Mariusz Zaborski -Copyright (c) 2019 David Loffredo -Copyright (c) 2019-2020 Ben Wagner -Copyright (c) 2019 Vadim Zeitlin -Copyright (c) 2021 Dong-hee Na -Copyright (c) 2022 Samanta Navarro -Copyright (c) 2022 Jeffrey Walton -Copyright (c) 2022 Jann Horn -Licensed under the MIT license: +Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper +Copyright (c) 2001-2022 Expat maintainers -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: -The above copyright notice and this permission notice shall be included +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -expat +boringssl -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2002 Fred L. Drake, Jr. -Copyright (c) 2006 Karl Waclawek -Copyright (c) 2016-2017 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT license: +Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2002 Greg Stein -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2016 Pascal Cuoq -Copyright (c) 2016 Don Lewis -Copyright (c) 2017 Rhodri James -Copyright (c) 2017 Alexander Bluhm -Copyright (c) 2017 Benbuck Nason -Copyright (c) 2017 José Gutiérrez de la Concha -Copyright (c) 2019 David Loffredo -Copyright (c) 2021 Dong-hee Na -Copyright (c) 2022 Martin Ettl -Licensed under the MIT license: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -expat +boringssl -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2009 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Copyright (c) 2020 Joe Orton -Copyright (c) 2020 Kleber Tarcísio -Copyright (c) 2021 Tim Bray -Copyright (c) 2022 Martin Ettl -Licensed under the MIT license: +Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2004 Fred L. Drake, Jr. -Copyright (c) 2002-2009 Karl Waclawek -Copyright (c) 2016-2017 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2017 Franek Korta -Licensed under the MIT license: +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -expat +boringssl -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2005 Karl Waclawek -Copyright (c) 2016-2017 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT license: +Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2016 Karl Waclawek -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2018 Benjamin Peterson -Copyright (c) 2018 Anton Maklakov -Copyright (c) 2019 David Loffredo -Copyright (c) 2020 Boris Kolpackov -Copyright (c) 2022 Martin Ettl -Licensed under the MIT license: +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -expat +boringssl -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2005 Karl Waclawek -Copyright (c) 2016-2019 Sebastian Pipping -Licensed under the MIT license: +Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2005-2006 Karl Waclawek -Copyright (c) 2016-2019 Sebastian Pipping -Copyright (c) 2019 David Loffredo -Licensed under the MIT license: +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@OpenSSL.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -expat +boringssl -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2017 Sebastian Pipping -Licensed under the MIT license: +Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2022 Martin Ettl -Licensed under the MIT license: +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -expat +boringssl -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT license: +Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2017-2021 Sebastian Pipping -Licensed under the MIT license: +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -expat +boringssl -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2005-2009 Steven Solie -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Copyright (c) 2021 Dong-hee Na -Licensed under the MIT license: +Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Karl Waclawek -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT license: +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -expat +boringssl -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2006 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 David Loffredo -Copyright (c) 2021 Dong-hee Na -Licensed under the MIT license: +Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2017-2019 Sebastian Pipping -Licensed under the MIT license: +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -expat +boringssl -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2004-2006 Karl Waclawek -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Copyright (c) 2019 Zhongyuan Zhou -Licensed under the MIT license: +Copyright (c) 1999 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2017 Sebastian Pipping -Licensed under the MIT license: +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- expat -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd +Copyright (c) 1999-2000 Thai Open Source Software Center Ltd +Copyright (c) 2000 Clark Cooper Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2016-2018 Sebastian Pipping -Copyright (c) 2018 Marco Maggi +Copyright (c) 2007 Karl Waclawek +Copyright (c) 2017 Sebastian Pipping + Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -3226,59 +17953,57 @@ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -expat +boringssl -Copyright (c) 1997-2000 Thai Open Source Software Center Ltd -Copyright (c) 2016-2021 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT license: +Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper -Copyright (c) 2001-2022 Expat maintainers +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- boringssl -Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. +Copyright (c) 1999-2003 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -3295,12 +18020,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -3309,7 +18034,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -3326,7 +18051,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- boringssl -Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved. +Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -3343,12 +18068,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -3357,7 +18082,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -3374,7 +18099,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- boringssl -Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. +Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -3391,12 +18116,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + openssl-core@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -3405,7 +18130,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -3422,7 +18147,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- boringssl -Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. +Copyright (c) 1999-2007 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -3439,12 +18164,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -3453,7 +18178,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -3470,7 +18195,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- boringssl -Copyright (c) 1998-2004 The OpenSSL Project. All rights reserved. +Copyright (c) 1999-2008 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -3487,12 +18212,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -3501,7 +18226,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -3516,9 +18241,131 @@ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +icu + +Copyright (c) 1999-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 1999-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 2000 Clark Cooper +Copyright (c) 2002 Greg Stein +Copyright (c) 2005 Karl Waclawek +Copyright (c) 2017-2021 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +expat + +Copyright (c) 2000 Clark Cooper +Copyright (c) 2017 Sebastian Pipping + +Licensed under the MIT license: + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the +following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN +NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE +USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- boringssl -Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. +Copyright (c) 2000 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -3540,7 +18387,7 @@ are met: 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@OpenSSL.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -3566,7 +18413,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- boringssl -Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. +Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -3583,12 +18430,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -3597,7 +18444,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -3614,7 +18461,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- boringssl -Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. +Copyright (c) 2000-2003 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -3631,12 +18478,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -3645,7 +18492,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -3660,9 +18507,42 @@ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +icu + +Copyright (c) 2000-2004 IBM, Inc. and Others. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- boringssl -Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. +Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -3679,12 +18559,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -3693,7 +18573,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -3708,9 +18588,77 @@ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +icu + +Copyright (c) 2000-2005, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2000-2007, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- boringssl -Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. +Copyright (c) 2001 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -3727,12 +18675,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -3741,7 +18689,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -3758,74 +18706,109 @@ OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- icu -Copyright (c) 1999 Computer Systems and Communication Lab, - Institute of Information Science, Academia - * Sinica. All rights reserved. +Copyright (c) 2001-2005, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the Computer Systems and Communication Lab - nor the names of its contributors may be used to endorse or - promote products derived from this software without specific - prior written permission. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- icu -Copyright (c) 1999 TaBE Project. -Copyright (c) 1999 Pai-Hsiang Hsiao. -All rights reserved. +Copyright (c) 2001-2007, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the TaBE Project nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2010 International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- boringssl -Copyright (c) 1999 The OpenSSL Project. All rights reserved. +Copyright (c) 2001-2011 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -3842,12 +18825,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - licensing@OpenSSL.org. + openssl-core@openssl.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -3856,28 +18839,312 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + for use in the OpenSSL Toolkit (http://www.openssl.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2012, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2012, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2016, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2001-2016, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2002, NVIDIA Corporation. + +NVIDIA Corporation("NVIDIA") supplies this software to you in +consideration of your agreement to the following terms, and your use, +installation, modification or redistribution of this NVIDIA software +constitutes acceptance of these terms. If you do not agree with these +terms, please do not use, install, modify or redistribute this NVIDIA +software. + +In consideration of your agreement to abide by the following terms, and +subject to these terms, NVIDIA grants you a personal, non-exclusive +license, under NVIDIA's copyrights in this original NVIDIA software (the +"NVIDIA Software"), to use, reproduce, modify and redistribute the +NVIDIA Software, with or without modifications, in source and/or binary +forms; provided that if you redistribute the NVIDIA Software, you must +retain the copyright notice of NVIDIA, this notice and the following +text and disclaimers in all such redistributions of the NVIDIA Software. +Neither the name, trademarks, service marks nor logos of NVIDIA +Corporation may be used to endorse or promote products derived from the +NVIDIA Software without specific prior written permission from NVIDIA. +Except as expressly stated in this notice, no other rights or licenses +express or implied, are granted by NVIDIA herein, including but not +limited to any patent rights that may be infringed by your derivative +works or by other works in which the NVIDIA Software may be +incorporated. No hardware is licensed hereunder. + +THE NVIDIA SOFTWARE IS BEING PROVIDED ON AN "AS IS" BASIS, WITHOUT +WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, +INCLUDING WITHOUT LIMITATION, WARRANTIES OR CONDITIONS OF TITLE, +NON-INFRINGEMENT, MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR +ITS USE AND OPERATION EITHER ALONE OR IN COMBINATION WITH OTHER +PRODUCTS. + +IN NO EVENT SHALL NVIDIA BE LIABLE FOR ANY SPECIAL, INDIRECT, +INCIDENTAL, EXEMPLARY, CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, LOST PROFITS; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) OR ARISING IN ANY WAY +OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE +NVIDIA SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, +TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF +NVIDIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- expat -Copyright (c) 1999-2000 Thai Open Source Software Center Ltd -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Fred L. Drake, Jr. -Copyright (c) 2007 Karl Waclawek -Copyright (c) 2017 Sebastian Pipping +Copyright (c) 2002-2003 Fred L. Drake, Jr. +Copyright (c) 2002-2006 Karl Waclawek +Copyright (c) 2003 Greg Stein +Copyright (c) 2016-2022 Sebastian Pipping +Copyright (c) 2018 Yury Gribov +Copyright (c) 2019 David Loffredo + Licensed under the MIT license: Permission is hereby granted, free of charge, to any person obtaining @@ -3899,378 +19166,257 @@ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" - -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2003 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +icu -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +Copyright (c) 2002-2004, International Business Machines +Corporation and others. All Rights Reserved. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +icu -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +Copyright (c) 2002-2005, International Business Machines Corporation +and others. All Rights Reserved. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -boringssl - -Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +icu -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Copyright (c) 2002-2005, International Business Machines Corporation and +others. All Rights Reserved. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@OpenSSL.org. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glfw -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Copyright (c) 2002-2006 Marcus Geelnard -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +Copyright (c) 2006-2019 Camilla Löwy -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -Copyright (c) 1999-2007 The OpenSSL Project. All rights reserved. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +glfw -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2016 Camilla Löwy -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. -------------------------------------------------------------------------------- -boringssl +glfw -Copyright (c) 1999-2008 The OpenSSL Project. All rights reserved. +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2017 Camilla Löwy -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. +-------------------------------------------------------------------------------- +glfw -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2018 Camilla Löwy -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source + distribution. -------------------------------------------------------------------------------- -expat +glfw -Copyright (c) 2000 Clark Cooper -Copyright (c) 2001-2003 Fred L. Drake, Jr. -Copyright (c) 2005-2007 Steven Solie -Copyright (c) 2005-2006 Karl Waclawek -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2017 Rhodri James -Licensed under the MIT license: +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2019 Camilla Löwy -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. -Copyright (c) 2000 Clark Cooper -Copyright (c) 2002 Greg Stein -Copyright (c) 2005 Karl Waclawek -Copyright (c) 2017-2021 Sebastian Pipping -Licensed under the MIT license: +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +glfw -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +Copyright (c) 2002-2006 Marcus Geelnard +Copyright (c) 2006-2019 Camilla Löwy +Copyright (c) 2012 Torsten Walluhn -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -expat +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -Copyright (c) 2000 Clark Cooper -Copyright (c) 2017 Sebastian Pipping -Licensed under the MIT license: +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would + be appreciated but is not required. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +3. This notice may not be removed or altered from any source + distribution. -------------------------------------------------------------------------------- boringssl -Copyright (c) 2000 The OpenSSL Project. All rights reserved. +Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -4287,12 +19433,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - licensing@OpenSSL.org. + openssl-core@openssl.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -4301,7 +19447,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + for use in the OpenSSL Toolkit (http://www.openssl.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -4316,181 +19462,485 @@ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -boringssl +icu -Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. +Copyright (c) 2002-2006, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2006, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2007, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2010, International Business Machines Corporation * +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2011, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2011, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2002-2012, International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Copyright (c) 2002-2012, International Business Machines Corporation and +others. All Rights Reserved. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +Copyright (c) 2002-2014, International Business Machines +Corporation and others. All Rights Reserved. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2000-2003 The OpenSSL Project. All rights reserved. +icu -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Copyright (c) 2002-2014, International Business Machines Corporation +and others. All Rights Reserved. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +Copyright (c) 2002-2014, International Business Machines Corporation and +others. All Rights Reserved. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. +icu -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Copyright (c) 2002-2015, International Business Machines Corporation and +others. All Rights Reserved. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +Copyright (c) 2002-2016 International Business Machines Corporation and +others. All Rights Reserved. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -expat +icu -Copyright (c) 2001 Tim Peters -Copyright (c) 2001-2005 Fred L. Drake, Jr. -Copyright (c) 2006-2017 Karl Waclawek -Copyright (c) 2007-2022 Sebastian Pipping -Copyright (c) 2022 Johnny Jazeix -Licensed under the MIT license: +Copyright (c) 2002-2016, International Business Machines +Corporation and others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- boringssl -Copyright (c) 2001 The OpenSSL Project. All rights reserved. +Copyright (c) 2003 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -4536,232 +19986,312 @@ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -boringssl +tcmalloc -Copyright (c) 2001-2011 The OpenSSL Project. All rights reserved. +Copyright (c) 2003, Google Inc. +All rights reserved. Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +modification, are permitted provided that the following conditions are +met: -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -expat +icu -Copyright (c) 2002-2003 Fred L. Drake, Jr. -Copyright (c) 2002-2006 Karl Waclawek -Copyright (c) 2003 Greg Stein -Copyright (c) 2016-2022 Sebastian Pipping -Copyright (c) 2018 Yury Gribov -Copyright (c) 2019 David Loffredo -Licensed under the MIT license: +Copyright (c) 2003, International Business Machines +Corporation and others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard - -Copyright (c) 2006-2019 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +icu -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Copyright (c) 2003-2004, International Business Machines +Corporation and others. All Rights Reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. This notice may not be removed or altered from any source - distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2016 Camilla Löwy +dart -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright (c) 2003-2005 Tom Wu +Copyright (c) 2012 Adam Singer (adam@solvr.io) +All Rights Reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. +THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, +EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY +WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw +IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, +INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF +THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2017 Camilla Löwy +In addition, the following condition applies: -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +All redistributions must retain an intact copy of this copyright notice +and disclaimer. +-------------------------------------------------------------------------------- +icu -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Copyright (c) 2003-2008, International Business Machines +Corporation and others. All Rights Reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. This notice may not be removed or altered from any source - distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -glfw - -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2018 Camilla Löwy - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +icu -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Copyright (c) 2003-2010 International Business Machines +Corporation and others. All Rights Reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. This notice may not be removed or altered from any source - distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -glfw +icu -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2019 Camilla Löwy +Copyright (c) 2003-2011, International Business Machines +Corporation and others. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. +Copyright (c) 2003-2013, International Business Machines +Corporation and others. All Rights Reserved. -3. This notice may not be removed or altered from any source - distribution. --------------------------------------------------------------------------------- -glfw +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Copyright (c) 2002-2006 Marcus Geelnard -Copyright (c) 2006-2019 Camilla Löwy -Copyright (c) 2012 Torsten Walluhn +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Copyright (c) 2003-2014, International Business Machines +Corporation and others. All Rights Reserved. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would - be appreciated but is not required. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Altered source versions must be plainly marked as such, and must not - be misrepresented as being the original software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. This notice may not be removed or altered from any source - distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- boringssl -Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved. +Copyright (c) 2004 Kungliga Tekniska Högskolan +(Royal Institute of Technology, Stockholm, Sweden). +All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -4771,45 +20301,28 @@ are met: notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" +3. Neither the name of the Institute nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. -------------------------------------------------------------------------------- boringssl -Copyright (c) 2003 The OpenSSL Project. All rights reserved. +Copyright (c) 2004 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -4855,149 +20368,277 @@ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -tcmalloc +icu -Copyright (c) 2003, Google Inc. -All rights reserved. +Copyright (c) 2004, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -dart +icu -Copyright (c) 2003-2005 Tom Wu -Copyright (c) 2012 Adam Singer (adam@solvr.io) -All Rights Reserved. +Copyright (c) 2004-2006, International Business Machines +Corporation and others. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, -EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY -WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, -INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF -THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +Copyright (c) 2004-2010, International Business Machines Corporation and +others. All Rights Reserved. -In addition, the following condition applies: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -All redistributions must retain an intact copy of this copyright notice -and disclaimer. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -boringssl +icu -Copyright (c) 2004 Kungliga Tekniska Högskolan -(Royal Institute of Technology, Stockholm, Sweden). -All rights reserved. +Copyright (c) 2004-2014 International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. +Copyright (c) 2004-2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2004-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2004 The OpenSSL Project. All rights reserved. +icu -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Copyright (c) 2004-2015, International Business Machines Corporation +and others. All Rights Reserved. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +Copyright (c) 2004-2016, International Business Machines +Corporation and others. All Rights Reserved. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- boringssl @@ -5078,60 +20719,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -StackWalker - -Copyright (c) 2005-2009, Jochen Kalmbach -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. -Neither the name of Jochen Kalmbach nor the names of its contributors may be -used to endorse or promote products derived from this software without -specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -StackWalker - -Copyright (c) 2005-2013, Jochen Kalmbach -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. -Neither the name of Jochen Kalmbach nor the names of its contributors may be -used to endorse or promote products derived from this software without -specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- boringssl Copyright (c) 2006 The OpenSSL Project. All rights reserved. @@ -5305,7 +20892,7 @@ freely, subject to the following restrictions: -------------------------------------------------------------------------------- khronos -Copyright (c) 2007-2010 The Khronos Group Inc. +Copyright (c) 2007-2012 The Khronos Group Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and/or associated documentation files (the @@ -5325,58 +20912,178 @@ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- +icu -SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) +Copyright (c) 2007-2012, International Business Machines +Corporation and others. All Rights Reserved. -Copyright (C) 1992 Silicon Graphics, Inc. All Rights Reserved. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2012, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2007-2013, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu -The above copyright notice including the dates of first publication and either -this permission notice or a reference to http://oss.sgi.com/projects/FreeB -shall be included in all copies or substantial portions of the Software. +Copyright (c) 2007-2014, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON -GRAPHICS, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -Except as contained in this notice, the name of Silicon Graphics, Inc. shall -not be used in advertising or otherwise to promote the sale, use or other -dealings in this Software without prior written authorization from Silicon -Graphics, Inc. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -khronos +icu -Copyright (c) 2007-2012 The Khronos Group Inc. +Copyright (c) 2007-2016, International Business Machines Corporation and +others. All Rights Reserved. -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and/or associated documentation files (the -"Materials"), to deal in the Materials without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Materials, and to -permit persons to whom the Materials are furnished to do so, subject to -the following conditions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Materials. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -angle +libXNVCtrl Copyright (c) 2008 NVIDIA, Corporation @@ -5447,6 +21154,28 @@ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +include + +Copyright (c) 2008-2009 Bjoern Hoehrmann + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- khronos Copyright (c) 2008-2009 The Khronos Group Inc. @@ -5470,6 +21199,108 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. -------------------------------------------------------------------------------- +icu + +Copyright (c) 2008-2010, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2008-2011, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +icu + +Copyright (c) 2008-2015, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- angle Copyright (c) 2008-2018 The Khronos Group Inc. @@ -5493,23 +21324,27 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. -------------------------------------------------------------------------------- -libtess2 +include -Copyright (c) 2009 Mikko Mononen memon@inside.org +Copyright (c) 2009 Florian Loitsch. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -------------------------------------------------------------------------------- accessibility @@ -5541,6 +21376,40 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +icu + +Copyright (c) 2009, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- libcxx libcxxabi @@ -5631,8 +21500,50 @@ freely, subject to the following restrictions: 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. -3. This notice may not be removed or altered from any source - distribution. +3. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- +libcxx +libcxxabi + +Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT + +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. -------------------------------------------------------------------------------- glfw @@ -5657,37 +21568,7 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. -------------------------------------------------------------------------------- -colorama - -Copyright (c) 2010 Jonathan Hartley -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of the copyright holders, nor those of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -angle +libXNVCtrl Copyright (c) 2010 NVIDIA, Corporation @@ -5850,8 +21731,31 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +include + +Copyright (c) 2011 - Nick Bruun. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. If you meet (any of) the author(s), you're encouraged to buy them a beer, + a drink or whatever is suited to the situation, given that you like the + software. +4. This notice may not be removed or altered from any source + distribution. +-------------------------------------------------------------------------------- skia -vulkanmemoryallocator Copyright (c) 2011 Google Inc. All rights reserved. @@ -5881,6 +21785,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +libmicrohttpd skia Copyright (c) 2011 Google Inc. All rights reserved. @@ -5913,6 +21818,28 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +smhasher + +Copyright (c) 2011 Google, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- accessibility base zlib @@ -6071,6 +21998,40 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +icu + +Copyright (c) 2011-2012 International Business Machines Corporation +and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- accessibility zlib @@ -6181,7 +22142,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- accessibility -angle +trace_event Copyright (c) 2013 The Chromium Authors. All rights reserved. @@ -6211,6 +22172,29 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +glslang + +Copyright (c) 2013 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- boringssl Copyright (c) 2013 The OpenSSL Project. All rights reserved. @@ -6289,7 +22273,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -angle khronos Copyright (c) 2013-2014 The Khronos Group Inc. @@ -6383,6 +22366,50 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. -------------------------------------------------------------------------------- +include + +Copyright (c) 2013-2019 Niels Lohmann . + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +json + +Copyright (c) 2013-2022 Niels Lohmann + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- skia Copyright (c) 2014 Google Inc. @@ -6415,44 +22442,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -icu - -Copyright (c) 2014 International Business Machines Corporation -and others. All Rights Reserved. - -This list is part of a project hosted at: - github.com/kanyawtech/myanmar-karen-word-lists - -Copyright (c) 2013, LeRoy Benjamin Sharon -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: Redistributions of source code must retain the above -copyright notice, this list of conditions and the following -disclaimer. Redistributions in binary form must reproduce the -above copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - - Neither the name Myanmar Karen Word Lists, nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR -TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF -THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. --------------------------------------------------------------------------------- glfw Copyright (c) 2014 Jonas Ådahl @@ -6506,48 +22495,9 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2014 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - "This product includes cryptographic software written by - Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from - the apps directory (application code) you must include an acknowledgement: - "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -The licence and distribution terms for any publically available version or -derivative of this code cannot be changed. i.e. this code cannot simply be -copied and put under another distribution licence -[including the GNU Public Licence.] --------------------------------------------------------------------------------- dart -Copyright (c) 2014 The Polymer Authors. All rights reserved. +Copyright (c) 2014 The Polymer Project Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -6591,6 +22541,40 @@ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- +icu + +Copyright (c) 2014, International Business Machines +Corporation and others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- dart Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file @@ -6621,6 +22605,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +glslang skia Copyright (c) 2014-2016 The Khronos Group Inc. @@ -6634,54 +22619,132 @@ Materials are furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. -------------------------------------------------------------------------------- -boringssl +icu -Copyright (c) 2015 The OpenSSL Project. All rights reserved. +Copyright (c) 2014-2016, International Business Machines +Corporation and others. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- +glslang -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +Copyright (c) 2014-2017 The Khronos Group Inc. -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang +spirv-cross + +Copyright (c) 2014-2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. +-------------------------------------------------------------------------------- +glslang + +Copyright (c) 2014-2020 The Khronos Group Inc. +Modifications Copyright (C) 2020 Advanced Micro Devices, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS +STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND +HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS +IN THE MATERIALS. -------------------------------------------------------------------------------- boringssl @@ -6699,6 +22762,40 @@ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- +icu + +Copyright (c) 2015, International Business Machines Corporation and +others. All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. +-------------------------------------------------------------------------------- dart Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file @@ -6729,6 +22826,30 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +fiat + +Copyright (c) 2015-2016 the fiat-crypto authors (see + +https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- glfw Copyright (c) 2016 Google Inc. @@ -6846,32 +22967,6 @@ freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. -------------------------------------------------------------------------------- -expat - -Copyright (c) 2017 José Gutiérrez de la Concha -Copyright (c) 2017-2022 Sebastian Pipping -Copyright (c) 2017 Franek Korta -Licensed under the MIT license: - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- boringssl Copyright (c) 2017, Google Inc. @@ -6969,6 +23064,7 @@ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEM COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- +vulkan-validation-layers vulkan_memory_allocator Copyright (c) 2017-2022 Advanced Micro Devices, Inc. All rights reserved. @@ -6991,36 +23087,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -vulkan - -Copyright (c) 2018 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- boringssl Copyright (c) 2018, Google Inc. @@ -7114,29 +23180,47 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -expat +inja -Copyright (c) 2019 Expat development team -Licensed under the MIT license: +Copyright (c) 2018-2021 Berscheid -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- +inja + +Copyright (c) 2018-2021 Lars Berscheid + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -------------------------------------------------------------------------------- boringssl @@ -7154,6 +23238,32 @@ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- +glslang + +Copyright (c) 2019, Viktor Latypov +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- dart Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file @@ -7214,22 +23324,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -boringssl - -Copyright (c) 2020 Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --------------------------------------------------------------------------------- angle Copyright (c) 2020 The ANGLE Project Authors. All rights reserved. @@ -7264,6 +23358,34 @@ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +glslang + +Copyright (c) 2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS +KHRONOS STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS +SPECIFICATIONS AND HEADER INFORMATION ARE LOCATED AT + https://www.khronos.org/registry/ + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. +-------------------------------------------------------------------------------- boringssl Copyright (c) 2020, Google Inc. @@ -7280,6 +23402,32 @@ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- +glslang + +Copyright (c) 2020, Travis Fort +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- dart Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file @@ -7364,6 +23512,28 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +ceval + +Copyright (c) 2021 e_t + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +-------------------------------------------------------------------------------- boringssl Copyright (c) 2021, Google Inc. @@ -7444,184 +23614,34 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -zlib - -Copyright (c) 2022 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -dart - -Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright (c) IBM Corporation, 2000-2010. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright (c) IBM Corporation, 2000-2011. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright (c) IBM Corporation, 2000-2012. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -------------------------------------------------------------------------------- -icu +zlib -Copyright (c) IBM Corporation, 2000-2014. All rights reserved. +Copyright (c) 2022 The Chromium Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT @@ -7635,21 +23655,21 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -icu +dart -Copyright (c) IBM Corporation, 2000-2016. All rights reserved. +Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google Inc. nor the names of its + * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. @@ -7665,243 +23685,44 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -freetype2 - -Copyright 1990, 1994, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. --------------------------------------------------------------------------------- icu -Copyright 1991 by the Massachusetts Institute of Technology --------------------------------------------------------------------------------- -boringssl - -Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright (c) IBM Corporation, 2000-2010. All rights reserved. -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. -------------------------------------------------------------------------------- icu -Copyright 1996 Chih-Hao Tsai @ Beckman Institute, - University of Illinois -c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2004, 2011 Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2014 - Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2015 - Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Copyright (c) IBM Corporation, 2000-2011. All rights reserved. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. -------------------------------------------------------------------------------- icu -Copyright 2000, 2001, 2002, 2003 Nara Institute of Science -and Technology. All Rights Reserved. - -Use, reproduction, and distribution of this software is permitted. -Any copy of this software, whether in its original form or modified, -must include both the above copyright notice and the following -paragraphs. - -Nara Institute of Science and Technology (NAIST), -the copyright holders, disclaims all warranties with regard to this -software, including all implied warranties of merchantability and -fitness, in no event shall NAIST be liable for -any special, indirect or consequential damages or any damages -whatsoever resulting from loss of use, data or profits, whether in an -action of contract, negligence or other tortuous action, arising out -of or in connection with the use or performance of this software. - -A large portion of the dictionary entries -originate from ICOT Free Software. The following conditions for ICOT -Free Software applies to the current dictionary as well. - -Each User may also freely distribute the Program, whether in its -original form or modified, to any third party or parties, PROVIDED -that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear -on, or be attached to, the Program, which is distributed substantially -in the same form as set out herein and that such intended -distribution, if actually made, will neither violate or otherwise -contravene any of the laws and regulations of the countries having -jurisdiction over the User or the intended distribution itself. - -NO WARRANTY - -The program was produced on an experimental basis in the course of the -research and development conducted during the project and is provided -to users as so produced on an experimental basis. Accordingly, the -program is provided without any warranty whatsoever, whether express, -implied, statutory or otherwise. The term "warranty" used herein -includes, but is not limited to, any warranty of the quality, -performance, merchantability and fitness for a particular purpose of -the program and the nonexistence of any infringement or violation of -any right of any third party. - -Each user of the program will agree and understand, and be deemed to -have agreed and understood, that there is no warranty whatsoever for -the program and, accordingly, the entire risk arising from or -otherwise connected with the program is assumed by the user. - -Therefore, neither ICOT, the copyright holder, or any other -organization that participated in or was otherwise related to the -development of the program and their respective officials, directors, -officers and other employees shall be held liable for any and all -damages, including, without limitation, general, special, incidental -and consequential damages, arising out of or otherwise in connection -with the use or inability to use the program or any product, material -or result produced or otherwise obtained by using the program, -regardless of whether they have been advised of, or otherwise had -knowledge of, the possibility of such damages at any time during the -project or thereafter. Each user will be deemed to have agreed to the -foregoing by his or her commencement of use of the program. The term -"use" as used herein includes, but is not limited to, the use, -modification, copying and distribution of the program and the -production of secondary products from the program. - -In the case where the program, whether in its original form or -modified, was distributed or delivered to or received by a user from -any person, organization or entity other than ICOT, unless it makes or -grants independently of ICOT any specific warranty to the user in -writing, such person, organization or entity, will also be exempted -from and not be held liable to the user for any such damages as noted -above as far as the program is concerned. --------------------------------------------------------------------------------- -freetype2 - -Copyright 2000, 2001, 2004 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Copyright (c) IBM Corporation, 2000-2012. All rights reserved. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. -------------------------------------------------------------------------------- -freetype2 +icu -Copyright 2000-2001, 2002 by -Francesco Zappa Nardelli +Copyright (c) IBM Corporation, 2000-2014. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. +-------------------------------------------------------------------------------- +icu -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +Copyright (c) IBM Corporation, 2000-2016. All rights reserved. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +This software is made available under the terms of the +ICU License -- ICU 1.8.1 and later. -------------------------------------------------------------------------------- -freetype2 +harfbuzz -Copyright 2000-2001, 2003 by -Francesco Zappa Nardelli +Copyright (c) Microsoft Corporation. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -7910,28 +23731,26 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE -------------------------------------------------------------------------------- freetype2 -Copyright 2000-2010, 2012-2014 by -Francesco Zappa Nardelli +Copyright 1990, 1994, 1998 The Open Group -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. @@ -7939,14 +23758,17 @@ all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of The Open Group shall not be +used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from The Open Group. -------------------------------------------------------------------------------- boringssl -Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. Licensed under the OpenSSL license (the "License"). You may not use this file except in compliance with the License. You can obtain a copy @@ -7955,7 +23777,8 @@ https://www.openssl.org/source/license.html -------------------------------------------------------------------------------- freetype2 -Copyright 2001, 2002, 2012 Francesco Zappa Nardelli +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2004, 2011 Francesco Zappa Nardelli Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -7975,139 +23798,126 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -boringssl - -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +freetype2 -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2014 + Francesco Zappa Nardelli -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2015 + Francesco Zappa Nardelli -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- -boringssl - -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +freetype2 -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Copyright 2000, 2001, 2004 by +Francesco Zappa Nardelli -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +freetype2 -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. +Copyright 2000-2001, 2002 by +Francesco Zappa Nardelli -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. -------------------------------------------------------------------------------- -angle - -Copyright 2002 The ANGLE Project Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +freetype2 - Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Copyright 2000-2001, 2003 by +Francesco Zappa Nardelli - Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: - Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. - Ltd., nor the names of their contributors may be used to endorse - or promote products derived from this software without specific - prior written permission. +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN -ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. -------------------------------------------------------------------------------- freetype2 -Copyright 2003 by +Copyright 2000-2010, 2012-2014 by Francesco Zappa Nardelli Permission is hereby granted, free of charge, to any person obtaining a copy @@ -8130,396 +23940,277 @@ THE SOFTWARE. -------------------------------------------------------------------------------- boringssl -Copyright 2005 Nokia. All rights reserved. - -The portions of the attached software ("Contribution") is developed by -Nokia Corporation and is licensed pursuant to the OpenSSL open source -license. - -The Contribution, originally written by Mika Kousa and Pasi Eronen of -Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites -support (see RFC 4279) to OpenSSL. - -No patent licenses or other rights except those expressly stated in -the OpenSSL open source license shall be deemed granted or received -expressly, by implication, estoppel, or otherwise. - -No assurances are provided by Nokia that the Contribution does not -infringe the patent or other intellectual property rights of any third -party or that the license provides you with all the necessary rights -to make use of the Contribution. - -THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN -ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA -SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY -OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR -OTHERWISE. --------------------------------------------------------------------------------- -skia - -Copyright 2005 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2005, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -skia - -Copyright 2006 The Android Open Source Project - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2006, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html -------------------------------------------------------------------------------- -double-conversion icu -Copyright 2006-2008 the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu +Copyright 2001 and onwards Google Inc. -Copyright 2006-2011, the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -skia - -Copyright 2006-2012 The Android Open Source Project -Copyright 2012 Mozilla Foundation - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +freetype2 - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +Copyright 2001, 2002, 2012 Francesco Zappa Nardelli -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- boringssl -Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2001-2017 The OpenSSL Project Authors. All Rights Reserved. Licensed under the OpenSSL license (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html -------------------------------------------------------------------------------- -skia +boringssl -Copyright 2007 The Android Open Source Project +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Portions of the attached software ("Contribution") are developed by +SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +The Contribution is licensed pursuant to the Eric Young open source +license provided above. +-------------------------------------------------------------------------------- +boringssl - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +Portions of the attached software ("Contribution") are developed by +SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +The Contribution is licensed pursuant to the OpenSSL open source +license provided above. -------------------------------------------------------------------------------- boringssl -Copyright 2007, Google Inc. -All rights reserved. +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +modification, are permitted provided that the following conditions +are met: - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- boringssl -Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved. +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +ECC cipher suite support in OpenSSL originally developed by +SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. +-------------------------------------------------------------------------------- +boringssl -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +ECDH support in OpenSSL originally developed by +SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project. -------------------------------------------------------------------------------- -skia +angle -Copyright 2008 Google Inc. +Copyright 2002 The ANGLE Project Authors. All rights reserved. Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +modification, are permitted provided that the following conditions +are met: - * Redistributions of source code must retain the above copyright + Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. - * Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. + Ltd., nor the names of their contributors may be used to endorse + or promote products derived from this software without specific + prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +freetype2 + +Copyright 2003 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +-------------------------------------------------------------------------------- +icu + +Copyright 2004 and onwards Google Inc. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. + +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- boringssl -Copyright 2008 Google Inc. -All Rights Reserved. +Copyright 2005 Nokia. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +The portions of the attached software ("Contribution") is developed by +Nokia Corporation and is licensed pursuant to the OpenSSL open source +license. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +The Contribution, originally written by Mika Kousa and Pasi Eronen of +Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites +support (see RFC 4279) to OpenSSL. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +No patent licenses or other rights except those expressly stated in +the OpenSSL open source license shall be deemed granted or received +expressly, by implication, estoppel, or otherwise. + +No assurances are provided by Nokia that the Contribution does not +infringe the patent or other intellectual property rights of any third +party or that the license provides you with all the necessary rights +to make use of the Contribution. + +THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN +ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA +SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY +OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR +OTHERWISE. -------------------------------------------------------------------------------- skia -Copyright 2008 The Android Open Source Project +Copyright 2005 The Android Open Source Project Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -8549,54 +24240,25 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -boringssl +skia -Copyright 2008, Google Inc. -All rights reserved. +Copyright 2006 The Android Open Source Project Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - -Copyright 2009 Google Inc. All Rights Reserved. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT @@ -8606,335 +24268,192 @@ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. -Copyright (C) 2015-2016, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014, 2016, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014, D. R. Commander. -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. --------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -libjpeg-turbo - -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014-2015, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. +double-conversion +icu -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright 2006-2008 the V8 project authors. All rights reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -libjpeg-turbo +skia -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2010, D. R. Commander. +Copyright 2006-2012 The Android Open Source Project +Copyright 2012 Mozilla Foundation -Based on the x86 SIMD extension for IJG JPEG library - version 1.02 +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -Copyright (C) 1999-2006, MIYASAKA Masaru. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -libjpeg-turbo +boringssl -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2011, 2014, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. +Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved. -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +icu -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright 2007 Google Inc. All Rights Reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. + +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. -------------------------------------------------------------------------------- -libjpeg-turbo +skia -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2011, 2014-2016, D. R. Commander. -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -Copyright (C) 2014, Linaro Limited. -Copyright (C) 2015-2016, Matthieu Darbois. +Copyright 2007 The Android Open Source Project -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -libjpeg-turbo +boringssl -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2011, D. R. Commander. +Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved. -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +-------------------------------------------------------------------------------- +skia -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright 2008 Google Inc. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- skia -Copyright 2009 The Android Open Source Project +Copyright 2008 The Android Open Source Project Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -8966,10 +24485,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- libjpeg-turbo -Copyright 2009, 2012 Pierre Ossman for Cendio AB -Copyright (C) 2009, 2012, D. R. Commander. +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2010, D. R. Commander. + +Based on the x86 SIMD extension for IJG JPEG library - version 1.02 -Based on the x86 SIMD extension for IJG JPEG library Copyright (C) 1999-2006, MIYASAKA Masaru. This software is provided 'as-is', without any express or implied @@ -8988,29 +24508,37 @@ freely, subject to the following restrictions: misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. -------------------------------------------------------------------------------- -libjpeg-turbo +skia -Copyright 2009, 2012 Pierre Ossman for Cendio AB -Copyright (C) 2012, D. R. Commander. +Copyright 2009 The Android Open Source Project -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- skia @@ -9178,6 +24706,7 @@ double-conversion icu Copyright 2010 the V8 project authors. All rights reserved. + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -9501,6 +25030,7 @@ double-conversion icu Copyright 2012 the V8 project authors. All rights reserved. + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -9727,7 +25257,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- accessibility engine -gpu tonic txt web_unicode @@ -9768,6 +25297,16 @@ this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html -------------------------------------------------------------------------------- +angle + +Copyright 2013-2020 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- skia Copyright 2014 Google Inc. @@ -10020,6 +25559,16 @@ this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at https://www.openssl.org/source/license.html -------------------------------------------------------------------------------- +spirv-cross + +Copyright 2014-2016,2021 The Khronos Group, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- skia Copyright 2015 Google Inc. @@ -10151,9 +25700,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- accessibility -icu skia -vulkan-deps Copyright 2015 The Chromium Authors. All rights reserved. @@ -10185,37 +25732,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- boringssl -Copyright 2015, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -boringssl - Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved. Licensed under the OpenSSL license (the "License"). You may not use @@ -10403,8 +25919,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- accessibility -icu -skia Copyright 2016 The Chromium Authors. All rights reserved. @@ -10651,15 +26165,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -boringssl - -Copyright 2017 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html --------------------------------------------------------------------------------- vulkanmemoryallocator Copyright 2018 Google Inc. @@ -11012,6 +26517,35 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- +libcxx + +Copyright 2018 Ulf Adams +Copyright (c) Microsoft Corporation. All rights reserved. + +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +-------------------------------------------------------------------------------- skia Copyright 2019 Google Inc. @@ -11078,6 +26612,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- skia +Copyright 2019 Google LLC. +-------------------------------------------------------------------------------- +skia + Copyright 2019 Google LLC. Redistribution and use in source and binary forms, with or without @@ -11243,7 +26781,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- accessibility fuchsia_sdk -skia zlib Copyright 2019 The Chromium Authors. All rights reserved. @@ -11301,7 +26838,6 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -angle fuchsia_sdk Copyright 2019 The Fuchsia Authors. All rights reserved. @@ -11317,36 +26853,6 @@ copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -icu - -Copyright 2019 the V8 project authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google LLC nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR @@ -11425,6 +26931,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- skia +Copyright 2020 Google LLC. +-------------------------------------------------------------------------------- +skia + Copyright 2020 Google LLC. Redistribution and use in source and binary forms, with or without @@ -11555,9 +27065,7 @@ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -abseil-cpp accessibility -skia Copyright 2020 The Chromium Authors. All rights reserved. @@ -11810,10 +27318,8 @@ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -angle fuchsia_sdk libjxl -skia Copyright 2021 The Chromium Authors. All rights reserved. @@ -11845,34 +27351,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- fuchsia_sdk -Copyright 2021 The Flutter Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -fuchsia_sdk - Copyright 2021 The Fuchsia Authors. All rights reserved. Redistribution and use in source and binary forms, with or without @@ -12094,7 +27572,6 @@ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -skia zlib Copyright 2022 The Chromium Authors. All rights reserved. @@ -12192,7 +27669,7 @@ Copyright © 1998-2004 David Turner and Werner Lemberg Copyright © 2004,2007,2009 Red Hat, Inc. Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12218,7 +27695,7 @@ Copyright © 1998-2004 David Turner and Werner Lemberg Copyright © 2004,2007,2009,2010 Red Hat, Inc. Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12245,7 +27722,7 @@ Copyright © 2006 Behdad Esfahbod Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12271,7 +27748,7 @@ Copyright © 2007 Chris Wilson Copyright © 2009,2010 Red Hat, Inc. Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12295,7 +27772,7 @@ harfbuzz Copyright © 2007,2008,2009 Red Hat, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12320,7 +27797,7 @@ harfbuzz Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2010,2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12345,7 +27822,7 @@ harfbuzz Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2010,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12370,7 +27847,7 @@ harfbuzz Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12395,7 +27872,7 @@ harfbuzz Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12420,7 +27897,7 @@ harfbuzz Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12446,7 +27923,7 @@ Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2012,2013 Google, Inc. Copyright © 2019, Facebook Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12472,7 +27949,7 @@ Copyright © 2007,2008,2009 Red Hat, Inc. Copyright © 2018,2019,2020 Ebrahim Byagowi Copyright © 2018 Khaled Hosny - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12497,7 +27974,7 @@ harfbuzz Copyright © 2007,2008,2009,2010 Red Hat, Inc. Copyright © 2010,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12522,7 +27999,7 @@ harfbuzz Copyright © 2007,2008,2009,2010 Red Hat, Inc. Copyright © 2010,2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12547,7 +28024,7 @@ harfbuzz Copyright © 2007,2008,2009,2010 Red Hat, Inc. Copyright © 2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12572,7 +28049,7 @@ harfbuzz Copyright © 2007,2008,2009,2010 Red Hat, Inc. Copyright © 2012,2018 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12598,7 +28075,7 @@ Copyright © 2007,2008,2009,2010 Red Hat, Inc. Copyright © 2012,2018 Google, Inc. Copyright © 2019 Facebook, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12622,7 +28099,7 @@ harfbuzz Copyright © 2009 Red Hat, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12648,7 +28125,7 @@ Copyright © 2009 Red Hat, Inc. Copyright © 2009 Keith Stribley Copyright © 2011 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12674,7 +28151,7 @@ Copyright © 2009 Red Hat, Inc. Copyright © 2009 Keith Stribley Copyright © 2015 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12700,7 +28177,7 @@ Copyright © 2009 Red Hat, Inc. Copyright © 2011 Codethink Limited Copyright © 2010,2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12726,7 +28203,7 @@ Copyright © 2009 Red Hat, Inc. Copyright © 2011 Codethink Limited Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12751,7 +28228,7 @@ harfbuzz Copyright © 2009 Red Hat, Inc. Copyright © 2011 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12776,7 +28253,7 @@ harfbuzz Copyright © 2009 Red Hat, Inc. Copyright © 2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12801,7 +28278,7 @@ harfbuzz Copyright © 2009 Red Hat, Inc. Copyright © 2015 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12826,7 +28303,7 @@ harfbuzz Copyright © 2009 Red Hat, Inc. Copyright © 2018 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12851,7 +28328,7 @@ harfbuzz Copyright © 2009 Red Hat, Inc. Copyright © 2018 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12876,7 +28353,7 @@ harfbuzz Copyright © 2009,2010 Red Hat, Inc. Copyright © 2010,2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12901,7 +28378,7 @@ harfbuzz Copyright © 2009,2010 Red Hat, Inc. Copyright © 2010,2011,2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12926,7 +28403,7 @@ harfbuzz Copyright © 2009,2010 Red Hat, Inc. Copyright © 2010,2011,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12951,7 +28428,7 @@ harfbuzz Copyright © 2009,2010 Red Hat, Inc. Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -12975,7 +28452,7 @@ harfbuzz Copyright © 2010 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13000,7 +28477,7 @@ harfbuzz Copyright © 2010 Red Hat, Inc. Copyright © 2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13024,7 +28501,7 @@ harfbuzz Copyright © 2010,2011 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13048,7 +28525,7 @@ harfbuzz Copyright © 2010,2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13072,7 +28549,7 @@ harfbuzz Copyright © 2010,2011,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13096,7 +28573,7 @@ harfbuzz Copyright © 2010,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13120,7 +28597,7 @@ harfbuzz Copyright © 2011 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13145,7 +28622,7 @@ harfbuzz Copyright © 2011 Martin Hosken Copyright © 2011 SIL International - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13171,7 +28648,7 @@ Copyright © 2011 Martin Hosken Copyright © 2011 SIL International Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13195,7 +28672,7 @@ harfbuzz Copyright © 2011,2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13220,7 +28697,7 @@ harfbuzz Copyright © 2011,2012 Google, Inc. Copyright © 2018 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13244,7 +28721,7 @@ harfbuzz Copyright © 2011,2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13269,7 +28746,7 @@ harfbuzz Copyright © 2011,2012,2013 Google, Inc. Copyright © 2021 Khaled Hosny - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13293,7 +28770,7 @@ harfbuzz Copyright © 2011,2012,2014 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13317,7 +28794,7 @@ harfbuzz Copyright © 2011,2014 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13341,7 +28818,7 @@ harfbuzz Copyright © 2012 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13365,7 +28842,7 @@ harfbuzz Copyright © 2012 Mozilla Foundation. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13389,7 +28866,7 @@ harfbuzz Copyright © 2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13414,7 +28891,7 @@ harfbuzz Copyright © 2012,2013 Mozilla Foundation. Copyright © 2012,2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13439,7 +28916,7 @@ harfbuzz Copyright © 2012,2017 Google, Inc. Copyright © 2021 Behdad Esfahbod - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13463,7 +28940,7 @@ harfbuzz Copyright © 2012,2018 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13487,7 +28964,7 @@ harfbuzz Copyright © 2013 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13511,7 +28988,7 @@ harfbuzz Copyright © 2013 Red Hat, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13535,7 +29012,7 @@ harfbuzz Copyright © 2014 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13561,7 +29038,7 @@ Copyright © 2015 Google, Inc. Copyright © 2019 Adobe Inc. Copyright © 2019 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13586,7 +29063,7 @@ harfbuzz Copyright © 2015 Mozilla Foundation. Copyright © 2015 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13610,7 +29087,7 @@ harfbuzz Copyright © 2015-2019 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13636,7 +29113,7 @@ Copyright © 2016 Elie Roux Copyright © 2018 Google, Inc. Copyright © 2018-2019 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13660,7 +29137,7 @@ harfbuzz Copyright © 2016 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13685,7 +29162,7 @@ harfbuzz Copyright © 2016 Google, Inc. Copyright © 2018 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13711,7 +29188,7 @@ Copyright © 2016 Google, Inc. Copyright © 2018 Khaled Hosny Copyright © 2018 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13735,7 +29212,7 @@ harfbuzz Copyright © 2016 Igalia S.L. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13759,7 +29236,7 @@ harfbuzz Copyright © 2017 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13784,7 +29261,7 @@ harfbuzz Copyright © 2017 Google, Inc. Copyright © 2018 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13809,7 +29286,7 @@ harfbuzz Copyright © 2017 Google, Inc. Copyright © 2019 Facebook, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13833,7 +29310,7 @@ harfbuzz Copyright © 2017,2018 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13857,7 +29334,7 @@ harfbuzz Copyright © 2018 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13882,7 +29359,7 @@ harfbuzz Copyright © 2018 Ebrahim Byagowi Copyright © 2018 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13907,7 +29384,7 @@ harfbuzz Copyright © 2018 Ebrahim Byagowi Copyright © 2020 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13931,7 +29408,7 @@ harfbuzz Copyright © 2018 Ebrahim Byagowi. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13955,7 +29432,7 @@ harfbuzz Copyright © 2018 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -13980,7 +29457,7 @@ harfbuzz Copyright © 2018 Google, Inc. Copyright © 2019 Facebook, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14004,7 +29481,7 @@ harfbuzz Copyright © 2018 Adobe Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14028,7 +29505,7 @@ harfbuzz Copyright © 2018-2019 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14053,7 +29530,7 @@ harfbuzz Copyright © 2019 Adobe Inc. Copyright © 2019 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14077,7 +29554,7 @@ harfbuzz Copyright © 2019 Adobe, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14101,7 +29578,7 @@ harfbuzz Copyright © 2019 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14125,7 +29602,7 @@ harfbuzz Copyright © 2019 Facebook, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14149,7 +29626,7 @@ harfbuzz Copyright © 2019 Adobe Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14173,7 +29650,7 @@ harfbuzz Copyright © 2019-2020 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14197,7 +29674,7 @@ harfbuzz Copyright © 2020 Ebrahim Byagowi - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14221,7 +29698,7 @@ harfbuzz Copyright © 2020 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14245,7 +29722,7 @@ harfbuzz Copyright © 2021 Behdad Esfahbod - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14269,7 +29746,7 @@ harfbuzz Copyright © 2021 Behdad Esfahbod. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14293,7 +29770,7 @@ harfbuzz Copyright © 2021 Google, Inc. - This is part of HarfBuzz, a text shaping library. +This is part of HarfBuzz, a text shaping library. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this @@ -14313,6 +29790,48 @@ FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -------------------------------------------------------------------------------- +glslang + +Copyright(C) 2021 Advanced Micro Devices, Inc. + +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + Neither the name of 3Dlabs Inc. Ltd. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +boringssl + +DTLS code by Eric Rescorla + +Copyright (C) 2006, Network Resonance, Inc. +Copyright (C) 2011, RTFM, Inc. +-------------------------------------------------------------------------------- harfbuzz HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. @@ -14335,6 +29854,7 @@ Copyright © 1998-2004 David Turner and Werner Lemberg For full copyright notices consult the individual files in the package. + Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the @@ -14353,834 +29873,905 @@ FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -------------------------------------------------------------------------------- -json - -MIT License - -Copyright (c) 2013-2022 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -angle - -MIT License - -Copyright (c) 2021 e_t - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -root_certificates - -Mozilla Public License -Version 2.0 - -1. Definitions - -1.1. “Contributor” - -means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. - -1.2. “Contributor Version” - -means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution. - -1.3. “Contribution” - -means Covered Software of a particular Contributor. - -1.4. “Covered Software” - -means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. - -1.5. “Incompatible With Secondary Licenses” - -means - - a. that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or +engine - b. that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. +License for the Ahem font embedded below is from: +https://www.w3.org/Style/CSS/Test/Fonts/Ahem/COPYING + +The Ahem font in this directory belongs to the public domain. In +jurisdictions that do not recognize public domain ownership of these +files, the following Creative Commons Zero declaration applies: + + + +which is quoted below: + + The person who has associated a work with this document (the "Work") + affirms that he or she (the "Affirmer") is the/an author or owner of + the Work. The Work may be any work of authorship, including a + database. + + The Affirmer hereby fully, permanently and irrevocably waives and + relinquishes all of her or his copyright and related or neighboring + legal rights in the Work available under any federal or state law, + treaty or contract, including but not limited to moral rights, + publicity and privacy rights, rights protecting against unfair + competition and any rights protecting the extraction, dissemination + and reuse of data, whether such rights are present or future, vested + or contingent (the "Waiver"). The Affirmer makes the Waiver for the + benefit of the public at large and to the detriment of the Affirmer's + heirs or successors. + + The Affirmer understands and intends that the Waiver has the effect + of eliminating and entirely removing from the Affirmer's control all + the copyright and related or neighboring legal rights previously held + by the Affirmer in the Work, to that extent making the Work freely + available to the public for any and all uses and purposes without + restriction of any kind, including commercial use and uses in media + and formats or by methods that have not yet been invented or + conceived. Should the Waiver for any reason be judged legally + ineffective in any jurisdiction, the Affirmer hereby grants a free, + full, permanent, irrevocable, nonexclusive and worldwide license for + all her or his copyright and related or neighboring legal rights in + the Work. +-------------------------------------------------------------------------------- +root_certificates -1.6. “Executable Form” +Mozilla Public License Version 2.0 +================================== -means any form of the work other than Source Code Form. +1. Definitions +-------------- -1.7. “Larger Work” +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. -means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. -1.8. “License” +1.3. "Contribution" + means Covered Software of a particular Contributor. -means this document. +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. -1.9. “Licensable” +1.5. "Incompatible With Secondary Licenses" + means -means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or -1.10. “Modifications” + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. -means any of the following: +1.6. "Executable Form" + means any form of the work other than Source Code Form. - a. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. - b. any new file in Source Code Form that contains any Covered Software. +1.8. "License" + means this document. -1.11. “Patent Claims” of a Contributor +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. -means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. +1.10. "Modifications" + means any of the following: -1.12. “Secondary License” + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or -means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. + (b) any new file in Source Code Form that contains any Covered + Software. -1.13. “Source Code Form” +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. -means the form of the work preferred for making modifications. +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. -1.14. “You” (or “Your”) +1.13. "Source Code Form" + means the form of the work preferred for making modifications. -means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. 2. License Grants and Conditions +-------------------------------- 2.1. Grants -Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: - a. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and - b. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. 2.2. Effective Date -The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. 2.3. Limitations on Grant Scope -The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: - a. for any code that a Contributor has removed from Covered Software; or +(a) for any code that a Contributor has removed from Covered Software; + or - b. for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or - c. under Patent Claims infringed by Covered Software in the absence of its Contributions. +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. -This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). 2.4. Subsequent Licenses -No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). 2.5. Representation -Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. 2.6. Fair Use -This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. 2.7. Conditions -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. 3. Responsibilities +------------------- 3.1. Distribution of Source Form -All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form. +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. 3.2. Distribution of Executable Form If You distribute Covered Software in Executable Form then: - a. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and - b. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License. +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. 3.3. Distribution of a Larger Work -You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). 3.4. Notices -You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. 3.5. Application of Additional Terms -You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. 4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. 5. Termination +-------------- -5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. - -6. Disclaimer of Warranty +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. - Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. -7. Limitation of Liability +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. - Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ 8. Litigation +------------- -Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims. +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. 9. Miscellaneous +---------------- -This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. 10. Versions of the License +--------------------------- 10.1. New Versions -Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. 10.2. Effect of New Versions -You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. 10.3. Modified Versions -If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses -If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. Exhibit A - Source Code Form License Notice +------------------------------------------- - This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. -If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. You may add additional accurate notices of copyright ownership. -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0. --------------------------------------------------------------------------------- -root_certificates - -Mozilla Public License Version 2.0 -================================== - -1. Definitions - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- -1.6. "Executable Form" - means any form of the work other than Source Code Form. + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. +You may obtain a copy of this library's Source Code Form from: https://dart.googlesource.com/root_certificates/+/692f6d6488af68e0121317a9c2c9eb393eb0ee50 -1.8. "License" - means this document. +-------------------------------------------------------------------------------- +boringssl -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. +OpenSSL License +--------------- -1.10. "Modifications" - means any of the following: +Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: - (b) any new file in Source Code Form that contains any Covered - Software. +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" -1.13. "Source Code Form" - means the form of the work preferred for making modifications. +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + openssl-core@openssl.org. -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. -2. License Grants and Conditions +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.openssl.org/)" -2.1. Grants +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and +This product includes cryptographic software written by Eric Young +(eay@cryptsoft.com). This product includes software written by Tim +Hudson (tjh@cryptsoft.com). -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. +Original SSLeay License +----------------------- -2.2. Effective Date +Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) +All rights reserved. -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. +This package is an SSL implementation written +by Eric Young (eay@cryptsoft.com). +The implementation was written so as to conform with Netscapes SSL. -2.3. Limitations on Grant Scope +This library is free for commercial and non-commercial use as long as +the following conditions are aheared to. The following conditions +apply to all code found in this distribution, be it the RC4, RSA, +lhash, DES, etc., code; not just the SSL code. The SSL documentation +included with this distribution is covered by the same copyright terms +except that the holder is Tim Hudson (tjh@cryptsoft.com). -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: +Copyright remains Eric Young's, and as such any Copyright notices in +the code are not to be removed. +If this package is used in a product, Eric Young should be given attribution +as the author of the parts of the library used. +This can be in the form of a textual message at program startup or +in documentation (online or textual) provided with the package. -(a) for any code that a Contributor has removed from Covered Software; - or +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + "This product includes cryptographic software written by + Eric Young (eay@cryptsoft.com)" + The word 'cryptographic' can be left out if the rouines from the library + being used are not cryptographic related :-). +4. If you include any Windows specific code (or a derivative thereof) from + the apps directory (application code) you must include an acknowledgement: + "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or +THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. +The licence and distribution terms for any publically available version or +derivative of this code cannot be changed. i.e. this code cannot simply be +copied and put under another distribution licence +[including the GNU Public Licence.] -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). +ISC license used for completely new code in BoringSSL: -2.4. Subsequent Licenses +Copyright (c) 2015, Google Inc. -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. -2.5. Representation +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. +The code in third_party/fiat carries the MIT license: -2.6. Fair Use +Copyright (c) 2015-2016 the fiat-crypto authors (see +https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: -2.7. Conditions +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. -3. Responsibilities +Licenses for support code +------------------------- -3.1. Distribution of Source Form +Parts of the TLS test suite are under the Go license. This code is not included +in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so +distributing code linked against BoringSSL does not trigger this license: -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. +Copyright (c) 2009 The Go Authors. All rights reserved. -3.2. Distribution of Executable Form +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -If You distribute Covered Software in Executable Form then: + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. +BoringSSL uses the Chromium test infrastructure to run a continuous build, +trybots etc. The scripts which manage this, and the script for generating build +metadata, are under the Chromium license. Distributing code linked against +BoringSSL does not trigger this license. -3.3. Distribution of a Larger Work +Copyright 2015 The Chromium Authors. All rights reserved. -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -3.4. Notices + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-------------------------------------------------------------------------------- +freetype2 -3.5. Application of Additional Terms +The FreeType Project LICENSE +---------------------------- -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. + 2006-Jan-27 -4. Inability to Comply Due to Statute or Regulation + Copyright 1996-2002, 2006 by + David Turner, Robert Wilhelm, and Werner Lemberg -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. -5. Termination -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. +Introduction +============ -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. + The FreeType Project is distributed in several archive packages; + some of them may contain, in addition to the FreeType font engine, + various tools and contributions which rely on, or relate to, the + FreeType Project. -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. + This license applies to all files found in such packages, and + which do not fall under their own explicit license. The license + affects thus the FreeType font engine, the test programs, + documentation and makefiles, at the very least. -* 6. Disclaimer of Warranty - -* Covered Software is provided under this License on an "as is" -* basis, without warranty of any kind, either expressed, implied, or -* statutory, including, without limitation, warranties that the -* Covered Software is free of defects, merchantable, fit for a -* particular purpose or non-infringing. The entire risk as to the -* quality and performance of the Covered Software is with You. -* Should any Covered Software prove defective in any respect, You -* (not any Contributor) assume the cost of any necessary servicing, -* repair, or correction. This disclaimer of warranty constitutes an -* essential part of this License. No use of any Covered Software is -* authorized under this License except under this disclaimer. - -* 7. Limitation of Liability - -* Under no circumstances and under no legal theory, whether tort -* (including negligence), contract, or otherwise, shall any -* Contributor, or anyone who distributes Covered Software as -* permitted above, be liable to You for any direct, indirect, -* special, incidental, or consequential damages of any character -* including, without limitation, damages for lost profits, loss of -* goodwill, work stoppage, computer failure or malfunction, or any -* and all other commercial damages or losses, even if such party -* shall have been informed of the possibility of such damages. This -* limitation of liability shall not apply to liability for death or -* personal injury resulting from such party's negligence to the -* extent applicable law prohibits such limitation. Some -* jurisdictions do not allow the exclusion or limitation of -* incidental or consequential damages, so this exclusion and -* limitation may not apply to You. + This license was inspired by the BSD, Artistic, and IJG + (Independent JPEG Group) licenses, which all encourage inclusion + and use of free software in commercial and freeware products + alike. As a consequence, its main points are that: -8. Litigation + o We don't promise that this software works. However, we will be + interested in any kind of bug reports. (`as is' distribution) -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. + o You can use this software for whatever you want, in parts or + full form, without having to pay us. (`royalty-free' usage) -9. Miscellaneous + o You may not pretend that you wrote this software. If you use + it, or only parts of it, in a program, you must acknowledge + somewhere in your documentation that you have used the + FreeType code. (`credits') -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. + We specifically permit and encourage the inclusion of this + software, with or without modifications, in commercial products. + We disclaim all warranties covering The FreeType Project and + assume no liability related to The FreeType Project. -10. Versions of the License -10.1. New Versions + Finally, many people asked us for a preferred form for a + credit/disclaimer to use in compliance with this license. We thus + encourage you to use the following text: -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. + """ + Portions of this software are copyright © The FreeType + Project (www.freetype.org). All rights reserved. + """ -10.2. Effect of New Versions + Please replace with the value from the FreeType version you + actually use. -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. -10.3. Modified Versions +Legal Terms +=========== -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). +0. Definitions +-------------- -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses + Throughout this license, the terms `package', `FreeType Project', + and `FreeType archive' refer to the set of files originally + distributed by the authors (David Turner, Robert Wilhelm, and + Werner Lemberg) as the `FreeType Project', be they named as alpha, + beta or final release. -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source + code as well as linking it to form a `program' or `executable'. + This program is referred to as `a program using the FreeType + engine'. -Exhibit A - Source Code Form License Notice + This license applies to all files distributed in the original + FreeType Project, including all source code, binaries and + documentation, unless otherwise stated in the file in its + original, unmodified form as distributed in the original archive. + If you are unsure whether or not a particular file is covered by + this license, you must contact us to verify this. - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. + The FreeType Project is copyright (C) 1996-2000 by David Turner, + Robert Wilhelm, and Werner Lemberg. All rights reserved except as + specified below. -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. +1. No Warranty +-------------- -You may add additional accurate notices of copyright ownership. + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO + USE, OF THE FREETYPE PROJECT. -Exhibit B - "Incompatible With Secondary Licenses" Notice +2. Redistribution +----------------- - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. --------------------------------------------------------------------------------- -boringssl + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and + sublicense the FreeType Project (in both source and object code + forms) and derivative works thereof for any purpose; and to + authorize others to exercise some or all of the rights granted + herein, subject to the following conditions: -OpenSSL License + o Redistribution of source code must retain this license file + (`FTL.TXT') unaltered; any additions, deletions or changes to + the original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, + original files must be preserved in all copies of source + files. + + o Redistribution in binary form must provide a disclaimer that + states that the software is based in part of the work of the + FreeType Team, in the distribution documentation. We also + encourage you to put an URL to the FreeType web page in your + documentation, though this isn't mandatory. - ==================================================================== - Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. + These conditions apply to any software derived from or based on + the FreeType Project, not just the unmodified files. If you use + our work, you must acknowledge us. However, no fee need be paid + to us. - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: +3. Advertising +-------------- - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. + Neither the FreeType authors and contributors nor you shall use + the name of the other for commercial, advertising, or promotional + purposes without specific prior written permission. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation + or advertising materials: `FreeType Project', `FreeType Engine', + `FreeType library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to + accept it. However, as the FreeType Project is copyrighted + material, only this license, or another one contracted with the + authors, grants you the right to use, distribute, and modify it. + Therefore, by using, distributing, or modifying the FreeType + Project, you indicate that you understand and accept all the terms + of this license. - 3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - - 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - - 5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - - 6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" - - THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - ==================================================================== - - This product includes cryptographic software written by Eric Young - (eay@cryptsoft.com). This product includes software written by Tim - Hudson (tjh@cryptsoft.com). +4. Contacts +----------- -Original SSLeay License + There are two mailing lists related to FreeType: -* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -* All rights reserved. - -* This package is an SSL implementation written -* by Eric Young (eay@cryptsoft.com). -* The implementation was written so as to conform with Netscapes SSL. - -* This library is free for commercial and non-commercial use as long as -* the following conditions are aheared to. The following conditions -* apply to all code found in this distribution, be it the RC4, RSA, -* lhash, DES, etc., code; not just the SSL code. The SSL documentation -* included with this distribution is covered by the same copyright terms -* except that the holder is Tim Hudson (tjh@cryptsoft.com). - -* Copyright remains Eric Young's, and as such any Copyright notices in -* the code are not to be removed. -* If this package is used in a product, Eric Young should be given attribution -* as the author of the parts of the library used. -* This can be in the form of a textual message at program startup or -* in documentation (online or textual) provided with the package. - -* Redistribution and use in source and binary forms, with or without -* modification, are permitted provided that the following conditions -* are met: -* 1. Redistributions of source code must retain the copyright -* notice, this list of conditions and the following disclaimer. -* 2. Redistributions in binary form must reproduce the above copyright -* notice, this list of conditions and the following disclaimer in the -* documentation and/or other materials provided with the distribution. -* 3. All advertising materials mentioning features or use of this software -* must display the following acknowledgement: -* "This product includes cryptographic software written by -* Eric Young (eay@cryptsoft.com)" -* The word 'cryptographic' can be left out if the rouines from the library -* being used are not cryptographic related :-). -* 4. If you include any Windows specific code (or a derivative thereof) from -* the apps directory (application code) you must include an acknowledgement: -* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -* SUCH DAMAGE. - -* The licence and distribution terms for any publically available version or -* derivative of this code cannot be changed. i.e. this code cannot simply be -* copied and put under another distribution licence -* [including the GNU Public Licence.] + o freetype@nongnu.org -ISC license used for completely new code in BoringSSL: + Discusses general use and applications of FreeType, as well as + future and wanted additions to the library and distribution. + If you are looking for support, start in this list if you + haven't found anything to help you in the documentation. -/* Copyright (c) 2015, Google Inc. + o freetype-devel@nongnu.org - * Permission to use, copy, modify, and/or distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. + Discusses bugs, as well as engine internals, design issues, + specific licenses, porting, etc. - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY - * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION - * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN - * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + Our home page can be found at -The code in third_party/fiat carries the MIT license: + https://www.freetype.org -Copyright (c) 2015-2016 the fiat-crypto authors (see -https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +--- end of FTL.TXT --- +-------------------------------------------------------------------------------- +rapidjson -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +The above software in this distribution may have been modified by +THL A29 Limited ("Tencent Modifications"). +All Tencent Modifications are Copyright (C) 2015 THL A29 Limited. +-------------------------------------------------------------------------------- +sqlite -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +The source code for SQLite is in the public domain. No claim of +copyright is made on any part of the core source code. (The +documentation and test code is a different matter - some sections of +documentation and test logic are governed by open-source licenses.) +All contributors to the SQLite core software have signed affidavits +specifically disavowing any copyright interest in the code. This means +that anybody is able to legally do anything they want with the SQLite +source code. -Licenses for support code +There are other SQL database engines with liberal licenses that allow +the code to be broadly and freely used. But those other engines are +still governed by copyright law. SQLite is different in that copyright +law simply does not apply. -Parts of the TLS test suite are under the Go license. This code is not included -in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so -distributing code linked against BoringSSL does not trigger this license: +The source code files for other SQL database engines typically begin +with a comment describing your legal rights to view and copy that +file. The SQLite source code contains no license since it is not +governed by copyright. Instead of a license, the SQLite source code +offers a blessing: -Copyright (c) 2009 The Go Authors. All rights reserved. +May you do good and not evil +May you find forgiveness for yourself and forgive others +May you share freely, never taking more than you give. +-------------------------------------------------------------------------------- +zlib -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. -------------------------------------------------------------------------------- -angle -json -rapidjson +freetype2 -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +This software was written by Alexander Peslyak in 2001. No copyright is +claimed, and the software is hereby placed in the public domain. +In case this attempt to disclaim copyright and place the software in the +public domain is deemed null and void, then the software is +Copyright (c) 2001 Alexander Peslyak and it is hereby released to the +general public under the following terms: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +Redistribution and use in source and binary forms, with or without +modification, are permitted. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +There's ABSOLUTELY NO WARRANTY, express or implied. -------------------------------------------------------------------------------- -libtess2 - -SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008) -Copyright (C) [dates of first publication] Silicon Graphics, Inc. -All Rights Reserved. +freetype2 -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: +This software was written by Alexander Peslyak in 2001. No copyright is +claimed, and the software is hereby placed in the public domain. +In case this attempt to disclaim copyright and place the software in the +public domain is deemed null and void, then the software is +Copyright (c) 2001 Alexander Peslyak and it is hereby released to the +general public under the following terms: -The above copyright notice including the dates of first publication and either this -permission notice or a reference to http://oss.sgi.com/projects/FreeB/ shall be -included in all copies or substantial portions of the Software. +Redistribution and use in source and binary forms, with or without +modification, are permitted. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, -INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC. -BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE -OR OTHER DEALINGS IN THE SOFTWARE. +There's ABSOLUTELY NO WARRANTY, express or implied. -Except as contained in this notice, the name of Silicon Graphics, Inc. shall not -be used in advertising or otherwise to promote the sale, use or other dealings in -this Software without prior written authorization from Silicon Graphics, Inc. +(This is a heavily cut-down "BSD license".) -------------------------------------------------------------------------------- icu +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + See Terms of Use for definitions of Unicode Inc.’s Data Files and Software. @@ -15225,648 +30816,362 @@ Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. --------------------------------------------------------------------------------- -rapidjson - -Tencent is pleased to support the open source community by making RapidJSON available. - -Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. - -If you have downloaded a copy of the RapidJSON binary from Tencent, please note that the RapidJSON binary is licensed under the MIT License. -If you have downloaded a copy of the RapidJSON source code from Tencent, please note that RapidJSON source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of RapidJSON into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within RapidJSON. - -A copy of the MIT License is included in this file. - -Other dependencies and licenses: - -Open Source Software Licensed Under the BSD License: - -The msinttypes r29 -Copyright (c) 2006-2013 Alexander Chemeris -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -* Neither the name of copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Terms of the MIT License: - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -rapidjson - -Tencent is pleased to support the open source community by making RapidJSON available. - -Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved. - -If you have downloaded a copy of the RapidJSON binary from Tencent, please note that the RapidJSON binary is licensed under the MIT License. -If you have downloaded a copy of the RapidJSON source code from Tencent, please note that RapidJSON source code is licensed under the MIT License, except for the third-party components listed below which are subject to different license terms. Your integration of RapidJSON into your own projects may require compliance with the MIT License, as well as the other licenses applicable to the third-party components included within RapidJSON. To avoid the problematic JSON license in your own projects, it's sufficient to exclude the bin/jsonchecker/ directory, as it's the only code under the JSON license. -A copy of the MIT License is included in this file. - -Other dependencies and licenses: - -Open Source Software Licensed Under the BSD License: - -The msinttypes r29 -Copyright (c) 2006-2013 Alexander Chemeris -All rights reserved. -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +Third-Party Software Licenses -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -* Neither the name of copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. +This section contains third-party software notices and/or additional +terms for licensed third-party software components included within ICU +libraries. -THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +ICU License - ICU 1.8.1 to ICU 57.1 -Open Source Software Licensed Under the JSON License: - -json.org -Copyright (c) 2002 JSON.org -All Rights Reserved. - -JSON_checker -Copyright (c) 2002 JSON.org -All Rights Reserved. - -Terms of the JSON License: - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -The Software shall be used for Good, not Evil. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Terms of the MIT License: - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --------------------------------------------------------------------------------- -icu - -The BSD License -http://opensource.org/licenses/bsd-license.php -Copyright (C) 2006-2008, Google Inc. +COPYRIGHT AND PERMISSION NOTICE +Copyright (c) 1995-2016 International Business Machines Corporation and others All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided with -the distribution. - Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --------------------------------------------------------------------------------- -freetype2 - -The FreeType Project LICENSE - - 2006-Jan-27 - -Copyright 1996-2002, 2006 by -David Turner, Robert Wilhelm, and Werner Lemberg - -Introduction -============ - - The FreeType Project is distributed in several archive packages; - some of them may contain, in addition to the FreeType font engine, - various tools and contributions which rely on, or relate to, the - FreeType Project. - - This license applies to all files found in such packages, and - which do not fall under their own explicit license. The license - affects thus the FreeType font engine, the test programs, - documentation and makefiles, at the very least. - - This license was inspired by the BSD, Artistic, and IJG - (Independent JPEG Group) licenses, which all encourage inclusion - and use of free software in commercial and freeware products - alike. As a consequence, its main points are that: - - o We don't promise that this software works. However, we will be - interested in any kind of bug reports. (`as is' distribution) - - o You can use this software for whatever you want, in parts or - full form, without having to pay us. (`royalty-free' usage) - - o You may not pretend that you wrote this software. If you use - it, or only parts of it, in a program, you must acknowledge - somewhere in your documentation that you have used the - FreeType code. (`credits') - - We specifically permit and encourage the inclusion of this - software, with or without modifications, in commercial products. - We disclaim all warranties covering The FreeType Project and - assume no liability related to The FreeType Project. - - Finally, many people asked us for a preferred form for a - credit/disclaimer to use in compliance with this license. We thus - encourage you to use the following text: - - Portions of this software are copyright © The FreeType - Project (www.freetype.org). All rights reserved. +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. - Please replace with the value from the FreeType version you - actually use. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -Legal Terms -=========== +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. -0. Definitions +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. - Throughout this license, the terms `package', `FreeType Project', - and `FreeType archive' refer to the set of files originally - distributed by the authors (David Turner, Robert Wilhelm, and - Werner Lemberg) as the `FreeType Project', be they named as alpha, - beta or final release. +Chinese/Japanese Word Break Dictionary Data (cjdict.txt) - `You' refers to the licensee, or person using the project, where - `using' is a generic term including compiling the project's source - code as well as linking it to form a `program' or `executable'. - This program is referred to as `a program using the FreeType - engine'. +The Google Chrome software developed by Google is licensed under +the BSD license. Other software included in this distribution is +provided under other licenses, as set forth below. - This license applies to all files distributed in the original - FreeType Project, including all source code, binaries and - documentation, unless otherwise stated in the file in its - original, unmodified form as distributed in the original archive. - If you are unsure whether or not a particular file is covered by - this license, you must contact us to verify this. +The BSD License +http://opensource.org/licenses/bsd-license.php +Copyright (C) 2006-2008, Google Inc. - The FreeType Project is copyright (C) 1996-2000 by David Turner, - Robert Wilhelm, and Werner Lemberg. All rights reserved except as - specified below. +All rights reserved. -1. No Warranty +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: - THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY - KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO - USE, OF THE FREETYPE PROJECT. +Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. +Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following +disclaimer in the documentation and/or other materials provided with +the distribution. +Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. -2. Redistribution - This license grants a worldwide, royalty-free, perpetual and - irrevocable right and license to use, execute, perform, compile, - display, copy, create derivative works of, distribute and - sublicense the FreeType Project (in both source and object code - forms) and derivative works thereof for any purpose; and to - authorize others to exercise some or all of the rights granted - herein, subject to the following conditions: +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND +CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - o Redistribution of source code must retain this license file - (`FTL.TXT') unaltered; any additions, deletions or changes to - the original files must be clearly indicated in accompanying - documentation. The copyright notices of the unaltered, - original files must be preserved in all copies of source - files. +The word list in cjdict.txt are generated by combining three word lists +listed below with further processing for compound word breaking. The +frequency is generated with an iterative training against Google web +corpora. - o Redistribution in binary form must provide a disclaimer that - states that the software is based in part of the work of the - FreeType Team, in the distribution documentation. We also - encourage you to put an URL to the FreeType web page in your - documentation, though this isn't mandatory. +* Libtabe (Chinese) + - https://sourceforge.net/project/?group_id=1519 + - Its license terms and conditions are shown below. - These conditions apply to any software derived from or based on - the FreeType Project, not just the unmodified files. If you use - our work, you must acknowledge us. However, no fee need be paid - to us. +* IPADIC (Japanese) + - http://chasen.aist-nara.ac.jp/chasen/distribution.html + - Its license terms and conditions are shown below. -3. Advertising +Copyright (c) 1999 TaBE Project. +Copyright (c) 1999 Pai-Hsiang Hsiao. +All rights reserved. - Neither the FreeType authors and contributors nor you shall use - the name of the other for commercial, advertising, or promotional - purposes without specific prior written permission. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: - We suggest, but do not require, that you use one or more of the - following phrases to refer to this software in your documentation - or advertising materials: `FreeType Project', `FreeType Engine', - `FreeType library', or `FreeType Distribution'. +. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. +. Neither the name of the TaBE Project nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. - As you have not signed this license, you are not required to - accept it. However, as the FreeType Project is copyrighted - material, only this license, or another one contracted with the - authors, grants you the right to use, distribute, and modify it. - Therefore, by using, distributing, or modifying the FreeType - Project, you indicate that you understand and accept all the terms - of this license. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -4. Contacts +Copyright (c) 1999 Computer Systems and Communication Lab, + Institute of Information Science, Academia + Sinica. All rights reserved. - There are two mailing lists related to FreeType: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: - o freetype@nongnu.org +. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. +. Neither the name of the Computer Systems and Communication Lab + nor the names of its contributors may be used to endorse or + promote products derived from this software without specific + prior written permission. - Discusses general use and applications of FreeType, as well as - future and wanted additions to the library and distribution. - If you are looking for support, start in this list if you - haven't found anything to help you in the documentation. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. - o freetype-devel@nongnu.org +Copyright 1996 Chih-Hao Tsai @ Beckman Institute, + University of Illinois +c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 - Discusses bugs, as well as engine internals, design issues, - specific licenses, porting, etc. +Copyright 2000, 2001, 2002, 2003 Nara Institute of Science +and Technology. All Rights Reserved. - Our home page can be found at +Use, reproduction, and distribution of this software is permitted. +Any copy of this software, whether in its original form or modified, +must include both the above copyright notice and the following +paragraphs. - https://www.freetype.org +Nara Institute of Science and Technology (NAIST), +the copyright holders, disclaims all warranties with regard to this +software, including all implied warranties of merchantability and +fitness, in no event shall NAIST be liable for +any special, indirect or consequential damages or any damages +whatsoever resulting from loss of use, data or profits, whether in an +action of contract, negligence or other tortuous action, arising out +of or in connection with the use or performance of this software. ---- end of FTL.TXT --- --------------------------------------------------------------------------------- -boringssl +A large portion of the dictionary entries +originate from ICOT Free Software. The following conditions for ICOT +Free Software applies to the current dictionary as well. -The MIT License (MIT) +Each User may also freely distribute the Program, whether in its +original form or modified, to any third party or parties, PROVIDED +that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear +on, or be attached to, the Program, which is distributed substantially +in the same form as set out herein and that such intended +distribution, if actually made, will neither violate or otherwise +contravene any of the laws and regulations of the countries having +jurisdiction over the User or the intended distribution itself. -Copyright (c) 2015-2016 the fiat-crypto authors (see -https://github.com/mit-plv/fiat-crypto/blob/master/AUTHORS). +NO WARRANTY -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +The program was produced on an experimental basis in the course of the +research and development conducted during the project and is provided +to users as so produced on an experimental basis. Accordingly, the +program is provided without any warranty whatsoever, whether express, +implied, statutory or otherwise. The term "warranty" used herein +includes, but is not limited to, any warranty of the quality, +performance, merchantability and fitness for a particular purpose of +the program and the nonexistence of any infringement or violation of +any right of any third party. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Each user of the program will agree and understand, and be deemed to +have agreed and understood, that there is no warranty whatsoever for +the program and, accordingly, the entire risk arising from or +otherwise connected with the program is assumed by the user. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -rapidjson +Therefore, neither ICOT, the copyright holder, or any other +organization that participated in or was otherwise related to the +development of the program and their respective officials, directors, +officers and other employees shall be held liable for any and all +damages, including, without limitation, general, special, incidental +and consequential damages, arising out of or otherwise in connection +with the use or inability to use the program or any product, material +or result produced or otherwise obtained by using the program, +regardless of whether they have been advised of, or otherwise had +knowledge of, the possibility of such damages at any time during the +project or thereafter. Each user will be deemed to have agreed to the +foregoing by his or her commencement of use of the program. The term +"use" as used herein includes, but is not limited to, the use, +modification, copying and distribution of the program and the +production of secondary products from the program. -The MIT License (MIT) +In the case where the program, whether in its original form or +modified, was distributed or delivered to or received by a user from +any person, organization or entity other than ICOT, unless it makes or +grants independently of ICOT any specific warranty to the user in +writing, such person, organization or entity, will also be exempted +from and not be held liable to the user for any such damages as noted +above as far as the program is concerned. -Copyright (c) 2017 Bart Muzzin +Lao Word Break Dictionary Data (laodict.txt) -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +Copyright (C) 2016 and later: Unicode, Inc. and others. +License & terms of use: http://www.unicode.org/copyright.html +Copyright (c) 2015 International Business Machines Corporation +and others. All Rights Reserved. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Project: https://github.com/rober42539/lao-dictionary +Dictionary: https://github.com/rober42539/lao-dictionary/laodict.txt +License: https://github.com/rober42539/lao-dictionary/LICENSE.txt + (copied below) -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +This file is derived from the above dictionary version of Nov 22, 2020 -Derived from: +Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. +All rights reserved. -The MIT License (MIT) +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: -Copyright (c) 2015 mojmir svoboda +Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. Redistributions in binary +form must reproduce the above copyright notice, this list of conditions and +the following disclaimer in the documentation and/or other materials +provided with the distribution. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +Burmese Word Break Dictionary Data (burmesedict.txt) -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. --------------------------------------------------------------------------------- -fuchsia_sdk +Copyright (c) 2014 International Business Machines Corporation +and others. All Rights Reserved. -The majority of files in this project use the Apache 2.0 License. -There are a few exceptions and their license can be found in the source. -Any license deviations from Apache 2.0 are "more permissive" licenses. - -=========================================================================================== - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. --------------------------------------------------------------------------------- -sqlite +This list is part of a project hosted at: + github.com/kanyawtech/myanmar-karen-word-lists -The source code for SQLite is in the public domain. No claim of -copyright is made on any part of the core source code. (The -documentation and test code is a different matter - some sections of -documentation and test logic are governed by open-source licenses.) -All contributors to the SQLite core software have signed affidavits -specifically disavowing any copyright interest in the code. This means -that anybody is able to legally do anything they want with the SQLite -source code. +Copyright (c) 2013, LeRoy Benjamin Sharon +All rights reserved. -There are other SQL database engines with liberal licenses that allow -the code to be broadly and freely used. But those other engines are -still governed by copyright law. SQLite is different in that copyright -law simply does not apply. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: Redistributions of source code must retain the above +copyright notice, this list of conditions and the following +disclaimer. Redistributions in binary form must reproduce the +above copyright notice, this list of conditions and the following +disclaimer in the documentation and/or other materials provided +with the distribution. -The source code files for other SQL database engines typically begin -with a comment describing your legal rights to view and copy that -file. The SQLite source code contains no license since it is not -governed by copyright. Instead of a license, the SQLite source code -offers a blessing: + Neither the name Myanmar Karen Word Lists, nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -May you do good and not evil -May you find forgiveness for yourself and forgive others -May you share freely, never taking more than you give. --------------------------------------------------------------------------------- -web_unicode +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND +CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS +BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR +TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF +THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +Google double-conversion -See Terms of Use -for definitions of Unicode Inc.’s Data Files and Software. +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -NOTICE TO USER: Carefully read the following legal agreement. -BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S -DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), -YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE -TERMS AND CONDITIONS OF THIS AGREEMENT. -IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE -THE DATA FILES OR SOFTWARE. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -COPYRIGHT AND PERMISSION NOTICE +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -Copyright © 1991-2022 Unicode, Inc. All rights reserved. -Distributed under the Terms of Use in https://www.unicode.org/copyright.html. +File: install-sh (only for ICU4C) -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. +Copyright 1991 by the Massachusetts Institute of Technology -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation, and that the name of M.I.T. not be used in advertising or +publicity pertaining to distribution of the software without specific, +written prior permission. M.I.T. makes no representations about the +suitability of this software for any purpose. It is provided "as is" +without express or implied warranty. -------------------------------------------------------------------------------- +harfbuzz icu +web_unicode Unicode® Copyright and Terms of Use For the general privacy policy governing access to this site, see the Unicode Privacy Policy. @@ -15875,18 +31180,18 @@ A. Unicode Copyright 1. Copyright © 1991-2022 Unicode, Inc. All rights reserved. B. Definitions Unicode Data Files ("DATA FILES") include all data files under the directories: -https://www.unicode.org/Public -https://www.unicode.org/reports -https://www.unicode.org/ivd/data +https://www.unicode.org/Public/ +https://www.unicode.org/reports/ +https://www.unicode.org/ivd/data/ Unicode Data Files do not include PDF online code charts under the directory: -https://www.unicode.org/Public +https://www.unicode.org/Public/ Unicode Software ("SOFTWARE") includes any source code published in the Unicode Standard or any source code or compiled code under the directories: -https://www.unicode.org/Public/PROGRAMS -https://www.unicode.org/Public/cldr -http://site.icu-project.org/download +https://www.unicode.org/Public/PROGRAMS/ +https://www.unicode.org/Public/cldr/ +http://site.icu-project.org/download/ C. Terms of Use 1. Certain documents and files on this website contain a legend indicating that "Modification is permitted." Any person is hereby authorized, without fee, to modify such documents and files to create derivative works conforming to the Unicode® Standard, subject to Terms and Conditions herein. 2. Any person is hereby authorized, without fee, to view, use, reproduce, and distribute all documents and files, subject to the Terms and Conditions herein. @@ -15963,50 +31268,103 @@ shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. -------------------------------------------------------------------------------- -libcxx -libcxxabi +libjpeg-turbo -University of Illinois/NCSA -Open Source License +We are also required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." +-------------------------------------------------------------------------------- +libjpeg-turbo -Copyright (c) 2009-2019 by the contributors listed in CREDITS.TXT +libjpeg-turbo Licenses +====================== -All rights reserved. +libjpeg-turbo is covered by three compatible BSD-style open source licenses: -Developed by: +- The IJG (Independent JPEG Group) License, which is listed in + [README.ijg](README.ijg) - LLVM Team + This license applies to the libjpeg API library and associated programs + (any code inherited from libjpeg, and any modifications to that code.) - University of Illinois at Urbana-Champaign +- The Modified (3-clause) BSD License, which is listed in + [turbojpeg.c](turbojpeg.c) - http://llvm.org + This license covers the TurboJPEG API library and associated programs. -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal with -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: +- The zlib License, which is listed in [simd/jsimdext.inc](simd/jsimdext.inc) - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimers. + This license is a subset of the other two, and it covers the libjpeg-turbo + SIMD extensions. - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimers in the - documentation and/or other materials provided with the distribution. - * Neither the names of the LLVM Team, University of Illinois at - Urbana-Champaign, nor the names of its contributors may be used to - endorse or promote products derived from this Software without specific - prior written permission. +Complying with the libjpeg-turbo Licenses +========================================= -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE -SOFTWARE. +This section provides a roll-up of the libjpeg-turbo licensing terms, to the +best of our understanding. + +1. If you are distributing a modified version of the libjpeg-turbo source, + then: + + 1. You cannot alter or remove any existing copyright or license notices + from the source. + + **Origin** + - Clause 1 of the IJG License + - Clause 1 of the Modified BSD License + - Clauses 1 and 3 of the zlib License + + 2. You must add your own copyright notice to the header of each source + file you modified, so others can tell that you modified that file (if + there is not an existing copyright header in that file, then you can + simply add a notice stating that you modified the file.) + + **Origin** + - Clause 1 of the IJG License + - Clause 2 of the zlib License + + 3. You must include the IJG README file, and you must not alter any of the + copyright or license text in that file. + + **Origin** + - Clause 1 of the IJG License + +2. If you are distributing only libjpeg-turbo binaries without the source, or + if you are distributing an application that statically links with + libjpeg-turbo, then: + + 1. Your product documentation must include a message stating: + + This software is based in part on the work of the Independent JPEG + Group. + + **Origin** + - Clause 2 of the IJG license + + 2. If your binary distribution includes or uses the TurboJPEG API, then + your product documentation must include the text of the Modified BSD + License. + + **Origin** + - Clause 2 of the Modified BSD License + +3. You cannot use the name of the IJG or The libjpeg-turbo Project or the + contributors thereof in advertising, publicity, etc. + + **Origin** + - IJG License + - Clause 3 of the Modified BSD License + +4. The IJG and The libjpeg-turbo Project do not warrant libjpeg-turbo to be + free of defects, nor do we accept any liability for undesirable + consequences resulting from your use of the software. + + **Origin** + - IJG License + - Modified BSD License + - zlib License -------------------------------------------------------------------------------- libjpeg-turbo @@ -16016,6 +31374,7 @@ sections, and to remove impolitic language that existed in the libjpeg v8 README. It is included only for reference. Please see README.md for information specific to libjpeg-turbo. + The Independent JPEG Group's JPEG software ========================================== @@ -16031,6 +31390,7 @@ and other members of the Independent JPEG Group. IJG is not affiliated with the ISO/IEC JTC1/SC29/WG1 standards committee (also known as JPEG, together with ITU-T SG16). + DOCUMENTATION ROADMAP ===================== @@ -16065,6 +31425,7 @@ If you want to understand how the JPEG code works, we suggest reading one or more of the REFERENCES, then looking at the documentation files (in roughly the order listed) before diving into the code. + OVERVIEW ======== @@ -16117,6 +31478,7 @@ We welcome the use of this software as a component of commercial products. No royalty is required, but we do ask for an acknowledgement in product documentation, as described under LEGAL ISSUES. + LEGAL ISSUES ============ @@ -16166,6 +31528,7 @@ We specifically permit and encourage the use of this software as the basis of commercial products, provided that all warranty or liability claims are assumed by the product vendor. + The Unix configuration script "configure" was produced with GNU Autoconf. It is copyright by the Free Software Foundation but is freely distributable. The same holds for its supporting scripts (config.guess, config.sub, @@ -16184,6 +31547,7 @@ We are required to state that CompuServe Incorporated. GIF(sm) is a Service Mark property of CompuServe Incorporated." + REFERENCES ========== @@ -16191,8 +31555,8 @@ We recommend reading one or more of these references before trying to understand the innards of the JPEG software. The best short technical introduction to the JPEG compression algorithm is - Wallace, Gregory K. "The JPEG Still Picture Compression Standard", - Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. + Wallace, Gregory K. "The JPEG Still Picture Compression Standard", + Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. (Adjacent articles in that issue discuss MPEG motion picture compression, applications of JPEG, and related topics.) If you don't have the CACM issue handy, a PDF file containing a revised version of Wallace's article is @@ -16246,6 +31610,7 @@ of the TIFF spec will replace the 6.0 JPEG design with the Note's design. Although IJG's own code does not support TIFF/JPEG, the free libtiff library uses our library to implement TIFF/JPEG per the Note. + ARCHIVE LOCATIONS ================= @@ -16255,13 +31620,14 @@ directory "files". The JPEG FAQ (Frequently Asked Questions) article is a source of some general information about JPEG. -It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq +It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq/ and other news.answers archive sites, including the official news.answers archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/. If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu with body - send usenet/news.answers/jpeg-faq/part1 - send usenet/news.answers/jpeg-faq/part2 + send usenet/news.answers/jpeg-faq/part1 + send usenet/news.answers/jpeg-faq/part2 + FILE FORMAT WARS ================ @@ -16276,6 +31642,7 @@ Don't use an incompatible file format! (In any case, our decoder will remain capable of reading existing JPEG image files indefinitely.) + TO DO ===== @@ -16285,6 +31652,7 @@ fuchsia_sdk musl as a whole is licensed under the following standard MIT license: + Copyright © 2005-2014 Rich Felker, et al. Permission is hereby granted, free of charge, to any person obtaining @@ -16306,6 +31674,7 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + Authors/contributors include: Alex Dowad @@ -16411,6 +31780,25 @@ negated the permissions granted in the license. In the spirit of permissive licensing, and of not having licensing issues being an obstacle to adoption, that text has been removed. -------------------------------------------------------------------------------- +icu + +punycode.c 0.4.0 (2001-Nov-17-Sat) +http://www.cs.berkeley.edu/~amc/idn/ +Adam M. Costello +http://www.nicemice.net/amc/ + +Disclaimer and license + + Regarding this entire document or any portion of it (including + the pseudocode and C code), the author makes no guarantees and + is not responsible for any damage resulting from its use. The + author grants irrevocable permission to anyone to use, modify, + and distribute it in any way that does not diminish the rights + of anyone else to use, modify, and distribute it, provided that + redistributed derivative works do not contain misleading author or + version information. Derivative works need not be licensed under + similar terms. +-------------------------------------------------------------------------------- zlib version 1.2.12, March 27th, 2022 diff --git a/third_party/accessibility/LICENSE b/third_party/accessibility/LICENSE new file mode 100644 index 0000000000000..76755ac7a175c --- /dev/null +++ b/third_party/accessibility/LICENSE @@ -0,0 +1,27 @@ +Copyright 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/third_party/tonic/LICENSE b/third_party/tonic/LICENSE new file mode 100644 index 0000000000000..c6823b81eb845 --- /dev/null +++ b/third_party/tonic/LICENSE @@ -0,0 +1,25 @@ +Copyright 2013 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/licenses/README.md b/tools/licenses/README.md index 39a123a1a268a..fdfbdd53f0690 100644 --- a/tools/licenses/README.md +++ b/tools/licenses/README.md @@ -30,7 +30,7 @@ latest upstream main and then run the following in this directory: dart pub get gclient sync -D rm -rf ../../../out/licenses -dart lib/main.dart --src ../../.. --out ../../../out/licenses --golden ../../ci/licenses_golden +dart --enable-asserts lib/main.dart --src ../../.. --out ../../../out/licenses --golden ../../ci/licenses_golden ``` In order for the license script to work correctly, you need to remove @@ -59,11 +59,20 @@ anything other than the `FILE` lines. To update this file, run: ``` dart pub get -gclient sync -dart lib/main.dart --release --src ../../.. --out ../../../out/licenses > ../../sky/packages/sky_engine/LICENSE +gclient sync -D +dart --enable-asserts lib/main.dart --release --src ../../.. > ../../sky/packages/sky_engine/LICENSE ``` The bots do not verify that you did this step, it's important that you do it! When reviewing patches, if you see a change to the golden files, check to see if there's a corresponding change to the LICENSE file! + +## Testing + +To run the tests: + +``` +dart pub get +find -name "*_test.dart" | xargs -n 1 dart --enable-asserts +``` diff --git a/tools/licenses/data/ietf b/tools/licenses/data/ietf new file mode 100644 index 0000000000000..5f6366fbbbb67 --- /dev/null +++ b/tools/licenses/data/ietf @@ -0,0 +1,25 @@ +Copyright (C) The Internet Society (2002). All Rights Reserved. + +This document and translations of it may be copied and furnished to +others, and derivative works that comment on or otherwise explain it +or assist in its implementation may be prepared, copied, published +and distributed, in whole or in part, without restriction of any +kind, provided that the above copyright notice and this paragraph are +included on all such copies and derivative works. However, this +document itself may not be modified in any way, such as by removing +the copyright notice or references to the Internet Society or other +Internet organizations, except as needed for the purpose of +developing Internet standards in which case the procedures for +copyrights defined in the Internet Standards process must be +followed, or as required to translate it into languages other than +English. + +The limited permissions granted above are perpetual and will not be +revoked by the Internet Society or its successors or assigns. + +This document and the information contained herein is provided on an +"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING +TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING +BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION +HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF +MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. diff --git a/tools/licenses/lib/README b/tools/licenses/lib/README index 3699c766ce0cf..7874f4fa6f56d 100644 --- a/tools/licenses/lib/README +++ b/tools/licenses/lib/README @@ -35,7 +35,8 @@ licenses than strictly necessary), it tries to avoid including material that isn't actually used. To do this, RepositoryDirectory objects only crawl directories and files for which shouldRecurse returns true. For example, shouldRecurse returns false for ".git" -files. +files. To simplify the configuration of such rules, the default is to +apply the rules in the paths.dart file. Some directories and files require special handling, and have specific subclasses of the above classes. To create the appropriate objects, @@ -71,10 +72,23 @@ the Free Software Foundation is off by one, for no clear reason, leading to the pattern ending with "MA 0211[01]-1307, USA". -The license.dart file also contains the License object, the currently -simplistic normalizer (_reformat) for license text (which mostly just -removes comment syntax), the code that attempts to determine what -copyrights apply to which licenses, and the code that attempts to -identify the licenses themselves (at a high level), to make sure that -appropriate clauses are followed (e.g. including the copyright with a -BSD notice). +The license.dart file also contains the License object, the code that +attempts to determine what copyrights apply to which licenses, and the +code that attempts to identify the licenses themselves (at a high +level), to make sure that appropriate clauses are followed (e.g. +including the copyright with a BSD notice). + + +In formatter.dart you will find the only part of this codebase that is +actually tested at this time; this is the code that reformats blobs of +text to remove comments and decorations and the like. + + +The biggest problem with this script right now is that it is absurdly +slow, largely because of the many, many applications of regular +expressions in pattern.dart (especially the ones that use _linebreak). +In regexp_debug.dart we have a wrapper around RegExp that attempts to +quantify this cost, you can see the results if you run the script with +`--verbose`. Long term, the right solution is to change from these +all-in-one patterns to a world where we first tokenize each file, then +apply word-by-word pattern matching to the tokenized input. diff --git a/tools/licenses/lib/filesystem.dart b/tools/licenses/lib/filesystem.dart index 206f7bb2ddef5..70a64535ab045 100644 --- a/tools/licenses/lib/filesystem.dart +++ b/tools/licenses/lib/filesystem.dart @@ -11,6 +11,7 @@ import 'package:path/path.dart' as path; import 'cache.dart'; import 'limits.dart'; +import 'patterns.dart'; enum FileType { binary, // won't have its own license block @@ -20,14 +21,14 @@ enum FileType { tar, // should be parsed as an archive and drilled into gz, // should be parsed as a single compressed file and exposed bzip2, // should be parsed as a single compressed file and exposed - metadata, // can be skipped entirely (e.g. Mac OS X ._foo files) + notPartOfBuild, // can be skipped entirely (e.g. Mac OS X ._foo files, bash scripts) } typedef Reader = List Function(); -class BytesOf extends Key { BytesOf(dynamic value) : super(value); } -class UTF8Of extends Key { UTF8Of(dynamic value) : super(value); } -class Latin1Of extends Key { Latin1Of(dynamic value) : super(value); } +class BytesOf extends Key { BytesOf(super.value); } +class UTF8Of extends Key { UTF8Of(super.value); } +class Latin1Of extends Key { Latin1Of(super.value); } bool matchesSignature(List bytes, List signature) { if (bytes.length < signature.length) { @@ -76,15 +77,20 @@ FileType identifyFile(String name, Reader reader) { (path.split(name).reversed.take(3).toList().reversed.join('/') == 'third_party/cares/cares.rc')) { return FileType.latin1Text; } - if (path.split(name).reversed.take(6).toList().reversed.join('/') == 'dart/runtime/tests/vm/dart/bad_snapshot' || // Not any particular format - path.split(name).reversed.take(8).toList().reversed.join('/') == 'third_party/android_tools/ndk/sources/cxx-stl/stlport/src/stlport.rc') { + if (path.split(name).reversed.take(6).toList().reversed.join('/') == 'dart/runtime/tests/vm/dart/bad_snapshot') { // Not any particular format + return FileType.binary; + } + if (path.split(name).reversed.take(9).toList().reversed.join('/') == 'fuchsia/sdk/linux/dart/zircon/lib/src/fakes/handle_disposition.dart' || // has bogus but benign "authors" reference, reported to jamesr@ + path.split(name).reversed.take(6).toList().reversed.join('/') == 'third_party/angle/src/common/fuchsia_egl/fuchsia_egl.c' || // has bogus but benign "authors" reference, reported to author and legal team + path.split(name).reversed.take(6).toList().reversed.join('/') == 'third_party/angle/src/common/fuchsia_egl/fuchsia_egl.h' || // has bogus but benign "authors" reference, reported to author and legal team + path.split(name).reversed.take(6).toList().reversed.join('/') == 'third_party/angle/src/common/fuchsia_egl/fuchsia_egl_backend.h') { // has bogus but benign "authors" reference, reported to author and legal team return FileType.binary; } final String base = path.basename(name); if (base.startsWith('._')) { bytes ??= reader(); if (matchesSignature(bytes, [0x00, 0x05, 0x16, 0x07, 0x00, 0x02, 0x00, 0x00, 0x4d, 0x61, 0x63, 0x20, 0x4f, 0x53, 0x20, 0x58])) { - return FileType.metadata; + return FileType.notPartOfBuild; } // The ._* files in Mac OS X archives that gives icons and stuff } if (path.split(name).contains('cairo')) { @@ -150,21 +156,22 @@ FileType identifyFile(String name, Reader reader) { case '.cc': return FileType.text; case '.cpp': return FileType.text; case '.inc': return FileType.text; + // Go code + case '.go': return FileType.text; // ObjectiveC code case '.m': return FileType.text; // Assembler case '.asm': return FileType.text; // Shell - case '.sh': return FileType.text; - case '.bat': return FileType.text; + case '.sh': return FileType.notPartOfBuild; + case '.bat': return FileType.notPartOfBuild; // Build files - case '.in': return FileType.text; - case '.ac': return FileType.text; - case '.am': return FileType.text; - case '.gn': return FileType.text; - case '.gni': return FileType.text; - case '.gyp': return FileType.text; - case '.gypi': return FileType.text; + case '.ac': return FileType.notPartOfBuild; + case '.am': return FileType.notPartOfBuild; + case '.gn': return FileType.notPartOfBuild; + case '.gni': return FileType.notPartOfBuild; + case '.gyp': return FileType.notPartOfBuild; + case '.gypi': return FileType.notPartOfBuild; // Java code case '.java': return FileType.text; case '.jar': return FileType.zip; // Java package @@ -218,6 +225,7 @@ FileType identifyFile(String name, Reader reader) { case '.emf': return FileType.binary; // Windows enhanced metafile format case '.skp': return FileType.binary; // Skia picture format case '.mskp': return FileType.binary; // Skia picture format + case '.spv': return FileType.binary; // SPIR-V // Videos case '.ogg': return FileType.binary; // Ogg media case '.mp4': return FileType.binary; // MPEG media @@ -332,9 +340,19 @@ FileType identifyFile(String name, Reader reader) { if (matchesSignature(bytes, [0x58, 0x50, 0x43, 0x4f, 0x4d, 0x0a, 0x54, 0x79, 0x70, 0x65, 0x4c, 0x69, 0x62, 0x0d, 0x0a, 0x1a])) { return FileType.binary; } // XPCOM Type Library + if (matchesSignature(bytes, [0x23, 0x21])) { + // #! indicates a shell script, those are not part of the build + return FileType.notPartOfBuild; + } return FileType.text; } +String _normalize(String fileContents) { + fileContents = fileContents.replaceAll(newlinePattern, '\n'); + fileContents = fileContents.replaceAll('\t', ' ' * 4); + return fileContents; +} + // INTERFACE @@ -363,7 +381,7 @@ mixin UTF8TextFile implements TextFile { @override String readString() { try { - return cache(UTF8Of(this), () => utf8.decode(readBytes()!)); + return cache(UTF8Of(this), () => _normalize(utf8.decode(readBytes()!))); } on FormatException { print(fullName); rethrow; @@ -390,13 +408,14 @@ mixin Latin1TextFile implements TextFile { if (isUTF8) { throw '$fullName contains valid UTF-8 and is probably not actually encoded as Win1252'; } - return latin1.decode(bytes); + return _normalize(latin1.decode(bytes)); }); } } // interface abstract class Directory extends IoNode { + // lists children (shallow walk, not deep walk) Iterable get walk; } @@ -488,7 +507,7 @@ class FileSystemDirectory extends IoNode implements Directory { String get fullName => _directory.path; List _readBytes(io.File file) { - return cache/*List*/(BytesOf(file), () => file.readAsBytesSync()); + return cache(BytesOf(file), () => file.readAsBytesSync()); } @override @@ -512,7 +531,7 @@ class FileSystemDirectory extends IoNode implements Directory { case FileType.bzip2: yield FileSystemBZip2File(fileEntity); break; case FileType.text: yield FileSystemUTF8TextFile(fileEntity); break; case FileType.latin1Text: yield FileSystemLatin1TextFile(fileEntity); break; - case FileType.metadata: break; // ignore this file + case FileType.notPartOfBuild: break; // ignore this file } } } @@ -550,27 +569,27 @@ class FileSystemFile extends IoNode implements File { } class FileSystemUTF8TextFile extends FileSystemFile with UTF8TextFile { - FileSystemUTF8TextFile(io.File file) : super(file); + FileSystemUTF8TextFile(super.file); } class FileSystemLatin1TextFile extends FileSystemFile with Latin1TextFile { - FileSystemLatin1TextFile(io.File file) : super(file); + FileSystemLatin1TextFile(super.file); } class FileSystemZipFile extends FileSystemFile with ZipFile { - FileSystemZipFile(io.File file) : super(file); + FileSystemZipFile(super.file); } class FileSystemTarFile extends FileSystemFile with TarFile { - FileSystemTarFile(io.File file) : super(file); + FileSystemTarFile(super.file); } class FileSystemGZipFile extends FileSystemFile with GZipFile { - FileSystemGZipFile(io.File file) : super(file); + FileSystemGZipFile(super.file); } class FileSystemBZip2File extends FileSystemFile with BZip2File { - FileSystemBZip2File(io.File file) : super(file); + FileSystemBZip2File(super.file); } @@ -606,7 +625,7 @@ class ArchiveDirectory extends IoNode implements Directory { case FileType.bzip2: _files.add(ArchiveBZip2File(entryFullName, entry)); break; case FileType.text: _files.add(ArchiveUTF8TextFile(entryFullName, entry)); break; case FileType.latin1Text: _files.add(ArchiveLatin1TextFile(entryFullName, entry)); break; - case FileType.metadata: break; // ignore this file + case FileType.notPartOfBuild: break; // ignore this file } } } @@ -647,27 +666,27 @@ class ArchiveFile extends IoNode implements File { } class ArchiveUTF8TextFile extends ArchiveFile with UTF8TextFile { - ArchiveUTF8TextFile(String fullName, a.ArchiveFile file) : super(fullName, file); + ArchiveUTF8TextFile(super.fullName, super.file); } class ArchiveLatin1TextFile extends ArchiveFile with Latin1TextFile { - ArchiveLatin1TextFile(String fullName, a.ArchiveFile file) : super(fullName, file); + ArchiveLatin1TextFile(super.fullName, super.file); } class ArchiveZipFile extends ArchiveFile with ZipFile { - ArchiveZipFile(String fullName, a.ArchiveFile file) : super(fullName, file); + ArchiveZipFile(super.fullName, super.file); } class ArchiveTarFile extends ArchiveFile with TarFile { - ArchiveTarFile(String fullName, a.ArchiveFile file) : super(fullName, file); + ArchiveTarFile(super.fullName, super.file); } class ArchiveGZipFile extends ArchiveFile with GZipFile { - ArchiveGZipFile(String fullName, a.ArchiveFile file) : super(fullName, file); + ArchiveGZipFile(super.fullName, super.file); } class ArchiveBZip2File extends ArchiveFile with BZip2File { - ArchiveBZip2File(String fullName, a.ArchiveFile file) : super(fullName, file); + ArchiveBZip2File(super.fullName, super.file); } @@ -688,7 +707,7 @@ class InMemoryFile extends IoNode implements File { case FileType.bzip2: return InMemoryBZip2File(fullName, bytes); case FileType.text: return InMemoryUTF8TextFile(fullName, bytes); case FileType.latin1Text: return InMemoryLatin1TextFile(fullName, bytes); - case FileType.metadata: break; // ignore this file + case FileType.notPartOfBuild: break; // ignore this file } assert(false); return null; @@ -707,25 +726,25 @@ class InMemoryFile extends IoNode implements File { } class InMemoryUTF8TextFile extends InMemoryFile with UTF8TextFile { - InMemoryUTF8TextFile(String fullName, List file) : super(fullName, file); + InMemoryUTF8TextFile(super.fullName, super.file); } class InMemoryLatin1TextFile extends InMemoryFile with Latin1TextFile { - InMemoryLatin1TextFile(String fullName, List file) : super(fullName, file); + InMemoryLatin1TextFile(super.fullName, super.file); } class InMemoryZipFile extends InMemoryFile with ZipFile { - InMemoryZipFile(String fullName, List file) : super(fullName, file); + InMemoryZipFile(super.fullName, super.file); } class InMemoryTarFile extends InMemoryFile with TarFile { - InMemoryTarFile(String fullName, List file) : super(fullName, file); + InMemoryTarFile(super.fullName, super.file); } class InMemoryGZipFile extends InMemoryFile with GZipFile { - InMemoryGZipFile(String fullName, List file) : super(fullName, file); + InMemoryGZipFile(super.fullName, super.file); } class InMemoryBZip2File extends InMemoryFile with BZip2File { - InMemoryBZip2File(String fullName, List file) : super(fullName, file); + InMemoryBZip2File(super.fullName, super.file); } diff --git a/tools/licenses/lib/formatter.dart b/tools/licenses/lib/formatter.dart new file mode 100644 index 0000000000000..152755b450ca5 --- /dev/null +++ b/tools/licenses/lib/formatter.dart @@ -0,0 +1,198 @@ +// Copyright 2013 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +import 'dart:core' hide RegExp; + +import 'patterns.dart'; + +void _stripFullLines(List lines) { + // Strip full-line decorations, e.g. horizontal lines, and trailing whitespace. + for (int index = 0; index < lines.length; index += 1) { + lines[index] = lines[index].trimRight(); + if (fullDecorations.matchAsPrefix(lines[index]) != null) { + if (index == 0 || lines[index].length != lines[index - 1].length) { + // (we leave the decorations if it's just underlining the previous line) + lines[index] = ''; + } + } + } + // Remove leading and trailing blank lines + while (lines.isNotEmpty && lines.first == '') { + lines.removeAt(0); + } + while (lines.isNotEmpty && lines.last == '') { + lines.removeLast(); + } +} + +bool _stripIndentation(List lines) { + // Try stripping leading indentation. + String? prefix; + bool removeTrailingBlockEnd = false; + if (lines.first.startsWith('/*') && lines.last.startsWith(' *')) { + // In addition to the leadingDecorations, we also support one specific + // kind of multiline decoration, the /*...*/ block comment. + prefix = ' *'; + removeTrailingBlockEnd = true; + } else { + prefix = leadingDecorations.matchAsPrefix(lines.first)?.group(0); + } + if (prefix != null && lines.skip(1).every((String line) => line.startsWith(prefix!) || prefix.startsWith(line))) { + final int prefixLength = prefix.length; + for (int index = 0; index < lines.length; index += 1) { + final String line = lines[index]; + if (line.length > prefixLength) { + lines[index] = line.substring(prefixLength); + } else { + lines[index] = ''; + } + } + if (removeTrailingBlockEnd) { + if (lines.last == '/') { + // This removes the line with the trailing "*/" when we had a "/*" at the top. + lines.removeLast(); + } + } + return true; + } + return false; +} + +bool _unindentLeadingParagraphs(List lines) { + // Try removing leading spaces + // (we know that this loop terminates before the end of the block because + // otherwise the previous section would have stripped a common prefix across + // the entire block) + // + // For example, this will change: + // + // foo + // bar + // + // ...into: + // + // foo + // bar + // + assert(' '.startsWith(leadingDecorations)); + if (lines.first.startsWith(' ')) { + int lineCount = 0; + String line = lines.first; + int leadingBlockIndent = line.length; // arbitrarily big number + do { + int indentWidth = 1; + while (indentWidth < line.length && line[indentWidth] == ' ') { + indentWidth += 1; + } + if (indentWidth < leadingBlockIndent) { + leadingBlockIndent = indentWidth; + } + lineCount += 1; + assert(lineCount < lines.length); + line = lines[lineCount]; + } while (line.startsWith(' ')); + assert(leadingBlockIndent > 0); + for (int index = 0; index < lineCount; index += 1) { + lines[index] = lines[index].substring(leadingBlockIndent, lines[index].length); + } + return true; + } + return false; +} + +bool _minorRemovals(List lines) { + bool didEdits = false; + // Try removing stray leading spaces (but only one space). + for (int index = 0; index < lines.length; index += 1) { + if (lines[index].startsWith(' ') && !lines[index].startsWith(' ')) { + lines[index] = lines[index].substring(1, lines[index].length); + didEdits = true; + } + } + // Try stripping HTML leading and trailing block () comment markers. + if (lines.first.contains('')) { + lines.first = lines[0].replaceFirst('', ''); + didEdits = true; + } + // Try stripping C-style leading block comment markers. + // We don't do this earlier because if it's a multiline block comment + // we want to be careful about stripping the trailing aligned "*/". + if (lines.first.startsWith('/*')) { + lines.first = lines.first.substring(2, lines.first.length); + didEdits = true; + } + // Try stripping trailing decorations (specifically, stray "*/"s). + for (int index = 0; index < lines.length; index += 1) { + if (lines[index].endsWith('*/')) { + lines[index] = lines[index].substring(0, lines[index].length - 2); + didEdits = true; + } + } + return didEdits; +} + +/// This function takes a block of text potentially decorated with leading +/// prefix indents, horizontal lines, C-style comment blocks, blank lines, etc, +/// and removes all such incidental material leaving only the significant text. +String reformat(String body) { + final List lines = body.split('\n'); + while (true) { + // The order of the following checks is important. If any test changes + // something that could affect an earlier test, then we should "continue" back + // to the top of the loop. + _stripFullLines(lines); + if (lines.isEmpty) { + // We've stripped everything, give up. + return ''; + } + if (_stripIndentation(lines)) { + continue; // Go back to top since we may have more blank lines to strip now. + } + if (_unindentLeadingParagraphs(lines)) { + continue; // Go back to the top since we may have more indentation to strip now. + } + if (_minorRemovals(lines)) { + continue; // Go back to the top since we may have new stuff to strip. + } + // If we get here, we could not find anything else to do to the text to clean it up. + break; + } + return lines.join('\n'); +} + +String stripAsciiArt(String input) { + // Look for images so that we can remove them. + final List lines = input.split('\n'); + for (final List image in asciiArtImages) { + assert(image.isNotEmpty); + // Look for the image starting on each line. + search: for (int index = 0; index < lines.length - image.length; index += 1) { + final int x = lines[index].indexOf(image[0]); + if (x >= 0) { + int width = image[0].length; + // Found the first line, check to see if we have a complete image. + for (int imageLine = 1; imageLine < image.length; imageLine += 1) { + if (lines[index + imageLine].indexOf(image[imageLine]) != x) { + continue search; // Not a complete image. + } + if (image[imageLine].length > width) { + width = image[imageLine].length; + } + } + // Now remove the image. + for (int imageLine = 0; imageLine < image.length; imageLine += 1) { + final String text = lines[index + imageLine]; + assert(text.length > x); + if (text.length >= x + width) { + lines[index + imageLine] = text.substring(0, x) + text.substring(x + width, text.length); + } else { + lines[index + imageLine] = text.substring(0, x); + } + } + } + } + } + return lines.join('\n'); +} diff --git a/tools/licenses/lib/licenses.dart b/tools/licenses/lib/licenses.dart index 34440e4426ba6..2246675e482cb 100644 --- a/tools/licenses/lib/licenses.dart +++ b/tools/licenses/lib/licenses.dart @@ -3,77 +3,111 @@ // found in the LICENSE file. import 'dart:convert'; +import 'dart:core' hide RegExp; import 'dart:io' as system; import 'cache.dart'; +import 'formatter.dart'; import 'limits.dart'; import 'patterns.dart'; - -class FetchedContentsOf extends Key { FetchedContentsOf(dynamic value) : super(value); } - -enum LicenseType { unknown, bsd, gpl, lgpl, mpl, afl, mit, freetype, apache, apacheNotice, eclipse, ijg, zlib, icu, apsl, libpng, openssl, vulkan, bison } +import 'regexp_debug.dart'; + +class FetchedContentsOf extends Key { FetchedContentsOf(super.value); } + +enum LicenseType { + afl, + apache, + apacheNotice, + apsl, + bison, + bsd, + eclipse, + freetype, + gpl, + icu, + defaultTemplate, // metatype: a license that applies to a file without an internal license; only used when searching for a license + ietf, + ijg, + lgpl, + libpng, + llvm, + mit, + mpl, + openssl, + unicode, + unknown, + vulkan, + zlib, +} LicenseType convertLicenseNameToType(String? name) { - switch (name?.toLowerCase()) { - case 'apache': - case 'apache-license-2.0': - case 'license-apache-2.0.txt': - case 'apache-2.0.txt': - case 'license.vulkan': + switch (name) { + case 'Apache': + case 'Apache-2.0.txt': + case 'LICENSE-APACHE-2.0.txt': + case 'LICENSE.vulkan': + case 'APACHE-LICENSE-2.0': return LicenseType.apache; - case 'bsd': - case 'bsd.txt': - case 'bsd-3-clause.txt': + case 'BSD': + case 'BSD-3-Clause.txt': + case 'BSD.txt': return LicenseType.bsd; - case 'license-lgpl-2': - case 'license-lgpl-2.1': - case 'copying-lgpl-2.1': + case 'COPYING-LGPL-2.1': + case 'LICENSE-LGPL-2': + case 'LICENSE-LGPL-2.1': return LicenseType.lgpl; - case 'copying-gpl-3': - case 'gpl-3.0-only.txt': + case 'COPYING-GPL-3': + case 'GPL-3.0-only.txt': + case 'GPLv2.TXT': return LicenseType.gpl; - case 'ftl.txt': + case 'FTL.TXT': return LicenseType.freetype; case 'zlib.h': return LicenseType.zlib; case 'png.h': return LicenseType.libpng; - case 'icu': + case 'ICU': return LicenseType.icu; - case 'apple public source license': + case 'Apple Public Source License': return LicenseType.apsl; - case 'openssl': + case 'OpenSSL': return LicenseType.openssl; - case 'license.mplv2': - case 'copying-mpl-1.1': + case 'COPYING-MPL-1.1': + case 'LICENSE.MPLv2': + case 'http://mozilla.org/MPL/2.0/': return LicenseType.mpl; - case 'copyright.vulkan': + case 'COPYRIGHT.vulkan': return LicenseType.vulkan; - case 'license.mit': - case 'mit.txt': + case 'LICENSE.MIT': + case 'MIT': + case 'MIT.txt': return LicenseType.mit; - // common file names that don't say what the type is - case 'copying': - case 'copying.txt': - case 'copying.lib': // lgpl usually - case 'copying.runtime': // gcc exception usually - case 'license': - case 'license.md': - case 'license.html': - case 'license.txt': - case 'license.cssmin': - case 'notice': - case 'notice.txt': + // file names that don't say what the type is + case 'COPYING': + case 'COPYING.LIB': // lgpl usually + case 'COPYING.RUNTIME': // gcc exception usually + case 'COPYING.txt': + case 'COPYRIGHT.musl': + case 'Copyright': + case 'LICENSE': + case 'LICENSE-APPLE': + case 'LICENSE.TXT': + case 'LICENSE.cssmin': + case 'LICENSE.md': + case 'LICENSE.rst': + case 'LICENSE.txt': + case 'License.txt': + case 'NOTICE': + case 'NOTICE.txt': case 'copyright': - return LicenseType.unknown; - // particularly weird file names - case 'copyright.musl': - case 'license-apple': + case 'extreme.indiana.edu.license.TXT': case 'extreme.indiana.edu.license.txt': + case 'javolution.license.TXT': case 'javolution.license.txt': case 'libyaml-license.txt': + case 'license.html': case 'license.patch': - case 'license.rst': + case 'license.txt': case 'mh-bsd-gcc': case 'pivotal.labs.license.txt': return LicenseType.unknown; @@ -82,6 +116,9 @@ LicenseType convertLicenseNameToType(String? name) { } LicenseType convertBodyToType(String body) { + if (body.startsWith(lrApache) && body.contains(lrLLVM)) { + return LicenseType.llvm; + } if (body.startsWith(lrApache)) { return LicenseType.apache; } @@ -115,22 +152,92 @@ LicenseType convertBodyToType(String body) { return LicenseType.unknown; } +// API exposed by the classes in main.dart abstract class LicenseSource { + String get name; + String get libraryName; + String get officialSourceLocation; List? nearestLicensesFor(String name); License? nearestLicenseOfType(LicenseType type); License? nearestLicenseWithName(String name, { String? authors }); } -abstract class License implements Comparable { +// Represents a license/file pairing, with metadata saying where the license came from. +class Assignment { + const Assignment(this.license, this.target, this.source); + final License license; + final String target; + final LicenseSource source; +} + +// Represents a group of files assigned to the same license, so that we can avoid +// duplicating licenses in the output. +class GroupedLicense { + GroupedLicense(this.type, this.body); + final LicenseType type; + final String body; + + // The names of files to which this license applies. + final Set targets = {}; + + // The libraries from which those files originate. + final Set libraries = {}; + + // How we determined the license applied to these files. + final Set origins = {}; + + String toStringDebug() { + final StringBuffer result = StringBuffer(); + result.writeln('=' * 100); + (libraries.map((String s) => 'LIBRARY: $s').toList()..sort()).forEach(result.writeln); + (origins.map((String s) => 'ORIGIN: $s').toList()..sort()).forEach(result.writeln); + result.writeln('TYPE: $type'); + (targets.map((String s) => 'FILE: $s').toList()..sort()).forEach(result.writeln); + result.writeln('-' * 100); + if (body.isEmpty) { + result.writeln(''); + } else { + result.writeln(body); + } + result.writeln('=' * 100); + return result.toString(); + } + + String toStringFormal() { + final StringBuffer result = StringBuffer(); + (libraries.toList()..sort()).forEach(result.writeln); + result.writeln(); + assert(body.isNotEmpty); + result.write(body); + return result.toString(); + } +} + +List groupLicenses(Iterable assignments) { + final Map groups = {}; + for (final Assignment assignment in assignments) { + final String body = assignment.license.toStringBody(assignment.source); + final GroupedLicense entry = groups.putIfAbsent(body, () => GroupedLicense(assignment.license.type, body)); + entry.targets.add(assignment.target); + entry.libraries.add(assignment.source.libraryName); + entry.origins.add(assignment.license.origin); + } + final List results = groups.values.toList(); + results.sort((GroupedLicense a, GroupedLicense b) => a.body.compareTo(b.body)); + return results; +} + +abstract class License { factory License.unique(String body, LicenseType type, { bool reformatted = false, - String? origin, + required String origin, + String? authors, bool yesWeKnowWhatItLooksLikeButItIsNot = false }) { if (!reformatted) { - body = _reformat(body); + body = reformat(body); } - final License result = _registry.putIfAbsent(body, () => UniqueLicense._(body, type, origin: origin, yesWeKnowWhatItLooksLikeButItIsNot: yesWeKnowWhatItLooksLikeButItIsNot)); + final License result = UniqueLicense._(body, type, origin: origin, yesWeKnowWhatItLooksLikeButItIsNot: yesWeKnowWhatItLooksLikeButItIsNot, authors: authors); assert(() { if (result is! UniqueLicense || result.type != type) { throw 'tried to add a UniqueLicense $type, but it was a duplicate of a ${result.runtimeType} ${result.type}'; @@ -142,12 +249,13 @@ abstract class License implements Comparable { factory License.template(String body, LicenseType type, { bool reformatted = false, - String? origin + required String origin, + String? authors, }) { if (!reformatted) { - body = _reformat(body); + body = reformat(body); } - final License result = _registry.putIfAbsent(body, () => TemplateLicense._(body, type, origin: origin)); + final License result = TemplateLicense._autosplit(body, type, origin: origin, authors: authors); assert(() { if (result is! TemplateLicense || result.type != type) { throw 'tried to add a TemplateLicense $type, but it was a duplicate of a ${result.runtimeType} ${result.type}'; @@ -157,14 +265,32 @@ abstract class License implements Comparable { return result; } + factory License.multiLicense(String body, LicenseType type, { + bool reformatted = false, + String? authors, + required String origin + }) { + if (!reformatted) { + body = reformat(body); + } + final License result = MultiLicense._(body, type, origin: origin, authors: authors); + assert(() { + if (result is! MultiLicense || result.type != type) { + throw 'tried to add a MultiLicense $type, but it was a duplicate of a ${result.runtimeType} ${result.type}'; + } + return true; + }()); + return result; + } + factory License.message(String body, LicenseType type, { bool reformatted = false, - String? origin + required String origin }) { if (!reformatted) { - body = _reformat(body); + body = reformat(body); } - final License result = _registry.putIfAbsent(body, () => MessageLicense._(body, type, origin: origin)); + final License result = MessageLicense._(body, type, origin: origin); assert(() { if (result is! MessageLicense || result.type != type) { throw 'tried to add a MessageLicense $type, but it was a duplicate of a ${result.runtimeType} ${result.type}'; @@ -174,8 +300,8 @@ abstract class License implements Comparable { return result; } - factory License.blank(String body, LicenseType type, { String? origin }) { - final License result = _registry.putIfAbsent(body, () => BlankLicense._(_reformat(body), type, origin: origin)); + factory License.blank(String body, LicenseType type, { required String origin }) { + final License result = BlankLicense._(reformat(body), type, origin: origin); assert(() { if (result is! BlankLicense || result.type != type) { throw 'tried to add a BlankLicense $type, but it was a duplicate of a ${result.runtimeType} ${result.type}'; @@ -185,93 +311,124 @@ abstract class License implements Comparable { return result; } - factory License.fromMultipleBlocks(List bodies, LicenseType type) { - final String body = bodies.map((String s) => _reformat(s)).join('\n\n'); - return _registry.putIfAbsent(body, () => UniqueLicense._(body, type)); + factory License.mozilla(String body, { required String origin }) { + body = reformat(body); + final License result = MozillaLicense._(body, LicenseType.mpl, origin: origin); + assert(() { + if (result is! MozillaLicense) { + throw 'tried to add a MozillaLicense, but it was a duplicate of a ${result.runtimeType} ${result.type}'; + } + return true; + }()); + return result; + } + + factory License.fromMultipleBlocks(List bodies, LicenseType type, { + String? authors, + required String origin, + bool yesWeKnowWhatItLooksLikeButItIsNot = false, + }) { + final String body = bodies.map((String s) => reformat(s)).join('\n\n'); + return MultiLicense._(body, type, authors: authors, origin: origin, yesWeKnowWhatItLooksLikeButItIsNot: yesWeKnowWhatItLooksLikeButItIsNot); } factory License.fromBodyAndType(String body, LicenseType type, { bool reformatted = false, - String? origin + required String origin }) { if (!reformatted) { - body = _reformat(body); + body = reformat(body); + } + final License result; + assert(type != null); + switch (type) { + case LicenseType.bsd: + case LicenseType.mit: + result = TemplateLicense._autosplit(body, type, origin: origin); + break; + case LicenseType.apache: + case LicenseType.freetype: + case LicenseType.ijg: + case LicenseType.ietf: + case LicenseType.libpng: + case LicenseType.llvm: // The LLVM license is an Apache variant + case LicenseType.unicode: + case LicenseType.unknown: + case LicenseType.vulkan: + case LicenseType.zlib: + result = MessageLicense._(body, type, origin: origin); + break; + case LicenseType.apacheNotice: + result = UniqueLicense._(body, type, origin: origin); + break; + case LicenseType.mpl: + result = MozillaLicense._(body, type, origin: origin); + break; + // The exception in the license of Bison allows redistributing larger + // works "under terms of your choice"; we choose terms that don't require + // any notice in the binary distribution. + case LicenseType.bison: + result = BlankLicense._(body, type, origin: origin); + break; + case LicenseType.icu: + case LicenseType.openssl: + throw 'Use License.fromMultipleBlocks rather than License.fromBodyAndType for the ICU and OpenSSL licenses.'; + case LicenseType.afl: + case LicenseType.apsl: + case LicenseType.eclipse: + case LicenseType.gpl: + case LicenseType.lgpl: + result = DisallowedLicense._(body, type, origin: origin); + break; + case LicenseType.defaultTemplate: + throw 'should not be creating a LicenseType.defaultTemplate license, it is not a real type'; } - final License result = _registry.putIfAbsent(body, () { - assert(type != null); - switch (type) { - case LicenseType.bsd: - case LicenseType.mit: - case LicenseType.zlib: - case LicenseType.icu: - return TemplateLicense._(body, type, origin: origin); - case LicenseType.unknown: - case LicenseType.apacheNotice: - return UniqueLicense._(body, type, origin: origin); - case LicenseType.afl: - case LicenseType.mpl: - case LicenseType.gpl: - case LicenseType.lgpl: - case LicenseType.freetype: - case LicenseType.apache: - case LicenseType.eclipse: - case LicenseType.ijg: - case LicenseType.apsl: - return MessageLicense._(body, type, origin: origin); - case LicenseType.vulkan: - case LicenseType.openssl: - return MultiLicense._(body, type, origin: origin); - case LicenseType.libpng: - return BlankLicense._(body, type, origin: origin); - // The exception in the license of Bison allows redistributing larger - // works "under terms of your choice"; we choose terms that don't require - // any notice in the binary distribution. - case LicenseType.bison: - return BlankLicense._(body, type, origin: origin); - } - }); assert(result.type == type); return result; } - factory License.fromBodyAndName(String body, String name, { String? origin }) { - body = _reformat(body); + factory License.fromBodyAndName(String body, String name, { required String origin }) { + body = reformat(body); LicenseType type = convertLicenseNameToType(name); if (type == LicenseType.unknown) { type = convertBodyToType(body); } - return License.fromBodyAndType(body, type, origin: origin); + return License.fromBodyAndType(body, type, reformatted: true, origin: origin); } - factory License.fromBody(String body, { String? origin }) { - body = _reformat(body); + factory License.fromBody(String body, { required String origin, bool reformatted = false }) { + if (!reformatted) { + body = reformat(body); + } final LicenseType type = convertBodyToType(body); return License.fromBodyAndType(body, type, reformatted: true, origin: origin); } - factory License.fromCopyrightAndLicense(String copyright, String? template, LicenseType type, { String? origin }) { - final String body = '$copyright\n\n$template'; - return _registry.putIfAbsent(body, () => TemplateLicense._(body, type, origin: origin)); + factory License.fromCopyrightAndLicense(String copyright, String template, LicenseType type, { required String origin }) { + copyright = reformat(copyright); + template = reformat(template); + return TemplateLicense._(copyright, template, type, origin: origin); } - factory License.fromUrl(String url, { String? origin }) { + factory License.fromIdentifyingReference(String identifyingReference, { required String referencer }) { String body; LicenseType type = LicenseType.unknown; - switch (url) { - case 'Apache:2.0': + switch (identifyingReference) { + case 'Apache-2.0 OR MIT': // SPDX ID case 'Apache-2.0': // SPDX ID + case 'Apache:2.0': case 'http://www.apache.org/licenses/LICENSE-2.0': case 'https://www.apache.org/licenses/LICENSE-2.0': - // If we start seeing more OR options, we can parse them out and write - // a generic utility to pick according so some ranking; for now just - // hard-code a choice for this option set. - case 'Apache-2.0 OR MIT': // SPDX ID + // If you're wondering why Abseil has what appears to be a duplicate copy of + // the Apache license, it's because of this: + // https://github.com/abseil/abseil-cpp/pull/270/files#r793181143 body = system.File('data/apache-license-2.0').readAsStringSync(); type = LicenseType.apache; break; case 'Apache-2.0 WITH LLVM-exception': // SPDX ID + case 'https://llvm.org/LICENSE.txt': body = system.File('data/apache-license-2.0-with-llvm-exception').readAsStringSync(); - type = LicenseType.apache; + type = LicenseType.llvm; break; case 'https://developers.google.com/open-source/licenses/bsd': body = system.File('data/google-bsd').readAsStringSync(); @@ -317,62 +474,81 @@ abstract class License implements Comparable { type = LicenseType.mpl; break; case 'MIT': // SPDX ID + case 'http://opensource->org/licenses/MIT': // i don't even case 'http://opensource.org/licenses/MIT': case 'https://opensource.org/licenses/MIT': - case 'http://opensource->org/licenses/MIT': // i don't even body = system.File('data/mit').readAsStringSync(); type = LicenseType.mit; break; case 'Unicode-DFS-2016': // SPDX ID - case 'https://www.unicode.org/copyright.html': + case 'http://unicode.org/copyright.html#Exhibit1': + case 'http://www.unicode.org/copyright.html#License': case 'http://www.unicode.org/copyright.html': + case 'http://www.unicode.org/terms_of_use.html': // redirects to copyright.html + case 'https://www.unicode.org/copyright.html': + case 'https://www.unicode.org/terms_of_use.html': // redirects to copyright.html body = system.File('data/unicode').readAsStringSync(); - type = LicenseType.icu; + type = LicenseType.unicode; + break; + case 'http://www.ietf.org/rfc/rfc3454.txt': + body = system.File('data/ietf').readAsStringSync(); + type = LicenseType.ietf; break; - default: throw 'unknown url $url'; + default: throw 'unknown identifyingReference $identifyingReference'; } - return _registry.putIfAbsent(body, () => License.fromBodyAndType(body, type, origin: origin)); + return License.fromBodyAndType(body, type, origin: '$identifyingReference referenced by $referencer'); } - License._(this.body, this.type, { - this.origin, + License._(String body, this.type, { + required this.origin, + String? authors, bool yesWeKnowWhatItLooksLikeButItIsNot = false - }) : authors = _readAuthors(body), - assert(_reformat(body) == body) { + }) : authors = authors ?? _readAuthors(body) { assert(() { try { switch (type) { - case LicenseType.bsd: - case LicenseType.mit: - case LicenseType.zlib: - case LicenseType.icu: - assert(this is TemplateLicense); - break; - case LicenseType.unknown: - assert(this is UniqueLicense || this is BlankLicense); - break; - case LicenseType.apacheNotice: - assert(this is UniqueLicense); - break; case LicenseType.afl: - case LicenseType.mpl: + case LicenseType.apsl: + case LicenseType.eclipse: case LicenseType.gpl: case LicenseType.lgpl: - case LicenseType.freetype: + // We do not want this kind of license in our build. + assert(this is DisallowedLicense); + break; case LicenseType.apache: - case LicenseType.eclipse: + case LicenseType.freetype: case LicenseType.ijg: - case LicenseType.apsl: + case LicenseType.ietf: + case LicenseType.libpng: + case LicenseType.llvm: + case LicenseType.unicode: + case LicenseType.vulkan: + case LicenseType.zlib: assert(this is MessageLicense); break; - case LicenseType.libpng: + case LicenseType.apacheNotice: + assert(this is UniqueLicense); + break; case LicenseType.bison: assert(this is BlankLicense); break; + case LicenseType.bsd: + case LicenseType.mit: + assert(this is TemplateLicense); + break; + case LicenseType.icu: case LicenseType.openssl: - case LicenseType.vulkan: assert(this is MultiLicense); break; + case LicenseType.mpl: + assert(this is MozillaLicense); + break; + case LicenseType.unknown: + assert(this is MessageLicense || this is UniqueLicense); + break; + case LicenseType.defaultTemplate: + assert(false, 'should not be creating LicenseType.defaultTemplate license'); + break; } } on AssertionError { throw 'incorrectly created a $runtimeType for a $type'; @@ -380,25 +556,18 @@ abstract class License implements Comparable { return true; }()); final LicenseType detectedType = convertBodyToType(body); - - // Fuchsia SDK Vulkan license is Apache 2.0 with some additional BSD-matching copyrights. - if (type == LicenseType.vulkan) { - yesWeKnowWhatItLooksLikeButItIsNot = true; + if (detectedType != LicenseType.unknown && detectedType != type && !yesWeKnowWhatItLooksLikeButItIsNot) { + throw 'Created a license of type $type but it looks like $detectedType:\n---------\n$body\n-----------'; + } + if (type != LicenseType.apache && type != LicenseType.llvm && type != LicenseType.vulkan && type != LicenseType.apacheNotice && body.contains('Apache')) { + throw 'Non-Apache license (type=$type, detectedType=$detectedType) contains the word "Apache"; maybe it\'s a notice?:\n---\n$body\n---'; } - if (detectedType != LicenseType.unknown && detectedType != type && !yesWeKnowWhatItLooksLikeButItIsNot) { throw 'Created a license of type $type but it looks like $detectedType.'; } - if (type != LicenseType.apache && type != LicenseType.apacheNotice) { - if (!yesWeKnowWhatItLooksLikeButItIsNot && body.contains('Apache')) { - throw 'Non-Apache license (type=$type, detectedType=$detectedType) contains the word "Apache"; maybe it\'s a notice?:\n---\n$body\n---'; - } - } if (body.contains(trailingColon)) { throw 'incomplete license detected:\n---\n$body\n---'; } - // if (type == LicenseType.unknown) - // print('need detector for:\n----\n$body\n----'); bool isUTF8 = true; late List latin1Encoded; try { @@ -424,51 +593,24 @@ abstract class License implements Comparable { } } - final String body; final String? authors; - final String? origin; + final String origin; final LicenseType type; - final Set _licensees = {}; - final Set _libraries = {}; - - bool get isUsed => _licensees.isNotEmpty; - - void markUsed(String filename, String libraryName) { - assert(filename != null); - assert(filename != ''); - assert(libraryName != null); - assert(libraryName != ''); - _licensees.add(filename); - _libraries.add(libraryName); + Assignment assignLicenses(String target, LicenseSource source) { + return Assignment(this, target, source); } - Iterable expandTemplate(String copyright, String licenseBody, { String? origin }); - - @override - int compareTo(License other) => toString().compareTo(other.toString()); - - @override - String toString() { - final List prefixes = _libraries.toList(); - prefixes.sort(); - final List licensees = _licensees.toList(); - licensees.sort(); - final List header = []; - header.addAll(prefixes.map((String s) => 'LIBRARY: $s')); - header.add('ORIGIN: $origin'); - header.add('TYPE: $type'); - header.addAll(licensees.map((String s) => 'FILE: $s')); - return '${'=' * 100}\n${header.join('\n')}\n${'-' * 100}\n${toStringBody()}\n${'=' * 100}'; - } + // This takes a second license, which has been pre-split into copyright and + // licenseBody, and uses this license to expand it into a new license. How + // this works depends on this license; for example BSD licenses typically take + // their body and put on the given copyright, (and the licenseBody argument + // here in those cases is usually a reference to that license); some other + // licenses turn into two, one for the original license and one for this + // copyright/body pair. + Iterable _expandTemplate(String copyright, String licenseBody, { required String origin }); - String toStringBody() => body; - - String? toStringFormal() { - final List prefixes = _libraries.toList(); - prefixes.sort(); - return '${prefixes.join('\n')}\n\n$body'; - } + String toStringBody(LicenseSource source); static final RegExp _copyrightForAuthors = RegExp( r'Copyright [-0-9 ,(cC)©]+\b(The .+ Authors)\.', @@ -481,75 +623,13 @@ abstract class License implements Comparable { return null; } if (matches.length > 1) { - throw 'found too many authors for this copyright:\n$body'; + throw 'found too many authors for this copyright:\n$body\n\n${StackTrace.current}\n\n'; } return matches[0].group(1); } -} - - -final Map _registry = {}; - -void clearLicenseRegistry() { - _registry.clear(); -} -final License missingLicense = UniqueLicense._('', LicenseType.unknown); - -String _reformat(String body) { - // TODO(ianh): ensure that we're stripping the same amount of leading text on each line - final List lines = body.split('\n'); - while (lines.isNotEmpty && lines.first == '') { - lines.removeAt(0); - } - while (lines.isNotEmpty && lines.last == '') { - lines.removeLast(); - } - if (lines.length > 2) { - if (lines[0].startsWith(beginLicenseBlock) && lines.last.startsWith(endLicenseBlock)) { - lines.removeAt(0); - lines.removeLast(); - } - } else if (lines.isEmpty) { - return ''; - } - final List output = []; - int? lastGood; - String? previousPrefix; - bool lastWasEmpty = true; - for (final String line in lines) { - final Match match = stripDecorations.firstMatch(line)!; - final String? prefix = match.group(1); - String? s = match.group(2); - if (!lastWasEmpty || s != '') { - if (s != '') { - if (previousPrefix != null) { - if (previousPrefix.length > prefix!.length) { - // TODO(ianh): Spot check files that hit this. At least one just - // has a corrupt license block, which is why this is commented out. - //if (previousPrefix.substring(prefix.length).contains(nonSpace)) - // throw 'inconsistent line prefix: was "$previousPrefix", now "$prefix"\nfull body was:\n---8<---\n$body\n---8<---'; - previousPrefix = prefix; - } else if (previousPrefix.length < prefix.length) { - s = '${prefix.substring(previousPrefix.length)}$s'; - } - } else { - previousPrefix = prefix; - } - lastWasEmpty = false; - lastGood = output.length + 1; - } else { - lastWasEmpty = true; - } - output.add(s); - } - } - if (lastGood == null) { - print('_reformatted to nothing:\n----\n|${body.split("\n").join("|\n|")}|\n----'); - assert(lastGood != null); - throw 'reformatted to nothing:\n$body'; - } - return output.take(lastGood).join('\n'); + @override + String toString() => '$runtimeType ($type) from $origin'; } class _LineRange { @@ -613,6 +693,7 @@ _SplitLicense _splitLicense(String body, { bool verifyResults = true }) { throw 'tried to split empty license'; } int end = 0; + String endReason; while (true) { final String line = lines.current.value; if (line == 'Author:' || @@ -626,6 +707,7 @@ _SplitLicense _splitLicense(String body, { bool verifyResults = true }) { } end = lines.current.end; if (!lines.moveNext()) { + endReason = 'ran out of text after author'; break; } } else if (line.startsWith('Authors:') || line == 'Other contributors:') { @@ -638,8 +720,7 @@ _SplitLicense _splitLicense(String body, { bool verifyResults = true }) { } final String firstAuthor = lines.current.value; int subindex = 0; - while (subindex < firstAuthor.length && (firstAuthor[subindex] == ' ' || - firstAuthor[subindex] == '\t')) { + while (subindex < firstAuthor.length && (firstAuthor[subindex] == ' ')) { subindex += 1; } if (subindex == 0 || subindex > firstAuthor.length) { @@ -650,12 +731,13 @@ _SplitLicense _splitLicense(String body, { bool verifyResults = true }) { bool hadMoreLines; while ((hadMoreLines = lines.moveNext()) && lines.current.value.startsWith(prefix)) { final String nextAuthor = lines.current.value.substring(prefix.length); - if (nextAuthor == '' || nextAuthor[0] == ' ' || nextAuthor[0] == '\t') { + if (nextAuthor == '' || nextAuthor[0] == ' ') { throw 'unexpectedly ragged author list when looking for copyright'; } end = lines.current.end; } if (!hadMoreLines) { + endReason = 'ran out of text while collecting authors'; break; } } else if (line.contains(halfCopyrightPattern)) { @@ -669,25 +751,28 @@ _SplitLicense _splitLicense(String body, { bool verifyResults = true }) { end = lines.current.end; } while (lines.current.value.contains(trailingComma)); if (!lines.moveNext()) { + endReason = 'ran out of text after matching halfCopyrightPattern/trailingComma sequence'; break; } - } else if (copyrightStatementPatterns.every((RegExp pattern) => !line.contains(pattern))) { - break; - } else { + } else if (copyrightStatementPatterns.any(line.contains)) { end = lines.current.end; if (!lines.moveNext()) { + endReason = 'ran out of text after copyright statement pattern'; break; } + } else { + endReason = 'line did not match any copyright patterns ("$line")'; + break; } } if (verifyResults && 'Copyright ('.allMatches(body, end).isNotEmpty && !body.startsWith('If you modify libpng')) { - throw 'the license seems to contain a copyright:\n===copyright===\n${body.substring(0, end)}\n===license===\n${body.substring(end)}\n========='; + throw 'the license seems to contain a copyright:\n===copyright===\n${body.substring(0, end)}\n===license===\n${body.substring(end)}\n=========\ntermination reason: $endReason'; } return _SplitLicense(body, end); } class _PartialLicenseMatch { - _PartialLicenseMatch(this._body, this.start, this.split, this.end, this._match, { this.hasCopyrights }) : assert(split >= start), + _PartialLicenseMatch(this._body, this.start, this.split, this.end, this._match, { required this.hasCopyrights }) : assert(split >= start), assert(split == start || _body[split] == '\n'); final String _body; @@ -706,19 +791,20 @@ class _PartialLicenseMatch { String getCopyrights() => _body.substring(start, split); String getConditions() => _body.substring(split + 1, end); String getEntireLicense() => _body.substring(start, end); - final bool? hasCopyrights; + final bool hasCopyrights; } -Iterable<_PartialLicenseMatch> _findLicenseBlocks(String body, RegExp pattern, int? firstPrefixIndex, int? indentPrefixIndex, { bool needsCopyright = true }) sync* { +// Look for all matches of `pattern` in `body` and return them along with associated copyrights. +Iterable<_PartialLicenseMatch> _findLicenseBlocks(String body, RegExp pattern, int firstPrefixIndex, int indentPrefixIndex, { bool needsCopyright = true }) sync* { // I tried doing this with one big RegExp initially, but that way lay madness. for (final Match match in pattern.allMatches(body)) { - assert(match.groupCount >= firstPrefixIndex!); - assert(match.groupCount >= indentPrefixIndex!); + assert(match.groupCount >= firstPrefixIndex); + assert(match.groupCount >= indentPrefixIndex); int start = match.start; - final String fullPrefix = '${match.group(firstPrefixIndex!)}${match.group(indentPrefixIndex!)}'; + final String fullPrefix = '${match.group(firstPrefixIndex)}${match.group(indentPrefixIndex)}'; // first we walk back to the start of the block that has the same prefix (e.g. // the start of this comment block) - bool firstLineSpecialComment = false; + int firstLineOffset = 0; bool lastWasBlank = false; bool foundNonBlank = false; for (final _LineRange range in _walkLinesBackwards(body, start)) { @@ -735,16 +821,18 @@ Iterable<_PartialLicenseMatch> _findLicenseBlocks(String body, RegExp pattern, i isBlockCommentLine = false; } if (line.isEmpty || fullPrefix.startsWith(line)) { - // this is blank line + // this is a blank line if (lastWasBlank && (foundNonBlank || !needsCopyright)) { break; } lastWasBlank = true; - } else if ((!isBlockCommentLine && line.startsWith('/*')) - || line.startsWith('