├── .bazelrc ├── .bazelversion ├── .dockerignore ├── .gitignore ├── BUILD.bazel ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── WORKSPACE ├── WORKSPACE_LOCAL ├── WORKSPACE_NET ├── build_desktop_examples.sh ├── docs ├── compile_a311d.md ├── compile_jetson.md ├── compile_x86.md ├── example_a311d.md ├── example_jetson.md ├── example_x86.md ├── inferpipe.png ├── retina_result.jpg ├── tengine_compile_linux.md ├── tengine_compile_timvx.md └── yolov5s_result.jpg ├── examples ├── PersonDemo │ ├── CMakeLists.txt │ ├── classification_tengine.pbtxt │ ├── com_google_absl │ │ ├── .clang-format │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE │ │ │ │ ├── 00-bug_report.md │ │ │ │ ├── 90-question.md │ │ │ │ └── config.yml │ │ ├── .gitignore │ │ ├── ABSEIL_ISSUE_TEMPLATE.md │ │ ├── AUTHORS │ │ ├── BUILD.bazel │ │ ├── CMake │ │ │ ├── AbseilDll.cmake │ │ │ ├── AbseilHelpers.cmake │ │ │ ├── AbseilInstallDirs.cmake │ │ │ ├── Googletest │ │ │ │ ├── CMakeLists.txt.in │ │ │ │ └── DownloadGTest.cmake │ │ │ ├── README.md │ │ │ ├── abslConfig.cmake.in │ │ │ └── install_test_project │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── simple.cc │ │ │ │ └── test.sh │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE │ │ ├── LTS.md │ │ ├── README.md │ │ ├── UPGRADES.md │ │ ├── WORKSPACE │ │ ├── absl │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── abseil.podspec.gen.py │ │ │ ├── algorithm │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── algorithm.h │ │ │ │ ├── algorithm_test.cc │ │ │ │ ├── container.h │ │ │ │ ├── container_test.cc │ │ │ │ └── equal_benchmark.cc │ │ │ ├── base │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── attributes.h │ │ │ │ ├── bit_cast_test.cc │ │ │ │ ├── call_once.h │ │ │ │ ├── call_once_test.cc │ │ │ │ ├── casts.h │ │ │ │ ├── config.h │ │ │ │ ├── config_test.cc │ │ │ │ ├── const_init.h │ │ │ │ ├── dynamic_annotations.h │ │ │ │ ├── exception_safety_testing_test.cc │ │ │ │ ├── inline_variable_test.cc │ │ │ │ ├── inline_variable_test_a.cc │ │ │ │ ├── inline_variable_test_b.cc │ │ │ │ ├── internal │ │ │ │ │ ├── atomic_hook.h │ │ │ │ │ ├── atomic_hook_test.cc │ │ │ │ │ ├── atomic_hook_test_helper.cc │ │ │ │ │ ├── atomic_hook_test_helper.h │ │ │ │ │ ├── bits.h │ │ │ │ │ ├── bits_test.cc │ │ │ │ │ ├── cmake_thread_test.cc │ │ │ │ │ ├── cycleclock.cc │ │ │ │ │ ├── cycleclock.h │ │ │ │ │ ├── direct_mmap.h │ │ │ │ │ ├── dynamic_annotations.h │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── endian_test.cc │ │ │ │ │ ├── errno_saver.h │ │ │ │ │ ├── errno_saver_test.cc │ │ │ │ │ ├── exception_safety_testing.cc │ │ │ │ │ ├── exception_safety_testing.h │ │ │ │ │ ├── exception_testing.h │ │ │ │ │ ├── exponential_biased.cc │ │ │ │ │ ├── exponential_biased.h │ │ │ │ │ ├── exponential_biased_test.cc │ │ │ │ │ ├── fast_type_id.h │ │ │ │ │ ├── fast_type_id_test.cc │ │ │ │ │ ├── hide_ptr.h │ │ │ │ │ ├── identity.h │ │ │ │ │ ├── inline_variable.h │ │ │ │ │ ├── inline_variable_testing.h │ │ │ │ │ ├── invoke.h │ │ │ │ │ ├── low_level_alloc.cc │ │ │ │ │ ├── low_level_alloc.h │ │ │ │ │ ├── low_level_alloc_test.cc │ │ │ │ │ ├── low_level_scheduling.h │ │ │ │ │ ├── per_thread_tls.h │ │ │ │ │ ├── periodic_sampler.cc │ │ │ │ │ ├── periodic_sampler.h │ │ │ │ │ ├── periodic_sampler_benchmark.cc │ │ │ │ │ ├── periodic_sampler_test.cc │ │ │ │ │ ├── pretty_function.h │ │ │ │ │ ├── raw_logging.cc │ │ │ │ │ ├── raw_logging.h │ │ │ │ │ ├── scheduling_mode.h │ │ │ │ │ ├── scoped_set_env.cc │ │ │ │ │ ├── scoped_set_env.h │ │ │ │ │ ├── scoped_set_env_test.cc │ │ │ │ │ ├── spinlock.cc │ │ │ │ │ ├── spinlock.h │ │ │ │ │ ├── spinlock_akaros.inc │ │ │ │ │ ├── spinlock_benchmark.cc │ │ │ │ │ ├── spinlock_linux.inc │ │ │ │ │ ├── spinlock_posix.inc │ │ │ │ │ ├── spinlock_wait.cc │ │ │ │ │ ├── spinlock_wait.h │ │ │ │ │ ├── spinlock_win32.inc │ │ │ │ │ ├── strerror.cc │ │ │ │ │ ├── strerror.h │ │ │ │ │ ├── strerror_benchmark.cc │ │ │ │ │ ├── strerror_test.cc │ │ │ │ │ ├── sysinfo.cc │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ ├── sysinfo_test.cc │ │ │ │ │ ├── thread_annotations.h │ │ │ │ │ ├── thread_identity.cc │ │ │ │ │ ├── thread_identity.h │ │ │ │ │ ├── thread_identity_benchmark.cc │ │ │ │ │ ├── thread_identity_test.cc │ │ │ │ │ ├── throw_delegate.cc │ │ │ │ │ ├── throw_delegate.h │ │ │ │ │ ├── tsan_mutex_interface.h │ │ │ │ │ ├── unaligned_access.h │ │ │ │ │ ├── unique_small_name_test.cc │ │ │ │ │ ├── unscaledcycleclock.cc │ │ │ │ │ └── unscaledcycleclock.h │ │ │ │ ├── invoke_test.cc │ │ │ │ ├── log_severity.cc │ │ │ │ ├── log_severity.h │ │ │ │ ├── log_severity_test.cc │ │ │ │ ├── macros.h │ │ │ │ ├── optimization.h │ │ │ │ ├── optimization_test.cc │ │ │ │ ├── options.h │ │ │ │ ├── policy_checks.h │ │ │ │ ├── port.h │ │ │ │ ├── raw_logging_test.cc │ │ │ │ ├── spinlock_test_common.cc │ │ │ │ ├── thread_annotations.h │ │ │ │ └── throw_delegate_test.cc │ │ │ ├── compiler_config_setting.bzl │ │ │ ├── container │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btree_benchmark.cc │ │ │ │ ├── btree_map.h │ │ │ │ ├── btree_set.h │ │ │ │ ├── btree_test.cc │ │ │ │ ├── btree_test.h │ │ │ │ ├── fixed_array.h │ │ │ │ ├── fixed_array_benchmark.cc │ │ │ │ ├── fixed_array_exception_safety_test.cc │ │ │ │ ├── fixed_array_test.cc │ │ │ │ ├── flat_hash_map.h │ │ │ │ ├── flat_hash_map_test.cc │ │ │ │ ├── flat_hash_set.h │ │ │ │ ├── flat_hash_set_test.cc │ │ │ │ ├── inlined_vector.h │ │ │ │ ├── inlined_vector_benchmark.cc │ │ │ │ ├── inlined_vector_exception_safety_test.cc │ │ │ │ ├── inlined_vector_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── btree.h │ │ │ │ │ ├── btree_container.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── compressed_tuple.h │ │ │ │ │ ├── compressed_tuple_test.cc │ │ │ │ │ ├── container_memory.h │ │ │ │ │ ├── container_memory_test.cc │ │ │ │ │ ├── counting_allocator.h │ │ │ │ │ ├── hash_function_defaults.h │ │ │ │ │ ├── hash_function_defaults_test.cc │ │ │ │ │ ├── hash_generator_testing.cc │ │ │ │ │ ├── hash_generator_testing.h │ │ │ │ │ ├── hash_policy_testing.h │ │ │ │ │ ├── hash_policy_testing_test.cc │ │ │ │ │ ├── hash_policy_traits.h │ │ │ │ │ ├── hash_policy_traits_test.cc │ │ │ │ │ ├── hashtable_debug.h │ │ │ │ │ ├── hashtable_debug_hooks.h │ │ │ │ │ ├── hashtablez_sampler.cc │ │ │ │ │ ├── hashtablez_sampler.h │ │ │ │ │ ├── hashtablez_sampler_force_weak_definition.cc │ │ │ │ │ ├── hashtablez_sampler_test.cc │ │ │ │ │ ├── have_sse.h │ │ │ │ │ ├── inlined_vector.h │ │ │ │ │ ├── layout.h │ │ │ │ │ ├── layout_test.cc │ │ │ │ │ ├── node_hash_policy.h │ │ │ │ │ ├── node_hash_policy_test.cc │ │ │ │ │ ├── raw_hash_map.h │ │ │ │ │ ├── raw_hash_set.cc │ │ │ │ │ ├── raw_hash_set.h │ │ │ │ │ ├── raw_hash_set_allocator_test.cc │ │ │ │ │ ├── raw_hash_set_test.cc │ │ │ │ │ ├── test_instance_tracker.cc │ │ │ │ │ ├── test_instance_tracker.h │ │ │ │ │ ├── test_instance_tracker_test.cc │ │ │ │ │ ├── tracked.h │ │ │ │ │ ├── unordered_map_constructor_test.h │ │ │ │ │ ├── unordered_map_lookup_test.h │ │ │ │ │ ├── unordered_map_members_test.h │ │ │ │ │ ├── unordered_map_modifiers_test.h │ │ │ │ │ ├── unordered_map_test.cc │ │ │ │ │ ├── unordered_set_constructor_test.h │ │ │ │ │ ├── unordered_set_lookup_test.h │ │ │ │ │ ├── unordered_set_members_test.h │ │ │ │ │ ├── unordered_set_modifiers_test.h │ │ │ │ │ └── unordered_set_test.cc │ │ │ │ ├── node_hash_map.h │ │ │ │ ├── node_hash_map_test.cc │ │ │ │ ├── node_hash_set.h │ │ │ │ └── node_hash_set_test.cc │ │ │ ├── copts │ │ │ │ ├── AbseilConfigureCopts.cmake │ │ │ │ ├── GENERATED_AbseilCopts.cmake │ │ │ │ ├── GENERATED_copts.bzl │ │ │ │ ├── configure_copts.bzl │ │ │ │ ├── copts.py │ │ │ │ └── generate_copts.py │ │ │ ├── debugging │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── failure_signal_handler.cc │ │ │ │ ├── failure_signal_handler.h │ │ │ │ ├── failure_signal_handler_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── address_is_readable.cc │ │ │ │ │ ├── address_is_readable.h │ │ │ │ │ ├── demangle.cc │ │ │ │ │ ├── demangle.h │ │ │ │ │ ├── demangle_test.cc │ │ │ │ │ ├── elf_mem_image.cc │ │ │ │ │ ├── elf_mem_image.h │ │ │ │ │ ├── examine_stack.cc │ │ │ │ │ ├── examine_stack.h │ │ │ │ │ ├── stack_consumption.cc │ │ │ │ │ ├── stack_consumption.h │ │ │ │ │ ├── stack_consumption_test.cc │ │ │ │ │ ├── stacktrace_aarch64-inl.inc │ │ │ │ │ ├── stacktrace_arm-inl.inc │ │ │ │ │ ├── stacktrace_config.h │ │ │ │ │ ├── stacktrace_generic-inl.inc │ │ │ │ │ ├── stacktrace_powerpc-inl.inc │ │ │ │ │ ├── stacktrace_unimplemented-inl.inc │ │ │ │ │ ├── stacktrace_win32-inl.inc │ │ │ │ │ ├── stacktrace_x86-inl.inc │ │ │ │ │ ├── symbolize.h │ │ │ │ │ ├── vdso_support.cc │ │ │ │ │ └── vdso_support.h │ │ │ │ ├── leak_check.cc │ │ │ │ ├── leak_check.h │ │ │ │ ├── leak_check_disable.cc │ │ │ │ ├── leak_check_fail_test.cc │ │ │ │ ├── leak_check_test.cc │ │ │ │ ├── stacktrace.cc │ │ │ │ ├── stacktrace.h │ │ │ │ ├── symbolize.cc │ │ │ │ ├── symbolize.h │ │ │ │ ├── symbolize_darwin.inc │ │ │ │ ├── symbolize_elf.inc │ │ │ │ ├── symbolize_test.cc │ │ │ │ ├── symbolize_unimplemented.inc │ │ │ │ └── symbolize_win32.inc │ │ │ ├── flags │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── commandlineflag.cc │ │ │ │ ├── commandlineflag.h │ │ │ │ ├── commandlineflag_test.cc │ │ │ │ ├── config.h │ │ │ │ ├── config_test.cc │ │ │ │ ├── declare.h │ │ │ │ ├── flag.cc │ │ │ │ ├── flag.h │ │ │ │ ├── flag_benchmark.cc │ │ │ │ ├── flag_test.cc │ │ │ │ ├── flag_test_defs.cc │ │ │ │ ├── internal │ │ │ │ │ ├── commandlineflag.cc │ │ │ │ │ ├── commandlineflag.h │ │ │ │ │ ├── flag.cc │ │ │ │ │ ├── flag.h │ │ │ │ │ ├── parse.h │ │ │ │ │ ├── path_util.h │ │ │ │ │ ├── path_util_test.cc │ │ │ │ │ ├── private_handle_accessor.cc │ │ │ │ │ ├── private_handle_accessor.h │ │ │ │ │ ├── program_name.cc │ │ │ │ │ ├── program_name.h │ │ │ │ │ ├── program_name_test.cc │ │ │ │ │ ├── registry.h │ │ │ │ │ ├── usage.cc │ │ │ │ │ ├── usage.h │ │ │ │ │ └── usage_test.cc │ │ │ │ ├── marshalling.cc │ │ │ │ ├── marshalling.h │ │ │ │ ├── marshalling_test.cc │ │ │ │ ├── parse.cc │ │ │ │ ├── parse.h │ │ │ │ ├── parse_test.cc │ │ │ │ ├── reflection.cc │ │ │ │ ├── reflection.h │ │ │ │ ├── reflection_test.cc │ │ │ │ ├── usage.cc │ │ │ │ ├── usage.h │ │ │ │ ├── usage_config.cc │ │ │ │ ├── usage_config.h │ │ │ │ └── usage_config_test.cc │ │ │ ├── functional │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bind_front.h │ │ │ │ ├── bind_front_test.cc │ │ │ │ ├── function_ref.h │ │ │ │ ├── function_ref_benchmark.cc │ │ │ │ ├── function_ref_test.cc │ │ │ │ └── internal │ │ │ │ │ ├── front_binder.h │ │ │ │ │ └── function_ref.h │ │ │ ├── hash │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── hash.h │ │ │ │ ├── hash_test.cc │ │ │ │ ├── hash_testing.h │ │ │ │ └── internal │ │ │ │ │ ├── city.cc │ │ │ │ │ ├── city.h │ │ │ │ │ ├── city_test.cc │ │ │ │ │ ├── hash.cc │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── print_hash_of.cc │ │ │ │ │ └── spy_hash_state.h │ │ │ ├── memory │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── memory.h │ │ │ │ ├── memory_exception_safety_test.cc │ │ │ │ └── memory_test.cc │ │ │ ├── meta │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── type_traits.h │ │ │ │ └── type_traits_test.cc │ │ │ ├── numeric │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── int128.cc │ │ │ │ ├── int128.h │ │ │ │ ├── int128_benchmark.cc │ │ │ │ ├── int128_have_intrinsic.inc │ │ │ │ ├── int128_no_intrinsic.inc │ │ │ │ ├── int128_stream_test.cc │ │ │ │ └── int128_test.cc │ │ │ ├── random │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── benchmarks.cc │ │ │ │ ├── bernoulli_distribution.h │ │ │ │ ├── bernoulli_distribution_test.cc │ │ │ │ ├── beta_distribution.h │ │ │ │ ├── beta_distribution_test.cc │ │ │ │ ├── bit_gen_ref.h │ │ │ │ ├── bit_gen_ref_test.cc │ │ │ │ ├── discrete_distribution.cc │ │ │ │ ├── discrete_distribution.h │ │ │ │ ├── discrete_distribution_test.cc │ │ │ │ ├── distributions.h │ │ │ │ ├── distributions_test.cc │ │ │ │ ├── examples_test.cc │ │ │ │ ├── exponential_distribution.h │ │ │ │ ├── exponential_distribution_test.cc │ │ │ │ ├── gaussian_distribution.cc │ │ │ │ ├── gaussian_distribution.h │ │ │ │ ├── gaussian_distribution_test.cc │ │ │ │ ├── generators_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── chi_square.cc │ │ │ │ │ ├── chi_square.h │ │ │ │ │ ├── chi_square_test.cc │ │ │ │ │ ├── distribution_caller.h │ │ │ │ │ ├── distribution_test_util.cc │ │ │ │ │ ├── distribution_test_util.h │ │ │ │ │ ├── distribution_test_util_test.cc │ │ │ │ │ ├── explicit_seed_seq.h │ │ │ │ │ ├── explicit_seed_seq_test.cc │ │ │ │ │ ├── fast_uniform_bits.h │ │ │ │ │ ├── fast_uniform_bits_test.cc │ │ │ │ │ ├── fastmath.h │ │ │ │ │ ├── fastmath_test.cc │ │ │ │ │ ├── gaussian_distribution_gentables.cc │ │ │ │ │ ├── generate_real.h │ │ │ │ │ ├── generate_real_test.cc │ │ │ │ │ ├── iostream_state_saver.h │ │ │ │ │ ├── iostream_state_saver_test.cc │ │ │ │ │ ├── mock_helpers.h │ │ │ │ │ ├── mock_overload_set.h │ │ │ │ │ ├── nanobenchmark.cc │ │ │ │ │ ├── nanobenchmark.h │ │ │ │ │ ├── nanobenchmark_test.cc │ │ │ │ │ ├── nonsecure_base.h │ │ │ │ │ ├── nonsecure_base_test.cc │ │ │ │ │ ├── pcg_engine.h │ │ │ │ │ ├── pcg_engine_test.cc │ │ │ │ │ ├── platform.h │ │ │ │ │ ├── pool_urbg.cc │ │ │ │ │ ├── pool_urbg.h │ │ │ │ │ ├── pool_urbg_test.cc │ │ │ │ │ ├── randen.cc │ │ │ │ │ ├── randen.h │ │ │ │ │ ├── randen_benchmarks.cc │ │ │ │ │ ├── randen_detect.cc │ │ │ │ │ ├── randen_detect.h │ │ │ │ │ ├── randen_engine.h │ │ │ │ │ ├── randen_engine_test.cc │ │ │ │ │ ├── randen_hwaes.cc │ │ │ │ │ ├── randen_hwaes.h │ │ │ │ │ ├── randen_hwaes_test.cc │ │ │ │ │ ├── randen_round_keys.cc │ │ │ │ │ ├── randen_slow.cc │ │ │ │ │ ├── randen_slow.h │ │ │ │ │ ├── randen_slow_test.cc │ │ │ │ │ ├── randen_test.cc │ │ │ │ │ ├── randen_traits.h │ │ │ │ │ ├── salted_seed_seq.h │ │ │ │ │ ├── salted_seed_seq_test.cc │ │ │ │ │ ├── seed_material.cc │ │ │ │ │ ├── seed_material.h │ │ │ │ │ ├── seed_material_test.cc │ │ │ │ │ ├── sequence_urbg.h │ │ │ │ │ ├── traits.h │ │ │ │ │ ├── traits_test.cc │ │ │ │ │ ├── uniform_helper.h │ │ │ │ │ ├── uniform_helper_test.cc │ │ │ │ │ ├── wide_multiply.h │ │ │ │ │ └── wide_multiply_test.cc │ │ │ │ ├── log_uniform_int_distribution.h │ │ │ │ ├── log_uniform_int_distribution_test.cc │ │ │ │ ├── mock_distributions.h │ │ │ │ ├── mock_distributions_test.cc │ │ │ │ ├── mocking_bit_gen.h │ │ │ │ ├── mocking_bit_gen_test.cc │ │ │ │ ├── poisson_distribution.h │ │ │ │ ├── poisson_distribution_test.cc │ │ │ │ ├── random.h │ │ │ │ ├── seed_gen_exception.cc │ │ │ │ ├── seed_gen_exception.h │ │ │ │ ├── seed_sequences.cc │ │ │ │ ├── seed_sequences.h │ │ │ │ ├── seed_sequences_test.cc │ │ │ │ ├── uniform_int_distribution.h │ │ │ │ ├── uniform_int_distribution_test.cc │ │ │ │ ├── uniform_real_distribution.h │ │ │ │ ├── uniform_real_distribution_test.cc │ │ │ │ ├── zipf_distribution.h │ │ │ │ └── zipf_distribution_test.cc │ │ │ ├── status │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── internal │ │ │ │ │ ├── status_internal.h │ │ │ │ │ └── statusor_internal.h │ │ │ │ ├── status.cc │ │ │ │ ├── status.h │ │ │ │ ├── status_payload_printer.cc │ │ │ │ ├── status_payload_printer.h │ │ │ │ ├── status_test.cc │ │ │ │ ├── statusor.cc │ │ │ │ ├── statusor.h │ │ │ │ └── statusor_test.cc │ │ │ ├── strings │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ascii.cc │ │ │ │ ├── ascii.h │ │ │ │ ├── ascii_benchmark.cc │ │ │ │ ├── ascii_test.cc │ │ │ │ ├── charconv.cc │ │ │ │ ├── charconv.h │ │ │ │ ├── charconv_benchmark.cc │ │ │ │ ├── charconv_test.cc │ │ │ │ ├── cord.cc │ │ │ │ ├── cord.h │ │ │ │ ├── cord_test.cc │ │ │ │ ├── cord_test_helpers.h │ │ │ │ ├── escaping.cc │ │ │ │ ├── escaping.h │ │ │ │ ├── escaping_benchmark.cc │ │ │ │ ├── escaping_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── char_map.h │ │ │ │ │ ├── char_map_benchmark.cc │ │ │ │ │ ├── char_map_test.cc │ │ │ │ │ ├── charconv_bigint.cc │ │ │ │ │ ├── charconv_bigint.h │ │ │ │ │ ├── charconv_bigint_test.cc │ │ │ │ │ ├── charconv_parse.cc │ │ │ │ │ ├── charconv_parse.h │ │ │ │ │ ├── charconv_parse_test.cc │ │ │ │ │ ├── cord_internal.h │ │ │ │ │ ├── escaping.cc │ │ │ │ │ ├── escaping.h │ │ │ │ │ ├── escaping_test_common.h │ │ │ │ │ ├── memutil.cc │ │ │ │ │ ├── memutil.h │ │ │ │ │ ├── memutil_benchmark.cc │ │ │ │ │ ├── memutil_test.cc │ │ │ │ │ ├── numbers_test_common.h │ │ │ │ │ ├── ostringstream.cc │ │ │ │ │ ├── ostringstream.h │ │ │ │ │ ├── ostringstream_benchmark.cc │ │ │ │ │ ├── ostringstream_test.cc │ │ │ │ │ ├── pow10_helper.cc │ │ │ │ │ ├── pow10_helper.h │ │ │ │ │ ├── pow10_helper_test.cc │ │ │ │ │ ├── resize_uninitialized.h │ │ │ │ │ ├── resize_uninitialized_test.cc │ │ │ │ │ ├── stl_type_traits.h │ │ │ │ │ ├── str_format │ │ │ │ │ │ ├── arg.cc │ │ │ │ │ │ ├── arg.h │ │ │ │ │ │ ├── arg_test.cc │ │ │ │ │ │ ├── bind.cc │ │ │ │ │ │ ├── bind.h │ │ │ │ │ │ ├── bind_test.cc │ │ │ │ │ │ ├── checker.h │ │ │ │ │ │ ├── checker_test.cc │ │ │ │ │ │ ├── convert_test.cc │ │ │ │ │ │ ├── extension.cc │ │ │ │ │ │ ├── extension.h │ │ │ │ │ │ ├── extension_test.cc │ │ │ │ │ │ ├── float_conversion.cc │ │ │ │ │ │ ├── float_conversion.h │ │ │ │ │ │ ├── output.cc │ │ │ │ │ │ ├── output.h │ │ │ │ │ │ ├── output_test.cc │ │ │ │ │ │ ├── parser.cc │ │ │ │ │ │ ├── parser.h │ │ │ │ │ │ └── parser_test.cc │ │ │ │ │ ├── str_join_internal.h │ │ │ │ │ ├── str_split_internal.h │ │ │ │ │ ├── utf8.cc │ │ │ │ │ ├── utf8.h │ │ │ │ │ └── utf8_test.cc │ │ │ │ ├── match.cc │ │ │ │ ├── match.h │ │ │ │ ├── match_test.cc │ │ │ │ ├── numbers.cc │ │ │ │ ├── numbers.h │ │ │ │ ├── numbers_benchmark.cc │ │ │ │ ├── numbers_test.cc │ │ │ │ ├── str_cat.cc │ │ │ │ ├── str_cat.h │ │ │ │ ├── str_cat_benchmark.cc │ │ │ │ ├── str_cat_test.cc │ │ │ │ ├── str_format.h │ │ │ │ ├── str_format_test.cc │ │ │ │ ├── str_join.h │ │ │ │ ├── str_join_benchmark.cc │ │ │ │ ├── str_join_test.cc │ │ │ │ ├── str_replace.cc │ │ │ │ ├── str_replace.h │ │ │ │ ├── str_replace_benchmark.cc │ │ │ │ ├── str_replace_test.cc │ │ │ │ ├── str_split.cc │ │ │ │ ├── str_split.h │ │ │ │ ├── str_split_benchmark.cc │ │ │ │ ├── str_split_test.cc │ │ │ │ ├── string_view.cc │ │ │ │ ├── string_view.h │ │ │ │ ├── string_view_benchmark.cc │ │ │ │ ├── string_view_test.cc │ │ │ │ ├── strip.h │ │ │ │ ├── strip_test.cc │ │ │ │ ├── substitute.cc │ │ │ │ ├── substitute.h │ │ │ │ └── substitute_test.cc │ │ │ ├── synchronization │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── barrier.cc │ │ │ │ ├── barrier.h │ │ │ │ ├── barrier_test.cc │ │ │ │ ├── blocking_counter.cc │ │ │ │ ├── blocking_counter.h │ │ │ │ ├── blocking_counter_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── create_thread_identity.cc │ │ │ │ │ ├── create_thread_identity.h │ │ │ │ │ ├── graphcycles.cc │ │ │ │ │ ├── graphcycles.h │ │ │ │ │ ├── graphcycles_benchmark.cc │ │ │ │ │ ├── graphcycles_test.cc │ │ │ │ │ ├── kernel_timeout.h │ │ │ │ │ ├── mutex_nonprod.cc │ │ │ │ │ ├── mutex_nonprod.inc │ │ │ │ │ ├── per_thread_sem.cc │ │ │ │ │ ├── per_thread_sem.h │ │ │ │ │ ├── per_thread_sem_test.cc │ │ │ │ │ ├── thread_pool.h │ │ │ │ │ ├── waiter.cc │ │ │ │ │ └── waiter.h │ │ │ │ ├── lifetime_test.cc │ │ │ │ ├── mutex.cc │ │ │ │ ├── mutex.h │ │ │ │ ├── mutex_benchmark.cc │ │ │ │ ├── mutex_test.cc │ │ │ │ ├── notification.cc │ │ │ │ ├── notification.h │ │ │ │ └── notification_test.cc │ │ │ ├── time │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── civil_time.cc │ │ │ │ ├── civil_time.h │ │ │ │ ├── civil_time_benchmark.cc │ │ │ │ ├── civil_time_test.cc │ │ │ │ ├── clock.cc │ │ │ │ ├── clock.h │ │ │ │ ├── clock_benchmark.cc │ │ │ │ ├── clock_test.cc │ │ │ │ ├── duration.cc │ │ │ │ ├── duration_benchmark.cc │ │ │ │ ├── duration_test.cc │ │ │ │ ├── format.cc │ │ │ │ ├── format_benchmark.cc │ │ │ │ ├── format_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── cctz │ │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ └── cctz │ │ │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── cctz_benchmark.cc │ │ │ │ │ │ │ ├── civil_time_detail.cc │ │ │ │ │ │ │ ├── civil_time_test.cc │ │ │ │ │ │ │ ├── time_zone_fixed.cc │ │ │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ │ │ ├── time_zone_format.cc │ │ │ │ │ │ │ ├── time_zone_format_test.cc │ │ │ │ │ │ │ ├── time_zone_if.cc │ │ │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ │ │ ├── time_zone_impl.cc │ │ │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ │ │ ├── time_zone_info.cc │ │ │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ │ │ ├── time_zone_libc.cc │ │ │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ │ │ ├── time_zone_lookup.cc │ │ │ │ │ │ │ ├── time_zone_lookup_test.cc │ │ │ │ │ │ │ ├── time_zone_posix.cc │ │ │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ │ │ ├── tzfile.h │ │ │ │ │ │ │ └── zone_info_source.cc │ │ │ │ │ │ └── testdata │ │ │ │ │ │ │ ├── README.zoneinfo │ │ │ │ │ │ │ ├── version │ │ │ │ │ │ │ └── zoneinfo │ │ │ │ │ │ │ ├── Africa │ │ │ │ │ │ │ ├── Abidjan │ │ │ │ │ │ │ ├── Accra │ │ │ │ │ │ │ ├── Addis_Ababa │ │ │ │ │ │ │ ├── Algiers │ │ │ │ │ │ │ ├── Asmara │ │ │ │ │ │ │ ├── Asmera │ │ │ │ │ │ │ ├── Bamako │ │ │ │ │ │ │ ├── Bangui │ │ │ │ │ │ │ ├── Banjul │ │ │ │ │ │ │ ├── Bissau │ │ │ │ │ │ │ ├── Blantyre │ │ │ │ │ │ │ ├── Brazzaville │ │ │ │ │ │ │ ├── Bujumbura │ │ │ │ │ │ │ ├── Cairo │ │ │ │ │ │ │ ├── Casablanca │ │ │ │ │ │ │ ├── Ceuta │ │ │ │ │ │ │ ├── Conakry │ │ │ │ │ │ │ ├── Dakar │ │ │ │ │ │ │ ├── Dar_es_Salaam │ │ │ │ │ │ │ ├── Djibouti │ │ │ │ │ │ │ ├── Douala │ │ │ │ │ │ │ ├── El_Aaiun │ │ │ │ │ │ │ ├── Freetown │ │ │ │ │ │ │ ├── Gaborone │ │ │ │ │ │ │ ├── Harare │ │ │ │ │ │ │ ├── Johannesburg │ │ │ │ │ │ │ ├── Juba │ │ │ │ │ │ │ ├── Kampala │ │ │ │ │ │ │ ├── Khartoum │ │ │ │ │ │ │ ├── Kigali │ │ │ │ │ │ │ ├── Kinshasa │ │ │ │ │ │ │ ├── Lagos │ │ │ │ │ │ │ ├── Libreville │ │ │ │ │ │ │ ├── Lome │ │ │ │ │ │ │ ├── Luanda │ │ │ │ │ │ │ ├── Lubumbashi │ │ │ │ │ │ │ ├── Lusaka │ │ │ │ │ │ │ ├── Malabo │ │ │ │ │ │ │ ├── Maputo │ │ │ │ │ │ │ ├── Maseru │ │ │ │ │ │ │ ├── Mbabane │ │ │ │ │ │ │ ├── Mogadishu │ │ │ │ │ │ │ ├── Monrovia │ │ │ │ │ │ │ ├── Nairobi │ │ │ │ │ │ │ ├── Ndjamena │ │ │ │ │ │ │ ├── Niamey │ │ │ │ │ │ │ ├── Nouakchott │ │ │ │ │ │ │ ├── Ouagadougou │ │ │ │ │ │ │ ├── Porto-Novo │ │ │ │ │ │ │ ├── Sao_Tome │ │ │ │ │ │ │ ├── Timbuktu │ │ │ │ │ │ │ ├── Tripoli │ │ │ │ │ │ │ ├── Tunis │ │ │ │ │ │ │ └── Windhoek │ │ │ │ │ │ │ ├── America │ │ │ │ │ │ │ ├── Adak │ │ │ │ │ │ │ ├── Anchorage │ │ │ │ │ │ │ ├── Anguilla │ │ │ │ │ │ │ ├── Antigua │ │ │ │ │ │ │ ├── Araguaina │ │ │ │ │ │ │ ├── Argentina │ │ │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ │ │ ├── La_Rioja │ │ │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ │ │ │ ├── Salta │ │ │ │ │ │ │ │ ├── San_Juan │ │ │ │ │ │ │ │ ├── San_Luis │ │ │ │ │ │ │ │ ├── Tucuman │ │ │ │ │ │ │ │ └── Ushuaia │ │ │ │ │ │ │ ├── Aruba │ │ │ │ │ │ │ ├── Asuncion │ │ │ │ │ │ │ ├── Atikokan │ │ │ │ │ │ │ ├── Atka │ │ │ │ │ │ │ ├── Bahia │ │ │ │ │ │ │ ├── Bahia_Banderas │ │ │ │ │ │ │ ├── Barbados │ │ │ │ │ │ │ ├── Belem │ │ │ │ │ │ │ ├── Belize │ │ │ │ │ │ │ ├── Blanc-Sablon │ │ │ │ │ │ │ ├── Boa_Vista │ │ │ │ │ │ │ ├── Bogota │ │ │ │ │ │ │ ├── Boise │ │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ │ ├── Cambridge_Bay │ │ │ │ │ │ │ ├── Campo_Grande │ │ │ │ │ │ │ ├── Cancun │ │ │ │ │ │ │ ├── Caracas │ │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ │ ├── Cayenne │ │ │ │ │ │ │ ├── Cayman │ │ │ │ │ │ │ ├── Chicago │ │ │ │ │ │ │ ├── Chihuahua │ │ │ │ │ │ │ ├── Coral_Harbour │ │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ │ ├── Costa_Rica │ │ │ │ │ │ │ ├── Creston │ │ │ │ │ │ │ ├── Cuiaba │ │ │ │ │ │ │ ├── Curacao │ │ │ │ │ │ │ ├── Danmarkshavn │ │ │ │ │ │ │ ├── Dawson │ │ │ │ │ │ │ ├── Dawson_Creek │ │ │ │ │ │ │ ├── Denver │ │ │ │ │ │ │ ├── Detroit │ │ │ │ │ │ │ ├── Dominica │ │ │ │ │ │ │ ├── Edmonton │ │ │ │ │ │ │ ├── Eirunepe │ │ │ │ │ │ │ ├── El_Salvador │ │ │ │ │ │ │ ├── Ensenada │ │ │ │ │ │ │ ├── Fort_Nelson │ │ │ │ │ │ │ ├── Fort_Wayne │ │ │ │ │ │ │ ├── Fortaleza │ │ │ │ │ │ │ ├── Glace_Bay │ │ │ │ │ │ │ ├── Godthab │ │ │ │ │ │ │ ├── Goose_Bay │ │ │ │ │ │ │ ├── Grand_Turk │ │ │ │ │ │ │ ├── Grenada │ │ │ │ │ │ │ ├── Guadeloupe │ │ │ │ │ │ │ ├── Guatemala │ │ │ │ │ │ │ ├── Guayaquil │ │ │ │ │ │ │ ├── Guyana │ │ │ │ │ │ │ ├── Halifax │ │ │ │ │ │ │ ├── Havana │ │ │ │ │ │ │ ├── Hermosillo │ │ │ │ │ │ │ ├── Indiana │ │ │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ │ │ ├── Knox │ │ │ │ │ │ │ │ ├── Marengo │ │ │ │ │ │ │ │ ├── Petersburg │ │ │ │ │ │ │ │ ├── Tell_City │ │ │ │ │ │ │ │ ├── Vevay │ │ │ │ │ │ │ │ ├── Vincennes │ │ │ │ │ │ │ │ └── Winamac │ │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ │ ├── Inuvik │ │ │ │ │ │ │ ├── Iqaluit │ │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ │ ├── Juneau │ │ │ │ │ │ │ ├── Kentucky │ │ │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ │ │ └── Monticello │ │ │ │ │ │ │ ├── Knox_IN │ │ │ │ │ │ │ ├── Kralendijk │ │ │ │ │ │ │ ├── La_Paz │ │ │ │ │ │ │ ├── Lima │ │ │ │ │ │ │ ├── Los_Angeles │ │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ │ ├── Lower_Princes │ │ │ │ │ │ │ ├── Maceio │ │ │ │ │ │ │ ├── Managua │ │ │ │ │ │ │ ├── Manaus │ │ │ │ │ │ │ ├── Marigot │ │ │ │ │ │ │ ├── Martinique │ │ │ │ │ │ │ ├── Matamoros │ │ │ │ │ │ │ ├── Mazatlan │ │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ │ ├── Menominee │ │ │ │ │ │ │ ├── Merida │ │ │ │ │ │ │ ├── Metlakatla │ │ │ │ │ │ │ ├── Mexico_City │ │ │ │ │ │ │ ├── Miquelon │ │ │ │ │ │ │ ├── Moncton │ │ │ │ │ │ │ ├── Monterrey │ │ │ │ │ │ │ ├── Montevideo │ │ │ │ │ │ │ ├── Montreal │ │ │ │ │ │ │ ├── Montserrat │ │ │ │ │ │ │ ├── Nassau │ │ │ │ │ │ │ ├── New_York │ │ │ │ │ │ │ ├── Nipigon │ │ │ │ │ │ │ ├── Nome │ │ │ │ │ │ │ ├── Noronha │ │ │ │ │ │ │ ├── North_Dakota │ │ │ │ │ │ │ │ ├── Beulah │ │ │ │ │ │ │ │ ├── Center │ │ │ │ │ │ │ │ └── New_Salem │ │ │ │ │ │ │ ├── Nuuk │ │ │ │ │ │ │ ├── Ojinaga │ │ │ │ │ │ │ ├── Panama │ │ │ │ │ │ │ ├── Pangnirtung │ │ │ │ │ │ │ ├── Paramaribo │ │ │ │ │ │ │ ├── Phoenix │ │ │ │ │ │ │ ├── Port-au-Prince │ │ │ │ │ │ │ ├── Port_of_Spain │ │ │ │ │ │ │ ├── Porto_Acre │ │ │ │ │ │ │ ├── Porto_Velho │ │ │ │ │ │ │ ├── Puerto_Rico │ │ │ │ │ │ │ ├── Punta_Arenas │ │ │ │ │ │ │ ├── Rainy_River │ │ │ │ │ │ │ ├── Rankin_Inlet │ │ │ │ │ │ │ ├── Recife │ │ │ │ │ │ │ ├── Regina │ │ │ │ │ │ │ ├── Resolute │ │ │ │ │ │ │ ├── Rio_Branco │ │ │ │ │ │ │ ├── Rosario │ │ │ │ │ │ │ ├── Santa_Isabel │ │ │ │ │ │ │ ├── Santarem │ │ │ │ │ │ │ ├── Santiago │ │ │ │ │ │ │ ├── Santo_Domingo │ │ │ │ │ │ │ ├── Sao_Paulo │ │ │ │ │ │ │ ├── Scoresbysund │ │ │ │ │ │ │ ├── Shiprock │ │ │ │ │ │ │ ├── Sitka │ │ │ │ │ │ │ ├── St_Barthelemy │ │ │ │ │ │ │ ├── St_Johns │ │ │ │ │ │ │ ├── St_Kitts │ │ │ │ │ │ │ ├── St_Lucia │ │ │ │ │ │ │ ├── St_Thomas │ │ │ │ │ │ │ ├── St_Vincent │ │ │ │ │ │ │ ├── Swift_Current │ │ │ │ │ │ │ ├── Tegucigalpa │ │ │ │ │ │ │ ├── Thule │ │ │ │ │ │ │ ├── Thunder_Bay │ │ │ │ │ │ │ ├── Tijuana │ │ │ │ │ │ │ ├── Toronto │ │ │ │ │ │ │ ├── Tortola │ │ │ │ │ │ │ ├── Vancouver │ │ │ │ │ │ │ ├── Virgin │ │ │ │ │ │ │ ├── Whitehorse │ │ │ │ │ │ │ ├── Winnipeg │ │ │ │ │ │ │ ├── Yakutat │ │ │ │ │ │ │ └── Yellowknife │ │ │ │ │ │ │ ├── Antarctica │ │ │ │ │ │ │ ├── Casey │ │ │ │ │ │ │ ├── Davis │ │ │ │ │ │ │ ├── DumontDUrville │ │ │ │ │ │ │ ├── Macquarie │ │ │ │ │ │ │ ├── Mawson │ │ │ │ │ │ │ ├── McMurdo │ │ │ │ │ │ │ ├── Palmer │ │ │ │ │ │ │ ├── Rothera │ │ │ │ │ │ │ ├── South_Pole │ │ │ │ │ │ │ ├── Syowa │ │ │ │ │ │ │ ├── Troll │ │ │ │ │ │ │ └── Vostok │ │ │ │ │ │ │ ├── Arctic │ │ │ │ │ │ │ └── Longyearbyen │ │ │ │ │ │ │ ├── Asia │ │ │ │ │ │ │ ├── Aden │ │ │ │ │ │ │ ├── Almaty │ │ │ │ │ │ │ ├── Amman │ │ │ │ │ │ │ ├── Anadyr │ │ │ │ │ │ │ ├── Aqtau │ │ │ │ │ │ │ ├── Aqtobe │ │ │ │ │ │ │ ├── Ashgabat │ │ │ │ │ │ │ ├── Ashkhabad │ │ │ │ │ │ │ ├── Atyrau │ │ │ │ │ │ │ ├── Baghdad │ │ │ │ │ │ │ ├── Bahrain │ │ │ │ │ │ │ ├── Baku │ │ │ │ │ │ │ ├── Bangkok │ │ │ │ │ │ │ ├── Barnaul │ │ │ │ │ │ │ ├── Beirut │ │ │ │ │ │ │ ├── Bishkek │ │ │ │ │ │ │ ├── Brunei │ │ │ │ │ │ │ ├── Calcutta │ │ │ │ │ │ │ ├── Chita │ │ │ │ │ │ │ ├── Choibalsan │ │ │ │ │ │ │ ├── Chongqing │ │ │ │ │ │ │ ├── Chungking │ │ │ │ │ │ │ ├── Colombo │ │ │ │ │ │ │ ├── Dacca │ │ │ │ │ │ │ ├── Damascus │ │ │ │ │ │ │ ├── Dhaka │ │ │ │ │ │ │ ├── Dili │ │ │ │ │ │ │ ├── Dubai │ │ │ │ │ │ │ ├── Dushanbe │ │ │ │ │ │ │ ├── Famagusta │ │ │ │ │ │ │ ├── Gaza │ │ │ │ │ │ │ ├── Harbin │ │ │ │ │ │ │ ├── Hebron │ │ │ │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ │ │ │ ├── Hong_Kong │ │ │ │ │ │ │ ├── Hovd │ │ │ │ │ │ │ ├── Irkutsk │ │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ │ ├── Jakarta │ │ │ │ │ │ │ ├── Jayapura │ │ │ │ │ │ │ ├── Jerusalem │ │ │ │ │ │ │ ├── Kabul │ │ │ │ │ │ │ ├── Kamchatka │ │ │ │ │ │ │ ├── Karachi │ │ │ │ │ │ │ ├── Kashgar │ │ │ │ │ │ │ ├── Kathmandu │ │ │ │ │ │ │ ├── Katmandu │ │ │ │ │ │ │ ├── Khandyga │ │ │ │ │ │ │ ├── Kolkata │ │ │ │ │ │ │ ├── Krasnoyarsk │ │ │ │ │ │ │ ├── Kuala_Lumpur │ │ │ │ │ │ │ ├── Kuching │ │ │ │ │ │ │ ├── Kuwait │ │ │ │ │ │ │ ├── Macao │ │ │ │ │ │ │ ├── Macau │ │ │ │ │ │ │ ├── Magadan │ │ │ │ │ │ │ ├── Makassar │ │ │ │ │ │ │ ├── Manila │ │ │ │ │ │ │ ├── Muscat │ │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ │ ├── Novokuznetsk │ │ │ │ │ │ │ ├── Novosibirsk │ │ │ │ │ │ │ ├── Omsk │ │ │ │ │ │ │ ├── Oral │ │ │ │ │ │ │ ├── Phnom_Penh │ │ │ │ │ │ │ ├── Pontianak │ │ │ │ │ │ │ ├── Pyongyang │ │ │ │ │ │ │ ├── Qatar │ │ │ │ │ │ │ ├── Qostanay │ │ │ │ │ │ │ ├── Qyzylorda │ │ │ │ │ │ │ ├── Rangoon │ │ │ │ │ │ │ ├── Riyadh │ │ │ │ │ │ │ ├── Saigon │ │ │ │ │ │ │ ├── Sakhalin │ │ │ │ │ │ │ ├── Samarkand │ │ │ │ │ │ │ ├── Seoul │ │ │ │ │ │ │ ├── Shanghai │ │ │ │ │ │ │ ├── Singapore │ │ │ │ │ │ │ ├── Srednekolymsk │ │ │ │ │ │ │ ├── Taipei │ │ │ │ │ │ │ ├── Tashkent │ │ │ │ │ │ │ ├── Tbilisi │ │ │ │ │ │ │ ├── Tehran │ │ │ │ │ │ │ ├── Tel_Aviv │ │ │ │ │ │ │ ├── Thimbu │ │ │ │ │ │ │ ├── Thimphu │ │ │ │ │ │ │ ├── Tokyo │ │ │ │ │ │ │ ├── Tomsk │ │ │ │ │ │ │ ├── Ujung_Pandang │ │ │ │ │ │ │ ├── Ulaanbaatar │ │ │ │ │ │ │ ├── Ulan_Bator │ │ │ │ │ │ │ ├── Urumqi │ │ │ │ │ │ │ ├── Ust-Nera │ │ │ │ │ │ │ ├── Vientiane │ │ │ │ │ │ │ ├── Vladivostok │ │ │ │ │ │ │ ├── Yakutsk │ │ │ │ │ │ │ ├── Yangon │ │ │ │ │ │ │ ├── Yekaterinburg │ │ │ │ │ │ │ └── Yerevan │ │ │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ │ ├── Azores │ │ │ │ │ │ │ ├── Bermuda │ │ │ │ │ │ │ ├── Canary │ │ │ │ │ │ │ ├── Cape_Verde │ │ │ │ │ │ │ ├── Faeroe │ │ │ │ │ │ │ ├── Faroe │ │ │ │ │ │ │ ├── Jan_Mayen │ │ │ │ │ │ │ ├── Madeira │ │ │ │ │ │ │ ├── Reykjavik │ │ │ │ │ │ │ ├── South_Georgia │ │ │ │ │ │ │ ├── St_Helena │ │ │ │ │ │ │ └── Stanley │ │ │ │ │ │ │ ├── Australia │ │ │ │ │ │ │ ├── ACT │ │ │ │ │ │ │ ├── Adelaide │ │ │ │ │ │ │ ├── Brisbane │ │ │ │ │ │ │ ├── Broken_Hill │ │ │ │ │ │ │ ├── Canberra │ │ │ │ │ │ │ ├── Currie │ │ │ │ │ │ │ ├── Darwin │ │ │ │ │ │ │ ├── Eucla │ │ │ │ │ │ │ ├── Hobart │ │ │ │ │ │ │ ├── LHI │ │ │ │ │ │ │ ├── Lindeman │ │ │ │ │ │ │ ├── Lord_Howe │ │ │ │ │ │ │ ├── Melbourne │ │ │ │ │ │ │ ├── NSW │ │ │ │ │ │ │ ├── North │ │ │ │ │ │ │ ├── Perth │ │ │ │ │ │ │ ├── Queensland │ │ │ │ │ │ │ ├── South │ │ │ │ │ │ │ ├── Sydney │ │ │ │ │ │ │ ├── Tasmania │ │ │ │ │ │ │ ├── Victoria │ │ │ │ │ │ │ ├── West │ │ │ │ │ │ │ └── Yancowinna │ │ │ │ │ │ │ ├── Brazil │ │ │ │ │ │ │ ├── Acre │ │ │ │ │ │ │ ├── DeNoronha │ │ │ │ │ │ │ ├── East │ │ │ │ │ │ │ └── West │ │ │ │ │ │ │ ├── CET │ │ │ │ │ │ │ ├── CST6CDT │ │ │ │ │ │ │ ├── Canada │ │ │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ │ ├── Central │ │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ │ ├── Newfoundland │ │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ │ ├── Saskatchewan │ │ │ │ │ │ │ └── Yukon │ │ │ │ │ │ │ ├── Chile │ │ │ │ │ │ │ ├── Continental │ │ │ │ │ │ │ └── EasterIsland │ │ │ │ │ │ │ ├── Cuba │ │ │ │ │ │ │ ├── EET │ │ │ │ │ │ │ ├── EST │ │ │ │ │ │ │ ├── EST5EDT │ │ │ │ │ │ │ ├── Egypt │ │ │ │ │ │ │ ├── Eire │ │ │ │ │ │ │ ├── Etc │ │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ │ ├── GMT+1 │ │ │ │ │ │ │ ├── GMT+10 │ │ │ │ │ │ │ ├── GMT+11 │ │ │ │ │ │ │ ├── GMT+12 │ │ │ │ │ │ │ ├── GMT+2 │ │ │ │ │ │ │ ├── GMT+3 │ │ │ │ │ │ │ ├── GMT+4 │ │ │ │ │ │ │ ├── GMT+5 │ │ │ │ │ │ │ ├── GMT+6 │ │ │ │ │ │ │ ├── GMT+7 │ │ │ │ │ │ │ ├── GMT+8 │ │ │ │ │ │ │ ├── GMT+9 │ │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ │ ├── GMT-1 │ │ │ │ │ │ │ ├── GMT-10 │ │ │ │ │ │ │ ├── GMT-11 │ │ │ │ │ │ │ ├── GMT-12 │ │ │ │ │ │ │ ├── GMT-13 │ │ │ │ │ │ │ ├── GMT-14 │ │ │ │ │ │ │ ├── GMT-2 │ │ │ │ │ │ │ ├── GMT-3 │ │ │ │ │ │ │ ├── GMT-4 │ │ │ │ │ │ │ ├── GMT-5 │ │ │ │ │ │ │ ├── GMT-6 │ │ │ │ │ │ │ ├── GMT-7 │ │ │ │ │ │ │ ├── GMT-8 │ │ │ │ │ │ │ ├── GMT-9 │ │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ │ └── Zulu │ │ │ │ │ │ │ ├── Europe │ │ │ │ │ │ │ ├── Amsterdam │ │ │ │ │ │ │ ├── Andorra │ │ │ │ │ │ │ ├── Astrakhan │ │ │ │ │ │ │ ├── Athens │ │ │ │ │ │ │ ├── Belfast │ │ │ │ │ │ │ ├── Belgrade │ │ │ │ │ │ │ ├── Berlin │ │ │ │ │ │ │ ├── Bratislava │ │ │ │ │ │ │ ├── Brussels │ │ │ │ │ │ │ ├── Bucharest │ │ │ │ │ │ │ ├── Budapest │ │ │ │ │ │ │ ├── Busingen │ │ │ │ │ │ │ ├── Chisinau │ │ │ │ │ │ │ ├── Copenhagen │ │ │ │ │ │ │ ├── Dublin │ │ │ │ │ │ │ ├── Gibraltar │ │ │ │ │ │ │ ├── Guernsey │ │ │ │ │ │ │ ├── Helsinki │ │ │ │ │ │ │ ├── Isle_of_Man │ │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ │ ├── Jersey │ │ │ │ │ │ │ ├── Kaliningrad │ │ │ │ │ │ │ ├── Kiev │ │ │ │ │ │ │ ├── Kirov │ │ │ │ │ │ │ ├── Lisbon │ │ │ │ │ │ │ ├── Ljubljana │ │ │ │ │ │ │ ├── London │ │ │ │ │ │ │ ├── Luxembourg │ │ │ │ │ │ │ ├── Madrid │ │ │ │ │ │ │ ├── Malta │ │ │ │ │ │ │ ├── Mariehamn │ │ │ │ │ │ │ ├── Minsk │ │ │ │ │ │ │ ├── Monaco │ │ │ │ │ │ │ ├── Moscow │ │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ │ ├── Oslo │ │ │ │ │ │ │ ├── Paris │ │ │ │ │ │ │ ├── Podgorica │ │ │ │ │ │ │ ├── Prague │ │ │ │ │ │ │ ├── Riga │ │ │ │ │ │ │ ├── Rome │ │ │ │ │ │ │ ├── Samara │ │ │ │ │ │ │ ├── San_Marino │ │ │ │ │ │ │ ├── Sarajevo │ │ │ │ │ │ │ ├── Saratov │ │ │ │ │ │ │ ├── Simferopol │ │ │ │ │ │ │ ├── Skopje │ │ │ │ │ │ │ ├── Sofia │ │ │ │ │ │ │ ├── Stockholm │ │ │ │ │ │ │ ├── Tallinn │ │ │ │ │ │ │ ├── Tirane │ │ │ │ │ │ │ ├── Tiraspol │ │ │ │ │ │ │ ├── Ulyanovsk │ │ │ │ │ │ │ ├── Uzhgorod │ │ │ │ │ │ │ ├── Vaduz │ │ │ │ │ │ │ ├── Vatican │ │ │ │ │ │ │ ├── Vienna │ │ │ │ │ │ │ ├── Vilnius │ │ │ │ │ │ │ ├── Volgograd │ │ │ │ │ │ │ ├── Warsaw │ │ │ │ │ │ │ ├── Zagreb │ │ │ │ │ │ │ ├── Zaporozhye │ │ │ │ │ │ │ └── Zurich │ │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ │ ├── GB │ │ │ │ │ │ │ ├── GB-Eire │ │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ │ ├── HST │ │ │ │ │ │ │ ├── Hongkong │ │ │ │ │ │ │ ├── Iceland │ │ │ │ │ │ │ ├── Indian │ │ │ │ │ │ │ ├── Antananarivo │ │ │ │ │ │ │ ├── Chagos │ │ │ │ │ │ │ ├── Christmas │ │ │ │ │ │ │ ├── Cocos │ │ │ │ │ │ │ ├── Comoro │ │ │ │ │ │ │ ├── Kerguelen │ │ │ │ │ │ │ ├── Mahe │ │ │ │ │ │ │ ├── Maldives │ │ │ │ │ │ │ ├── Mauritius │ │ │ │ │ │ │ ├── Mayotte │ │ │ │ │ │ │ └── Reunion │ │ │ │ │ │ │ ├── Iran │ │ │ │ │ │ │ ├── Israel │ │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ │ ├── Japan │ │ │ │ │ │ │ ├── Kwajalein │ │ │ │ │ │ │ ├── Libya │ │ │ │ │ │ │ ├── MET │ │ │ │ │ │ │ ├── MST │ │ │ │ │ │ │ ├── MST7MDT │ │ │ │ │ │ │ ├── Mexico │ │ │ │ │ │ │ ├── BajaNorte │ │ │ │ │ │ │ ├── BajaSur │ │ │ │ │ │ │ └── General │ │ │ │ │ │ │ ├── NZ │ │ │ │ │ │ │ ├── NZ-CHAT │ │ │ │ │ │ │ ├── Navajo │ │ │ │ │ │ │ ├── PRC │ │ │ │ │ │ │ ├── PST8PDT │ │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ │ ├── Apia │ │ │ │ │ │ │ ├── Auckland │ │ │ │ │ │ │ ├── Bougainville │ │ │ │ │ │ │ ├── Chatham │ │ │ │ │ │ │ ├── Chuuk │ │ │ │ │ │ │ ├── Easter │ │ │ │ │ │ │ ├── Efate │ │ │ │ │ │ │ ├── Enderbury │ │ │ │ │ │ │ ├── Fakaofo │ │ │ │ │ │ │ ├── Fiji │ │ │ │ │ │ │ ├── Funafuti │ │ │ │ │ │ │ ├── Galapagos │ │ │ │ │ │ │ ├── Gambier │ │ │ │ │ │ │ ├── Guadalcanal │ │ │ │ │ │ │ ├── Guam │ │ │ │ │ │ │ ├── Honolulu │ │ │ │ │ │ │ ├── Johnston │ │ │ │ │ │ │ ├── Kiritimati │ │ │ │ │ │ │ ├── Kosrae │ │ │ │ │ │ │ ├── Kwajalein │ │ │ │ │ │ │ ├── Majuro │ │ │ │ │ │ │ ├── Marquesas │ │ │ │ │ │ │ ├── Midway │ │ │ │ │ │ │ ├── Nauru │ │ │ │ │ │ │ ├── Niue │ │ │ │ │ │ │ ├── Norfolk │ │ │ │ │ │ │ ├── Noumea │ │ │ │ │ │ │ ├── Pago_Pago │ │ │ │ │ │ │ ├── Palau │ │ │ │ │ │ │ ├── Pitcairn │ │ │ │ │ │ │ ├── Pohnpei │ │ │ │ │ │ │ ├── Ponape │ │ │ │ │ │ │ ├── Port_Moresby │ │ │ │ │ │ │ ├── Rarotonga │ │ │ │ │ │ │ ├── Saipan │ │ │ │ │ │ │ ├── Samoa │ │ │ │ │ │ │ ├── Tahiti │ │ │ │ │ │ │ ├── Tarawa │ │ │ │ │ │ │ ├── Tongatapu │ │ │ │ │ │ │ ├── Truk │ │ │ │ │ │ │ ├── Wake │ │ │ │ │ │ │ ├── Wallis │ │ │ │ │ │ │ └── Yap │ │ │ │ │ │ │ ├── Poland │ │ │ │ │ │ │ ├── Portugal │ │ │ │ │ │ │ ├── ROC │ │ │ │ │ │ │ ├── ROK │ │ │ │ │ │ │ ├── Singapore │ │ │ │ │ │ │ ├── Turkey │ │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ │ ├── US │ │ │ │ │ │ │ ├── Alaska │ │ │ │ │ │ │ ├── Aleutian │ │ │ │ │ │ │ ├── Arizona │ │ │ │ │ │ │ ├── Central │ │ │ │ │ │ │ ├── East-Indiana │ │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ │ ├── Hawaii │ │ │ │ │ │ │ ├── Indiana-Starke │ │ │ │ │ │ │ ├── Michigan │ │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ │ └── Samoa │ │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ │ ├── W-SU │ │ │ │ │ │ │ ├── WET │ │ │ │ │ │ │ ├── Zulu │ │ │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ │ │ ├── localtime │ │ │ │ │ │ │ └── zone1970.tab │ │ │ │ │ ├── get_current_time_chrono.inc │ │ │ │ │ ├── get_current_time_posix.inc │ │ │ │ │ ├── test_util.cc │ │ │ │ │ ├── test_util.h │ │ │ │ │ └── zoneinfo.inc │ │ │ │ ├── time.cc │ │ │ │ ├── time.h │ │ │ │ ├── time_benchmark.cc │ │ │ │ ├── time_test.cc │ │ │ │ └── time_zone_test.cc │ │ │ ├── types │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── any.h │ │ │ │ ├── any_exception_safety_test.cc │ │ │ │ ├── any_test.cc │ │ │ │ ├── bad_any_cast.cc │ │ │ │ ├── bad_any_cast.h │ │ │ │ ├── bad_optional_access.cc │ │ │ │ ├── bad_optional_access.h │ │ │ │ ├── bad_variant_access.cc │ │ │ │ ├── bad_variant_access.h │ │ │ │ ├── compare.h │ │ │ │ ├── compare_test.cc │ │ │ │ ├── internal │ │ │ │ │ ├── conformance_aliases.h │ │ │ │ │ ├── conformance_archetype.h │ │ │ │ │ ├── conformance_profile.h │ │ │ │ │ ├── conformance_testing.h │ │ │ │ │ ├── conformance_testing_helpers.h │ │ │ │ │ ├── conformance_testing_test.cc │ │ │ │ │ ├── optional.h │ │ │ │ │ ├── parentheses.h │ │ │ │ │ ├── span.h │ │ │ │ │ ├── transform_args.h │ │ │ │ │ └── variant.h │ │ │ │ ├── optional.h │ │ │ │ ├── optional_exception_safety_test.cc │ │ │ │ ├── optional_test.cc │ │ │ │ ├── span.h │ │ │ │ ├── span_test.cc │ │ │ │ ├── variant.h │ │ │ │ ├── variant_benchmark.cc │ │ │ │ ├── variant_exception_safety_test.cc │ │ │ │ └── variant_test.cc │ │ │ └── utility │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── utility.h │ │ │ │ └── utility_test.cc │ │ ├── ci │ │ │ ├── absl_alternate_options.h │ │ │ ├── cmake_install_test.sh │ │ │ ├── linux_clang-latest_libcxx_asan_bazel.sh │ │ │ ├── linux_clang-latest_libcxx_bazel.sh │ │ │ ├── linux_clang-latest_libcxx_tsan_bazel.sh │ │ │ ├── linux_clang-latest_libstdcxx_bazel.sh │ │ │ ├── linux_docker_containers.sh │ │ │ ├── linux_gcc-4.9_libstdcxx_bazel.sh │ │ │ ├── linux_gcc-latest_libstdcxx_bazel.sh │ │ │ ├── linux_gcc-latest_libstdcxx_cmake.sh │ │ │ ├── linux_gcc_alpine_cmake.sh │ │ │ ├── macos_xcode_bazel.sh │ │ │ └── macos_xcode_cmake.sh │ │ └── conanfile.py │ ├── demo_run_detect_main.cc │ ├── models │ │ ├── retina_tengine_object_detection_labelmap.txt │ │ ├── retinaface_multi.tmfile │ │ └── retinaface_multi_uint8.tmfile │ ├── object_detection_retina_a311d.pbtxt │ ├── object_detection_retina_x86.pbtxt │ ├── object_detection_yolov5_a311d.pbtxt │ └── object_detection_yolov5_x86.pbtxt └── README.md ├── get_pbh.sh ├── mediapipe ├── BUILD ├── MediaPipe.tulsiproj │ ├── Configs │ │ └── MediaPipe.tulsigen │ └── project.tulsiconf ├── __init__.py ├── calculators │ ├── audio │ │ ├── BUILD │ │ ├── audio_decoder_calculator.cc │ │ ├── audio_decoder_calculator_test.cc │ │ ├── basic_time_series_calculators.cc │ │ ├── basic_time_series_calculators.h │ │ ├── basic_time_series_calculators_test.cc │ │ ├── mfcc_mel_calculators.cc │ │ ├── mfcc_mel_calculators.proto │ │ ├── mfcc_mel_calculators_test.cc │ │ ├── rational_factor_resample_calculator.cc │ │ ├── rational_factor_resample_calculator.h │ │ ├── rational_factor_resample_calculator.proto │ │ ├── rational_factor_resample_calculator_test.cc │ │ ├── spectrogram_calculator.cc │ │ ├── spectrogram_calculator.proto │ │ ├── spectrogram_calculator_test.cc │ │ ├── stabilized_log_calculator.cc │ │ ├── stabilized_log_calculator.proto │ │ ├── stabilized_log_calculator_test.cc │ │ ├── testdata │ │ │ ├── BUILD │ │ │ ├── sine_wave_1k_44100_mono_2_sec_wav.audio │ │ │ ├── sine_wave_1k_44100_stereo_2_sec_aac.audio │ │ │ ├── sine_wave_1k_44100_stereo_2_sec_mp3.audio │ │ │ └── sine_wave_1k_48000_stereo_2_sec_wav.audio │ │ ├── time_series_framer_calculator.cc │ │ ├── time_series_framer_calculator.proto │ │ └── time_series_framer_calculator_test.cc │ ├── core │ │ ├── BUILD │ │ ├── add_header_calculator.cc │ │ ├── add_header_calculator_test.cc │ │ ├── begin_end_loop_calculator_graph_test.cc │ │ ├── begin_loop_calculator.cc │ │ ├── begin_loop_calculator.h │ │ ├── clip_detection_vector_size_calculator.cc │ │ ├── concatenate_detection_vector_calculator.cc │ │ ├── concatenate_normalized_landmark_list_calculator.cc │ │ ├── concatenate_normalized_landmark_list_calculator_test.cc │ │ ├── constant_side_packet_calculator.cc │ │ ├── constant_side_packet_calculator.proto │ │ ├── constant_side_packet_calculator_test.cc │ │ ├── counting_source_calculator.cc │ │ ├── default_side_packet_calculator.cc │ │ ├── dequantize_byte_array_calculator.cc │ │ ├── dequantize_byte_array_calculator.proto │ │ ├── dequantize_byte_array_calculator_test.cc │ │ ├── flow_limiter_calculator.cc │ │ ├── flow_limiter_calculator.proto │ │ ├── flow_limiter_calculator_test.cc │ │ ├── gate_calculator.cc │ │ ├── gate_calculator.proto │ │ ├── gate_calculator_test.cc │ │ ├── immediate_mux_calculator.cc │ │ ├── immediate_mux_calculator_test.cc │ │ ├── make_pair_calculator.cc │ │ ├── matrix_multiply_calculator.cc │ │ ├── matrix_multiply_calculator_test.cc │ │ ├── matrix_subtract_calculator.cc │ │ ├── matrix_subtract_calculator_test.cc │ │ ├── matrix_to_vector_calculator.cc │ │ ├── matrix_to_vector_calculator_test.cc │ │ ├── merge_calculator.cc │ │ ├── merge_calculator_test.cc │ │ ├── mux_calculator.cc │ │ ├── mux_calculator_test.cc │ │ ├── non_zero_calculator.cc │ │ ├── non_zero_calculator_test.cc │ │ ├── packet_cloner_calculator.cc │ │ ├── packet_cloner_calculator.proto │ │ ├── packet_inner_join_calculator.cc │ │ ├── packet_inner_join_calculator_test.cc │ │ ├── packet_presence_calculator.cc │ │ ├── packet_presence_calculator_test.cc │ │ ├── packet_resampler_calculator.cc │ │ ├── packet_resampler_calculator.h │ │ ├── packet_resampler_calculator.proto │ │ ├── packet_resampler_calculator_test.cc │ │ ├── packet_thinner_calculator.cc │ │ ├── packet_thinner_calculator.proto │ │ ├── packet_thinner_calculator_test.cc │ │ ├── pass_through_calculator.cc │ │ ├── previous_loopback_calculator.cc │ │ ├── previous_loopback_calculator_test.cc │ │ ├── quantize_float_vector_calculator.cc │ │ ├── quantize_float_vector_calculator.proto │ │ ├── quantize_float_vector_calculator_test.cc │ │ ├── real_time_flow_limiter_calculator.cc │ │ ├── real_time_flow_limiter_calculator_test.cc │ │ ├── round_robin_demux_calculator.cc │ │ ├── sequence_shift_calculator.cc │ │ ├── sequence_shift_calculator.proto │ │ ├── sequence_shift_calculator_test.cc │ │ ├── side_packet_to_stream_calculator.cc │ │ ├── side_packet_to_stream_calculator_test.cc │ │ ├── split_normalized_landmark_list_calculator.cc │ │ ├── split_normalized_landmark_list_calculator_test.cc │ │ ├── stream_to_side_packet_calculator.cc │ │ ├── stream_to_side_packet_calculator_test.cc │ │ └── string_to_int_calculator.cc │ ├── image │ │ ├── BUILD │ │ ├── bilateral_filter_calculator.cc │ │ ├── bilateral_filter_calculator.proto │ │ ├── color_convert_calculator.cc │ │ ├── image_clone_calculator.cc │ │ ├── image_clone_calculator.proto │ │ ├── image_cropping_calculator.cc │ │ ├── image_cropping_calculator.h │ │ ├── image_cropping_calculator.proto │ │ ├── image_cropping_calculator_test.cc │ │ ├── image_file_properties_calculator.cc │ │ ├── image_file_properties_calculator_test.cc │ │ ├── image_properties_calculator.cc │ │ ├── image_transformation_calculator.cc │ │ ├── image_transformation_calculator.proto │ │ ├── luminance_calculator.cc │ │ ├── mask_overlay_calculator.cc │ │ ├── mask_overlay_calculator.proto │ │ ├── opencv_encoded_image_to_image_frame_calculator.cc │ │ ├── opencv_encoded_image_to_image_frame_calculator.proto │ │ ├── opencv_encoded_image_to_image_frame_calculator_test.cc │ │ ├── opencv_image_encoder_calculator.cc │ │ ├── opencv_image_encoder_calculator.proto │ │ ├── opencv_image_encoder_calculator_test.cc │ │ ├── opencv_put_text_calculator.cc │ │ ├── recolor_calculator.cc │ │ ├── recolor_calculator.proto │ │ ├── scale_image_calculator.cc │ │ ├── scale_image_calculator.proto │ │ ├── scale_image_utils.cc │ │ ├── scale_image_utils.h │ │ ├── scale_image_utils_test.cc │ │ ├── set_alpha_calculator.cc │ │ ├── set_alpha_calculator.proto │ │ └── sobel_edges_calculator.cc │ ├── internal │ │ ├── BUILD │ │ ├── callback_packet_calculator.cc │ │ └── callback_packet_calculator.proto │ ├── tengine │ │ ├── BUILD │ │ ├── retina_anchors_calculator.cc │ │ ├── retina_anchors_calculator.proto │ │ ├── tengine_converter_calculator.cc │ │ ├── tengine_converter_calculator.proto │ │ ├── tengine_inference_calculator.cc │ │ ├── tengine_inference_calculator.proto │ │ ├── tengine_retina_tensors_to_detections_calculator.cc │ │ ├── tengine_retina_tensors_to_detections_calculator.proto │ │ ├── tengine_tensors_to_classification_calculator.cc │ │ ├── tengine_tensors_to_classification_calculator.proto │ │ ├── tengine_yolov5_tensors_to_detections_calculator.cc │ │ └── tengine_yolov5_tensors_to_detections_calculator.proto │ ├── tensor │ │ ├── BUILD │ │ ├── image_to_tensor_calculator.cc │ │ ├── image_to_tensor_calculator.proto │ │ ├── image_to_tensor_calculator_test.cc │ │ ├── image_to_tensor_converter.h │ │ ├── image_to_tensor_converter_gl_buffer.cc │ │ ├── image_to_tensor_converter_gl_buffer.h │ │ ├── image_to_tensor_converter_gl_texture.cc │ │ ├── image_to_tensor_converter_gl_texture.h │ │ ├── image_to_tensor_converter_gl_utils.cc │ │ ├── image_to_tensor_converter_gl_utils.h │ │ ├── image_to_tensor_converter_gl_utils_test.cc │ │ ├── image_to_tensor_converter_metal.cc │ │ ├── image_to_tensor_converter_metal.h │ │ ├── image_to_tensor_converter_opencv.cc │ │ ├── image_to_tensor_converter_opencv.h │ │ ├── image_to_tensor_utils.cc │ │ ├── image_to_tensor_utils.h │ │ ├── image_to_tensor_utils_test.cc │ │ ├── inference_calculator.cc │ │ ├── inference_calculator.h │ │ ├── inference_calculator.proto │ │ ├── inference_calculator_cpu.cc │ │ ├── inference_calculator_face_detection_test.cc │ │ ├── inference_calculator_gl.cc │ │ ├── inference_calculator_metal.cc │ │ ├── inference_calculator_test.cc │ │ ├── tensor_converter_calculator.cc │ │ ├── tensor_converter_calculator.proto │ │ ├── tensor_converter_calculator_test.cc │ │ ├── tensors_to_classification_calculator.cc │ │ ├── tensors_to_classification_calculator.proto │ │ ├── tensors_to_classification_calculator_test.cc │ │ ├── tensors_to_detections_calculator.cc │ │ ├── tensors_to_detections_calculator.proto │ │ ├── tensors_to_floats_calculator.cc │ │ ├── tensors_to_floats_calculator.proto │ │ ├── tensors_to_floats_calculator_test.cc │ │ ├── tensors_to_landmarks_calculator.cc │ │ ├── tensors_to_landmarks_calculator.proto │ │ ├── tensors_to_segmentation_calculator.cc │ │ ├── tensors_to_segmentation_calculator.proto │ │ └── testdata │ │ │ ├── add.bin │ │ │ ├── expected_detection.pbtxt │ │ │ ├── face_detection_expected.png │ │ │ ├── face_detection_test.pbtxt │ │ │ ├── image_to_tensor │ │ │ ├── input.jpg │ │ │ ├── large_sub_rect.png │ │ │ ├── large_sub_rect_border_zero.png │ │ │ ├── large_sub_rect_keep_aspect.png │ │ │ ├── large_sub_rect_keep_aspect_border_zero.png │ │ │ ├── large_sub_rect_keep_aspect_with_rotation.png │ │ │ ├── large_sub_rect_keep_aspect_with_rotation_border_zero.png │ │ │ ├── medium_sub_rect_keep_aspect.png │ │ │ ├── medium_sub_rect_keep_aspect_border_zero.png │ │ │ ├── medium_sub_rect_keep_aspect_with_rotation.png │ │ │ ├── medium_sub_rect_keep_aspect_with_rotation_border_zero.png │ │ │ ├── medium_sub_rect_with_rotation.png │ │ │ ├── medium_sub_rect_with_rotation_border_zero.png │ │ │ └── noop_except_range.png │ │ │ └── labelmap.txt │ ├── tensorrt │ │ ├── BUILD │ │ ├── tensorrt_converter_calculator.cc │ │ ├── tensorrt_converter_calculator.proto │ │ ├── tensorrt_inference_calculator.cc │ │ ├── tensorrt_inference_calculator.proto │ │ ├── tensorrt_retina_tensors_to_detections_calculator.cc │ │ ├── tensorrt_retina_tensors_to_detections_calculator.proto │ │ ├── tensorrt_tensors_to_classification_calculator.cc │ │ ├── tensorrt_tensors_to_classification_calculator.proto │ │ ├── tensorrt_yolov5_tensors_to_detections_calculator.cc │ │ └── tensorrt_yolov5_tensors_to_detections_calculator.proto │ ├── util │ │ ├── BUILD │ │ ├── alignment_points_to_rects_calculator.cc │ │ ├── annotation_overlay_calculator.cc │ │ ├── annotation_overlay_calculator.proto │ │ ├── association_calculator.h │ │ ├── association_calculator.proto │ │ ├── association_calculator_test.cc │ │ ├── association_detection_calculator.cc │ │ ├── association_norm_rect_calculator.cc │ │ ├── clock_latency_calculator.cc │ │ ├── clock_timestamp_calculator.cc │ │ ├── collection_has_min_size_calculator.cc │ │ ├── collection_has_min_size_calculator.h │ │ ├── collection_has_min_size_calculator.proto │ │ ├── collection_has_min_size_calculator_test.cc │ │ ├── detection_classifications_merger_calculator.cc │ │ ├── detection_classifications_merger_calculator_test.cc │ │ ├── detection_label_id_to_text_calculator.cc │ │ ├── detection_label_id_to_text_calculator.proto │ │ ├── detection_letterbox_removal_calculator.cc │ │ ├── detection_letterbox_removal_calculator_test.cc │ │ ├── detection_projection_calculator.cc │ │ ├── detection_projection_calculator_test.cc │ │ ├── detection_to_landmarks_calculator.cc │ │ ├── detection_unique_id_calculator.cc │ │ ├── detections_to_rects_calculator.cc │ │ ├── detections_to_rects_calculator.h │ │ ├── detections_to_rects_calculator.proto │ │ ├── detections_to_rects_calculator_test.cc │ │ ├── detections_to_render_data_calculator.cc │ │ ├── detections_to_render_data_calculator.proto │ │ ├── detections_to_render_data_calculator_test.cc │ │ ├── detections_to_timed_box_list_calculator.cc │ │ ├── filter_collection_calculator.cc │ │ ├── filter_collection_calculator.h │ │ ├── from_image_calculator.cc │ │ ├── labels_to_render_data_calculator.cc │ │ ├── labels_to_render_data_calculator.proto │ │ ├── landmark_letterbox_removal_calculator.cc │ │ ├── landmark_letterbox_removal_calculator_test.cc │ │ ├── landmark_projection_calculator.cc │ │ ├── landmark_projection_calculator.proto │ │ ├── landmark_projection_calculator_test.cc │ │ ├── landmark_visibility_calculator.cc │ │ ├── landmarks_smoothing_calculator.cc │ │ ├── landmarks_smoothing_calculator.proto │ │ ├── landmarks_to_detection_calculator.cc │ │ ├── landmarks_to_detection_calculator.proto │ │ ├── landmarks_to_floats_calculator.cc │ │ ├── landmarks_to_floats_calculator.proto │ │ ├── landmarks_to_render_data_calculator.cc │ │ ├── landmarks_to_render_data_calculator.h │ │ ├── landmarks_to_render_data_calculator.proto │ │ ├── latency.proto │ │ ├── local_file_contents_calculator.cc │ │ ├── local_file_contents_calculator.proto │ │ ├── local_file_pattern_contents_calculator.cc │ │ ├── logic_calculator.cc │ │ ├── logic_calculator.proto │ │ ├── non_max_suppression_calculator.cc │ │ ├── non_max_suppression_calculator.proto │ │ ├── packet_frequency.proto │ │ ├── packet_frequency_calculator.cc │ │ ├── packet_frequency_calculator.proto │ │ ├── packet_frequency_calculator_test.cc │ │ ├── packet_latency_calculator.cc │ │ ├── packet_latency_calculator.proto │ │ ├── packet_latency_calculator_test.cc │ │ ├── rect_projection_calculator.cc │ │ ├── rect_to_render_data_calculator.cc │ │ ├── rect_to_render_data_calculator.proto │ │ ├── rect_to_render_scale_calculator.cc │ │ ├── rect_to_render_scale_calculator.proto │ │ ├── rect_transformation_calculator.cc │ │ ├── rect_transformation_calculator.proto │ │ ├── refine_landmarks_from_heatmap_calculator.cc │ │ ├── refine_landmarks_from_heatmap_calculator.h │ │ ├── refine_landmarks_from_heatmap_calculator.proto │ │ ├── refine_landmarks_from_heatmap_calculator_test.cc │ │ ├── set_landmark_visibility_calculator.cc │ │ ├── thresholding_calculator.cc │ │ ├── thresholding_calculator.proto │ │ ├── timed_box_list_id_to_label_calculator.cc │ │ ├── timed_box_list_id_to_label_calculator.proto │ │ ├── timed_box_list_to_render_data_calculator.cc │ │ ├── timed_box_list_to_render_data_calculator.proto │ │ ├── to_image_calculator.cc │ │ ├── top_k_scores_calculator.cc │ │ ├── top_k_scores_calculator.proto │ │ ├── top_k_scores_calculator_test.cc │ │ ├── visibility_copy_calculator.cc │ │ ├── visibility_copy_calculator.proto │ │ ├── visibility_smoothing_calculator.cc │ │ ├── visibility_smoothing_calculator.proto │ │ └── world_landmark_projection_calculator.cc │ └── video │ │ ├── BUILD │ │ ├── box_detector_calculator.cc │ │ ├── box_detector_calculator.proto │ │ ├── box_tracker_calculator.cc │ │ ├── box_tracker_calculator.proto │ │ ├── flow_packager_calculator.cc │ │ ├── flow_packager_calculator.proto │ │ ├── flow_to_image_calculator.cc │ │ ├── flow_to_image_calculator.proto │ │ ├── motion_analysis_calculator.cc │ │ ├── motion_analysis_calculator.proto │ │ ├── opencv_video_decoder_calculator.cc │ │ ├── opencv_video_decoder_calculator_test.cc │ │ ├── opencv_video_encoder_calculator.cc │ │ ├── opencv_video_encoder_calculator.proto │ │ ├── opencv_video_encoder_calculator_test.cc │ │ ├── testdata │ │ ├── lenna.png │ │ ├── parallel_tracker_graph.pbtxt │ │ └── tracker_graph.pbtxt │ │ ├── tool │ │ ├── BUILD │ │ ├── flow_quantizer_model.cc │ │ ├── flow_quantizer_model.h │ │ └── flow_quantizer_model.proto │ │ ├── tracked_detection_manager_calculator.cc │ │ ├── tracked_detection_manager_calculator.proto │ │ ├── tracking_graph_test.cc │ │ ├── tvl1_optical_flow_calculator.cc │ │ ├── tvl1_optical_flow_calculator_test.cc │ │ ├── video_pre_stream_calculator.cc │ │ ├── video_pre_stream_calculator.proto │ │ └── video_pre_stream_calculator_test.cc ├── docs │ ├── README.md │ ├── autoflip.md │ ├── face_detection_desktop.md │ ├── face_detection_mobile_gpu.md │ ├── hair_segmentation_mobile_gpu.md │ ├── hand_tracking_desktop.md │ ├── hand_tracking_mobile_gpu.md │ ├── multi_hand_tracking_mobile_gpu.md │ ├── object_detection_desktop.md │ ├── object_detection_mobile_gpu.md │ ├── object_tracking_mobile_gpu.md │ ├── objectron_mobile_gpu.md │ └── template_matching_mobile_cpu.md ├── examples │ ├── __init__.py │ └── desktop │ │ ├── BUILD │ │ ├── README.md │ │ ├── __init__.py │ │ ├── demo_run_graph_main.cc │ │ ├── demo_run_graph_main_gpu.cc │ │ ├── hello_world │ │ ├── BUILD │ │ └── hello_world.cc │ │ ├── media_sequence │ │ ├── BUILD │ │ ├── README.md │ │ ├── __init__.py │ │ ├── charades_dataset.py │ │ ├── demo_dataset.py │ │ ├── kinetics_dataset.py │ │ ├── read_demo_dataset.py │ │ └── run_graph_file_io_main.cc │ │ ├── object_detection │ │ └── BUILD │ │ └── simple_run_graph_main.cc ├── framework │ ├── BUILD │ ├── api2 │ │ ├── BUILD │ │ ├── README.md │ │ ├── builder.h │ │ ├── builder_test.cc │ │ ├── const_str.h │ │ ├── contract.h │ │ ├── contract_test.cc │ │ ├── node.cc │ │ ├── node.h │ │ ├── node_test.cc │ │ ├── packet.cc │ │ ├── packet.h │ │ ├── packet_nc.cc │ │ ├── packet_test.cc │ │ ├── port.h │ │ ├── port_test.cc │ │ ├── subgraph_test.cc │ │ ├── tag.h │ │ ├── tag_test.cc │ │ ├── test_contracts.h │ │ ├── tuple.h │ │ ├── tuple_test.cc │ │ ├── type_list.h │ │ └── type_list_test.cc │ ├── basic_types_registration.cc │ ├── calculator.proto │ ├── calculator_base.cc │ ├── calculator_base.h │ ├── calculator_base_test.cc │ ├── calculator_context.cc │ ├── calculator_context.h │ ├── calculator_context_manager.cc │ ├── calculator_context_manager.h │ ├── calculator_context_test.cc │ ├── calculator_contract.cc │ ├── calculator_contract.h │ ├── calculator_contract_test.cc │ ├── calculator_contract_test.proto │ ├── calculator_framework.h │ ├── calculator_graph.cc │ ├── calculator_graph.h │ ├── calculator_graph_bounds_test.cc │ ├── calculator_graph_event_loop_test.cc │ ├── calculator_graph_side_packet_test.cc │ ├── calculator_graph_stopping_test.cc │ ├── calculator_graph_test.cc │ ├── calculator_node.cc │ ├── calculator_node.h │ ├── calculator_node_test.cc │ ├── calculator_options.proto │ ├── calculator_parallel_execution_test.cc │ ├── calculator_profile.proto │ ├── calculator_registry.h │ ├── calculator_runner.cc │ ├── calculator_runner.h │ ├── calculator_runner_test.cc │ ├── calculator_state.cc │ ├── calculator_state.h │ ├── camera_intrinsics.h │ ├── collection.h │ ├── collection_item_id.cc │ ├── collection_item_id.h │ ├── collection_test.cc │ ├── counter.h │ ├── counter_factory.cc │ ├── counter_factory.h │ ├── delegating_executor.cc │ ├── delegating_executor.h │ ├── demangle.h │ ├── deps │ │ ├── BUILD │ │ ├── aligned_malloc_and_free.h │ │ ├── canonical_errors.h │ │ ├── cleanup.h │ │ ├── clock.cc │ │ ├── clock.h │ │ ├── expand_template.bzl │ │ ├── file_helpers.cc │ │ ├── file_helpers.h │ │ ├── file_path.cc │ │ ├── file_path.h │ │ ├── image_resizer.h │ │ ├── map_util.h │ │ ├── mathutil.h │ │ ├── mathutil_unittest.cc │ │ ├── message_matchers.h │ │ ├── monotonic_clock.cc │ │ ├── monotonic_clock.h │ │ ├── monotonic_clock_test.cc │ │ ├── no_destructor.h │ │ ├── numbers.h │ │ ├── point2.h │ │ ├── proto_descriptor.proto │ │ ├── random_base.h │ │ ├── re2.h │ │ ├── rectangle.h │ │ ├── registration.cc │ │ ├── registration.h │ │ ├── registration_token.cc │ │ ├── registration_token.h │ │ ├── registration_token_test.cc │ │ ├── ret_check.cc │ │ ├── ret_check.h │ │ ├── safe_int.h │ │ ├── safe_int_test.cc │ │ ├── singleton.h │ │ ├── source_location.h │ │ ├── status.cc │ │ ├── status.h │ │ ├── status_builder.cc │ │ ├── status_builder.h │ │ ├── status_builder_test.cc │ │ ├── status_macros.h │ │ ├── status_matchers.h │ │ ├── status_test.cc │ │ ├── strong_int.h │ │ ├── thread_options.h │ │ ├── threadpool.h │ │ ├── threadpool_pthread_impl.cc │ │ ├── threadpool_std_thread_impl.cc │ │ ├── threadpool_test.cc │ │ ├── topologicalsorter.cc │ │ ├── topologicalsorter.h │ │ ├── topologicalsorter_test.cc │ │ └── vector.h │ ├── encode_binary_proto.bzl │ ├── executor.cc │ ├── executor.h │ ├── executor_external_build_test.cc │ ├── formats │ │ ├── BUILD │ │ ├── annotation │ │ │ ├── BUILD │ │ │ ├── locus.proto │ │ │ └── rasterization.proto │ │ ├── classification.proto │ │ ├── deleting_file.cc │ │ ├── deleting_file.h │ │ ├── detection.proto │ │ ├── image.cc │ │ ├── image.h │ │ ├── image_file_properties.proto │ │ ├── image_format.proto │ │ ├── image_frame.cc │ │ ├── image_frame.h │ │ ├── image_frame_opencv.cc │ │ ├── image_frame_opencv.h │ │ ├── image_frame_opencv_test.cc │ │ ├── image_frame_pool.cc │ │ ├── image_frame_pool.h │ │ ├── image_frame_pool_test.cc │ │ ├── image_multi_pool.cc │ │ ├── image_multi_pool.h │ │ ├── image_opencv.cc │ │ ├── image_opencv.h │ │ ├── landmark.proto │ │ ├── location.cc │ │ ├── location.h │ │ ├── location_data.proto │ │ ├── matrix.cc │ │ ├── matrix.h │ │ ├── matrix_data.proto │ │ ├── motion │ │ │ ├── BUILD │ │ │ ├── optical_flow_field.cc │ │ │ ├── optical_flow_field.h │ │ │ ├── optical_flow_field_data.proto │ │ │ └── optical_flow_field_test.cc │ │ ├── object_detection │ │ │ ├── BUILD │ │ │ └── anchor.proto │ │ ├── rect.proto │ │ ├── tensor.cc │ │ ├── tensor.h │ │ ├── tensor_test.cc │ │ ├── time_series_header.proto │ │ ├── video_stream_header.h │ │ └── yuv_image.h │ ├── graph_output_stream.cc │ ├── graph_output_stream.h │ ├── graph_service.h │ ├── graph_service_manager.cc │ ├── graph_service_manager.h │ ├── graph_service_manager_test.cc │ ├── graph_service_test.cc │ ├── graph_validation.h │ ├── graph_validation_test.cc │ ├── input_side_packet_handler.cc │ ├── input_side_packet_handler.h │ ├── input_stream.h │ ├── input_stream_handler.cc │ ├── input_stream_handler.h │ ├── input_stream_manager.cc │ ├── input_stream_manager.h │ ├── input_stream_manager_test.cc │ ├── input_stream_shard.cc │ ├── input_stream_shard.h │ ├── legacy_calculator_support.cc │ ├── legacy_calculator_support.h │ ├── lifetime_tracker.h │ ├── mediapipe_cc_test.bzl │ ├── mediapipe_options.proto │ ├── mediapipe_profiling.h │ ├── mediapipe_register_type.bzl │ ├── output_side_packet.h │ ├── output_side_packet_impl.cc │ ├── output_side_packet_impl.h │ ├── output_stream.h │ ├── output_stream_handler.cc │ ├── output_stream_handler.h │ ├── output_stream_manager.cc │ ├── output_stream_manager.h │ ├── output_stream_manager_test.cc │ ├── output_stream_poller.h │ ├── output_stream_shard.cc │ ├── output_stream_shard.h │ ├── packet.cc │ ├── packet.h │ ├── packet_delete_test.cc │ ├── packet_factory.proto │ ├── packet_generator.h │ ├── packet_generator.proto │ ├── packet_generator_graph.cc │ ├── packet_generator_graph.h │ ├── packet_generator_test.cc │ ├── packet_registration_test.cc │ ├── packet_set.h │ ├── packet_test.cc │ ├── packet_test.proto │ ├── packet_type.cc │ ├── packet_type.h │ ├── platform_specific_profiling.h │ ├── port.h │ ├── port │ │ ├── BUILD │ │ ├── advanced_proto_inc.h │ │ ├── advanced_proto_lite_inc.h │ │ ├── aligned_malloc_and_free.h │ │ ├── any_proto.h │ │ ├── benchmark.h │ │ ├── build_config.bzl │ │ ├── canonical_errors.h │ │ ├── core_proto_inc.h │ │ ├── file_helpers.h │ │ ├── gmock.h │ │ ├── gtest.h │ │ ├── image_resizer.h │ │ ├── integral_types.h │ │ ├── logging.h │ │ ├── map_util.h │ │ ├── numbers.h │ │ ├── opencv_calib3d_inc.h │ │ ├── opencv_core_inc.h │ │ ├── opencv_features2d_inc.h │ │ ├── opencv_highgui_inc.h │ │ ├── opencv_imgcodecs_inc.h │ │ ├── opencv_imgproc_inc.h │ │ ├── opencv_video_inc.h │ │ ├── parse_text_proto.h │ │ ├── point2.h │ │ ├── port.h │ │ ├── proto_ns.h │ │ ├── re2.h │ │ ├── rectangle.h │ │ ├── ret_check.h │ │ ├── singleton.h │ │ ├── source_location.h │ │ ├── status.h │ │ ├── status_builder.h │ │ ├── status_macros.h │ │ ├── status_matchers.h │ │ ├── statusor.h │ │ ├── threadpool.h │ │ ├── topologicalsorter.h │ │ └── vector.h │ ├── profiler │ │ ├── BUILD │ │ ├── circular_buffer.h │ │ ├── circular_buffer_test.cc │ │ ├── gl_context_profiler.cc │ │ ├── graph_profiler.cc │ │ ├── graph_profiler.h │ │ ├── graph_profiler_ios_test.mm │ │ ├── graph_profiler_stub.h │ │ ├── graph_profiler_test.cc │ │ ├── graph_tracer.cc │ │ ├── graph_tracer.h │ │ ├── graph_tracer_test.cc │ │ ├── profiler_resource_util.cc │ │ ├── profiler_resource_util.h │ │ ├── profiler_resource_util_android.cc │ │ ├── profiler_resource_util_common.cc │ │ ├── profiler_resource_util_ios.cc │ │ ├── reporter │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── print_profile.cc │ │ │ ├── reporter.cc │ │ │ ├── reporter.h │ │ │ ├── statistic.cc │ │ │ └── statistic.h │ │ ├── reporter_test.cc │ │ ├── sharded_map.h │ │ ├── sharded_map_test.cc │ │ ├── test_context_builder.h │ │ ├── testdata │ │ │ ├── BUILD │ │ │ ├── profile_latency_test.pbtxt │ │ │ ├── profile_opencv_0.pbtxt │ │ │ ├── profile_opencv_1.pbtxt │ │ │ └── profile_process_test.pbtxt │ │ ├── testing │ │ │ ├── BUILD │ │ │ └── simple_calculator.cc │ │ ├── trace_buffer.h │ │ ├── trace_builder.cc │ │ └── trace_builder.h │ ├── scheduler.cc │ ├── scheduler.h │ ├── scheduler_queue.cc │ ├── scheduler_queue.h │ ├── scheduler_shared.h │ ├── status_handler.h │ ├── status_handler.proto │ ├── stream_handler.proto │ ├── stream_handler │ │ ├── BUILD │ │ ├── barrier_input_stream_handler.cc │ │ ├── barrier_input_stream_handler_test.cc │ │ ├── default_input_stream_handler.cc │ │ ├── default_input_stream_handler.h │ │ ├── default_input_stream_handler.proto │ │ ├── default_input_stream_handler_test.cc │ │ ├── early_close_input_stream_handler.cc │ │ ├── fixed_size_input_stream_handler.cc │ │ ├── fixed_size_input_stream_handler.proto │ │ ├── fixed_size_input_stream_handler_test.cc │ │ ├── immediate_input_stream_handler.cc │ │ ├── immediate_input_stream_handler_test.cc │ │ ├── in_order_output_stream_handler.cc │ │ ├── in_order_output_stream_handler.h │ │ ├── mux_input_stream_handler.cc │ │ ├── mux_input_stream_handler_test.cc │ │ ├── set_input_stream_handler_test.cc │ │ ├── sync_set_input_stream_handler.cc │ │ ├── sync_set_input_stream_handler.proto │ │ ├── sync_set_input_stream_handler_test.cc │ │ ├── timestamp_align_input_stream_handler.cc │ │ ├── timestamp_align_input_stream_handler.proto │ │ └── timestamp_align_input_stream_handler_test.cc │ ├── subgraph.cc │ ├── subgraph.h │ ├── subgraph_test.cc │ ├── test_calculators.cc │ ├── test_calculators.proto │ ├── test_service.cc │ ├── test_service.h │ ├── testdata │ │ ├── BUILD │ │ ├── night_light_calculator.proto │ │ ├── sky_light_calculator.proto │ │ ├── zoo_mutation_calculator.proto │ │ └── zoo_mutator.proto │ ├── thread_pool_executor.cc │ ├── thread_pool_executor.h │ ├── thread_pool_executor.proto │ ├── throttler.h │ ├── timestamp.cc │ ├── timestamp.h │ ├── timestamp_test.cc │ ├── tool │ │ ├── BUILD │ │ ├── build_defs.bzl │ │ ├── calculator_graph_template.proto │ │ ├── container_util.cc │ │ ├── container_util.h │ │ ├── data_as_c_string_test.cc │ │ ├── encode_as_c_string.cc │ │ ├── executor_util.cc │ │ ├── executor_util.h │ │ ├── executor_util_test.cc │ │ ├── fill_packet_set.cc │ │ ├── fill_packet_set.h │ │ ├── fill_packet_set_test.cc │ │ ├── mediapipe_graph.bzl │ │ ├── name_util.cc │ │ ├── name_util.h │ │ ├── node_chain_subgraph.proto │ │ ├── options_map.h │ │ ├── options_util.cc │ │ ├── options_util.h │ │ ├── options_util_test.cc │ │ ├── proto_util_lite.cc │ │ ├── proto_util_lite.h │ │ ├── simple_subgraph_template.cc │ │ ├── simulation_clock.cc │ │ ├── simulation_clock.h │ │ ├── simulation_clock_executor.cc │ │ ├── simulation_clock_executor.h │ │ ├── simulation_clock_test.cc │ │ ├── sink.cc │ │ ├── sink.h │ │ ├── sink_test.cc │ │ ├── source.cc │ │ ├── source.proto │ │ ├── status_util.cc │ │ ├── status_util.h │ │ ├── status_util_test.cc │ │ ├── subgraph_expansion.cc │ │ ├── subgraph_expansion.h │ │ ├── subgraph_expansion_test.cc │ │ ├── switch_container.cc │ │ ├── switch_container.proto │ │ ├── switch_container_test.cc │ │ ├── switch_demux_calculator.cc │ │ ├── switch_mux_calculator.cc │ │ ├── tag_map.cc │ │ ├── tag_map.h │ │ ├── tag_map_helper.cc │ │ ├── tag_map_helper.h │ │ ├── tag_map_test.cc │ │ ├── template_expander.cc │ │ ├── template_expander.h │ │ ├── template_parser.cc │ │ ├── template_parser.h │ │ ├── test_util.cc │ │ ├── test_util.h │ │ ├── testdata │ │ │ ├── BUILD │ │ │ ├── dub_quad_test_subgraph.pbtxt │ │ │ ├── nested_test_subgraph.pbtxt │ │ │ └── test.pbtxt │ │ ├── text_to_binary_graph.cc │ │ ├── type_util.h │ │ ├── validate.cc │ │ ├── validate.h │ │ ├── validate_name.cc │ │ ├── validate_name.h │ │ ├── validate_name_test.cc │ │ ├── validate_type.cc │ │ └── validate_type.h │ ├── transitive_protos.bzl │ ├── type_map.h │ ├── validated_graph_config.cc │ ├── validated_graph_config.h │ └── validated_graph_config_test.cc ├── gpu │ ├── BUILD │ ├── MPPGraphGPUData.h │ ├── MPPGraphGPUData.mm │ ├── MPPGraphGPUDataTests.mm │ ├── MPPMetalHelper.h │ ├── MPPMetalHelper.mm │ ├── MPPMetalUtil.h │ ├── MPPMetalUtil.mm │ ├── copy_calculator.proto │ ├── egl_surface_holder.h │ ├── gl_base.h │ ├── gl_calculator_helper.cc │ ├── gl_calculator_helper.h │ ├── gl_calculator_helper_impl.h │ ├── gl_calculator_helper_impl_android.cc │ ├── gl_calculator_helper_impl_common.cc │ ├── gl_calculator_helper_impl_ios.mm │ ├── gl_context.cc │ ├── gl_context.h │ ├── gl_context_eagl.cc │ ├── gl_context_egl.cc │ ├── gl_context_internal.h │ ├── gl_context_nsgl.cc │ ├── gl_context_options.proto │ ├── gl_context_webgl.cc │ ├── gl_ios_test.mm │ ├── gl_quad_renderer.cc │ ├── gl_quad_renderer.h │ ├── gl_scaler_calculator.cc │ ├── gl_scaler_calculator.proto │ ├── gl_simple_calculator.cc │ ├── gl_simple_calculator.h │ ├── gl_simple_shaders.cc │ ├── gl_simple_shaders.h │ ├── gl_surface_sink_calculator.cc │ ├── gl_surface_sink_calculator.proto │ ├── gl_texture_buffer.cc │ ├── gl_texture_buffer.h │ ├── gl_texture_buffer_pool.cc │ ├── gl_texture_buffer_pool.h │ ├── gl_thread_collector.h │ ├── gpu_buffer.h │ ├── gpu_buffer_format.cc │ ├── gpu_buffer_format.h │ ├── gpu_buffer_multi_pool.cc │ ├── gpu_buffer_multi_pool.h │ ├── gpu_buffer_test.cc │ ├── gpu_buffer_to_image_frame_calculator.cc │ ├── gpu_origin.proto │ ├── gpu_service.cc │ ├── gpu_service.h │ ├── gpu_shared_data_internal.cc │ ├── gpu_shared_data_internal.h │ ├── gpu_test_base.h │ ├── graph_support.h │ ├── image_frame_to_gpu_buffer_calculator.cc │ ├── metal.bzl │ ├── metal_shader_base.h │ ├── pixel_buffer_pool_util.h │ ├── pixel_buffer_pool_util.mm │ ├── scale_mode.proto │ ├── shader_util.cc │ └── shader_util.h ├── graphs │ └── object_detection │ │ ├── BUILD │ │ └── object_detection_desktop_live.pbtxt ├── interface │ ├── BUILD │ ├── common │ │ ├── buffers.h │ │ ├── common.h │ │ ├── half.h │ │ ├── logger.h │ │ └── logging.h │ ├── inferpipe_tengine.cc │ ├── inferpipe_tengine.h │ ├── inferpipe_tensorrt.cc │ └── inferpipe_tensorrt.h ├── models │ ├── BUILD │ └── yolov5_object_detection_labelmap.txt ├── objc │ ├── BUILD │ ├── CFHolder.h │ ├── CFHolderTests.mm │ ├── CGImageRefUtils.h │ ├── CGImageRefUtils.mm │ ├── MPPCameraInputSource.h │ ├── MPPCameraInputSource.m │ ├── MPPDisplayLinkWeakTarget.h │ ├── MPPDisplayLinkWeakTarget.m │ ├── MPPGLViewRenderer.h │ ├── MPPGLViewRenderer.mm │ ├── MPPGpuSimpleTest.mm │ ├── MPPGraph.h │ ├── MPPGraph.mm │ ├── MPPGraphTestBase.h │ ├── MPPGraphTestBase.mm │ ├── MPPGraphTests.mm │ ├── MPPInputSource.h │ ├── MPPInputSource.m │ ├── MPPLayerRenderer.h │ ├── MPPLayerRenderer.m │ ├── MPPPlayerInputSource.h │ ├── MPPPlayerInputSource.m │ ├── MPPTimestampConverter.h │ ├── MPPTimestampConverter.mm │ ├── NSError+util_status.h │ ├── NSError+util_status.mm │ ├── Weakify.h │ ├── testdata │ │ ├── googlelogo_color_272x92dp.png │ │ ├── googlelogo_color_272x92dp_luminance.png │ │ ├── sergey.png │ │ ├── sobel_reference.png │ │ └── test_sobel.pbtxt │ ├── util.cc │ └── util.h ├── python │ ├── BUILD │ ├── __init__.py │ ├── calculator_graph_test.py │ ├── framework_bindings.cc │ ├── image_frame_test.py │ ├── image_test.py │ ├── packet_creator.py │ ├── packet_getter.py │ ├── packet_test.py │ ├── pybind │ │ ├── BUILD │ │ ├── calculator_graph.cc │ │ ├── calculator_graph.h │ │ ├── image.cc │ │ ├── image.h │ │ ├── image_frame.cc │ │ ├── image_frame.h │ │ ├── image_frame_util.h │ │ ├── matrix.cc │ │ ├── matrix.h │ │ ├── packet.cc │ │ ├── packet.h │ │ ├── packet_creator.cc │ │ ├── packet_creator.h │ │ ├── packet_getter.cc │ │ ├── packet_getter.h │ │ ├── resource_util.cc │ │ ├── resource_util.h │ │ ├── timestamp.cc │ │ ├── timestamp.h │ │ ├── util.h │ │ ├── validated_graph_config.cc │ │ └── validated_graph_config.h │ ├── solution_base.py │ ├── solution_base_test.py │ ├── solutions │ │ ├── __init__.py │ │ ├── download_utils.py │ │ ├── drawing_utils.py │ │ ├── drawing_utils_test.py │ │ ├── face_detection.py │ │ ├── face_detection_test.py │ │ ├── face_mesh.py │ │ ├── face_mesh_test.py │ │ ├── hands.py │ │ ├── hands_test.py │ │ ├── holistic.py │ │ ├── holistic_test.py │ │ ├── objectron.py │ │ ├── objectron_test.py │ │ ├── pose.py │ │ ├── pose_test.py │ │ ├── selfie_segmentation.py │ │ └── selfie_segmentation_test.py │ └── timestamp_test.py └── util │ ├── BUILD │ ├── __init__.py │ ├── android │ ├── BUILD │ ├── asset_manager_util.cc │ ├── asset_manager_util.h │ ├── file │ │ └── base │ │ │ ├── BUILD │ │ │ ├── file.cc │ │ │ ├── file.h │ │ │ ├── filesystem.cc │ │ │ ├── filesystem.h │ │ │ ├── helpers.cc │ │ │ └── helpers.h │ └── logging.h │ ├── annotation_renderer.cc │ ├── annotation_renderer.h │ ├── audio_decoder.cc │ ├── audio_decoder.h │ ├── audio_decoder.proto │ ├── color.proto │ ├── cpu_util.cc │ ├── cpu_util.h │ ├── filtering │ ├── BUILD │ ├── low_pass_filter.cc │ ├── low_pass_filter.h │ ├── low_pass_filter_test.cc │ ├── one_euro_filter.cc │ ├── one_euro_filter.h │ ├── relative_velocity_filter.cc │ ├── relative_velocity_filter.h │ └── relative_velocity_filter_test.cc │ ├── header_util.cc │ ├── header_util.h │ ├── image_frame_util.cc │ ├── image_frame_util.h │ ├── render_data.proto │ ├── resource_cache.h │ ├── resource_cache_test.cc │ ├── resource_util.cc │ ├── resource_util.h │ ├── resource_util_android.cc │ ├── resource_util_apple.cc │ ├── resource_util_custom.h │ ├── resource_util_default.cc │ ├── resource_util_internal.h │ ├── sequence │ ├── BUILD │ ├── README.md │ ├── __init__.py │ ├── media_sequence.cc │ ├── media_sequence.h │ ├── media_sequence.py │ ├── media_sequence_test.cc │ ├── media_sequence_test.py │ ├── media_sequence_util.h │ ├── media_sequence_util.py │ ├── media_sequence_util_test.cc │ └── media_sequence_util_test.py │ ├── tensor_to_detection.cc │ ├── tensor_to_detection.h │ ├── tflite │ ├── BUILD │ ├── config.h │ ├── cpu_op_resolver.cc │ ├── cpu_op_resolver.h │ ├── op_resolver.cc │ ├── op_resolver.h │ ├── operations │ │ ├── BUILD │ │ ├── max_pool_argmax.cc │ │ ├── max_pool_argmax.h │ │ ├── max_unpooling.cc │ │ ├── max_unpooling.h │ │ ├── transpose_conv_bias.cc │ │ └── transpose_conv_bias.h │ ├── tflite_gpu_runner.cc │ ├── tflite_gpu_runner.h │ ├── tflite_model_loader.cc │ └── tflite_model_loader.h │ ├── time_series_test_util.h │ ├── time_series_util.cc │ ├── time_series_util.h │ ├── time_series_util_test.cc │ └── tracking │ ├── BUILD │ ├── box_detector.cc │ ├── box_detector.h │ ├── box_detector.proto │ ├── box_tracker.cc │ ├── box_tracker.h │ ├── box_tracker.proto │ ├── box_tracker_test.cc │ ├── camera_motion.cc │ ├── camera_motion.h │ ├── camera_motion.proto │ ├── flow_packager.cc │ ├── flow_packager.h │ ├── flow_packager.proto │ ├── frame_selection.proto │ ├── frame_selection_solution_evaluator.proto │ ├── image_util.cc │ ├── image_util.h │ ├── image_util_test.cc │ ├── measure_time.cc │ ├── measure_time.h │ ├── motion_analysis.cc │ ├── motion_analysis.h │ ├── motion_analysis.proto │ ├── motion_estimation.cc │ ├── motion_estimation.h │ ├── motion_estimation.proto │ ├── motion_models.cc │ ├── motion_models.h │ ├── motion_models.proto │ ├── motion_models_cv.cc │ ├── motion_models_cv.h │ ├── motion_models_test.cc │ ├── motion_saliency.cc │ ├── motion_saliency.h │ ├── motion_saliency.proto │ ├── parallel_invoker.cc │ ├── parallel_invoker.h │ ├── parallel_invoker_forbid_mixed.cc │ ├── parallel_invoker_test.cc │ ├── push_pull_filtering.h │ ├── push_pull_filtering.proto │ ├── region_flow.cc │ ├── region_flow.h │ ├── region_flow.proto │ ├── region_flow_computation.cc │ ├── region_flow_computation.h │ ├── region_flow_computation.proto │ ├── region_flow_computation_test.cc │ ├── region_flow_visualization.cc │ ├── region_flow_visualization.h │ ├── streaming_buffer.cc │ ├── streaming_buffer.h │ ├── tone_estimation.cc │ ├── tone_estimation.h │ ├── tone_estimation.proto │ ├── tone_models.cc │ ├── tone_models.h │ ├── tone_models.proto │ ├── tracked_detection.cc │ ├── tracked_detection.h │ ├── tracked_detection_manager.cc │ ├── tracked_detection_manager.h │ ├── tracked_detection_manager_config.proto │ ├── tracked_detection_test.cc │ ├── tracking.cc │ ├── tracking.h │ ├── tracking.proto │ ├── tracking_visualization_utilities.cc │ └── tracking_visualization_utilities.h ├── requirements.txt ├── setup.py ├── setup_opencv.sh └── third_party ├── BUILD ├── benchmark.BUILD ├── build_bazel_rules_apple_bypass_test_runner_check.diff ├── ceres_solver_compatibility_fixes.diff ├── com_github_glog_glog_9779e5ea6ef59562b030248947f787d1256132ae.diff ├── com_github_glog_glog_f2cf2e1bd040fd15016af53598db0cb9b16a6655.diff ├── com_google_absl_f863b622fe13612433fdf43f76547d5edda0c93001.diff ├── com_google_googletest_9d580ea80592189e6d44fa35bcf9cdea8bf620d6.diff ├── com_google_protobuf_fixes.diff ├── easyexif.BUILD ├── eigen3 ├── BUILD ├── Eigen │ ├── Cholesky │ ├── Core │ ├── Eigenvalues │ ├── LU │ ├── OrderingMethods │ ├── QR │ ├── SVD │ ├── SparseCholesky │ └── SparseCore ├── LICENSE ├── eigen_archive.BUILD ├── unsupported │ └── Eigen │ │ ├── CXX11 │ │ ├── FixedPoint │ │ ├── Tensor │ │ ├── ThreadPool │ │ └── src │ │ │ └── FixedPoint │ │ │ ├── FixedPointTypes.h │ │ │ ├── MatMatProduct.h │ │ │ ├── MatMatProductAVX2.h │ │ │ ├── MatMatProductNEON.h │ │ │ ├── MatVecProduct.h │ │ │ ├── PacketMathAVX.h │ │ │ ├── PacketMathAVX2.h │ │ │ ├── PacketMathAVX512.h │ │ │ ├── TypeCastingAVX2.h │ │ │ └── TypeCastingAVX512.h │ │ ├── MatrixFunctions │ │ └── SpecialFunctions └── workspace.bzl ├── ffmpeg_linux.BUILD ├── ffmpeg_macos.BUILD ├── glog_no_gflags.BUILD ├── google_toolbox_for_mac.BUILD ├── interface_headers.BUILD ├── jetson_cuda.BUILD ├── jetson_tensorrt.BUILD ├── libyuv.BUILD ├── opencv_a311d.BUILD ├── opencv_android.BUILD ├── opencv_ios.BUILD ├── opencv_jetson.BUILD ├── opencv_linux.BUILD ├── opencv_macos.BUILD ├── opencv_windows.BUILD ├── org_tensorflow_compatibility_fixes.diff ├── org_tensorflow_objc_cxx17.diff ├── repo.bzl ├── stb_image_impl.diff ├── stblib.BUILD ├── tengine.BUILD └── zlib.BUILD /.bazelversion: -------------------------------------------------------------------------------- 1 | 3.7.2 2 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | Dockerfile 3 | -------------------------------------------------------------------------------- /docs/inferpipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/docs/inferpipe.png -------------------------------------------------------------------------------- /docs/retina_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/docs/retina_result.jpg -------------------------------------------------------------------------------- /docs/yolov5s_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/docs/yolov5s_result.jpg -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | Language: Cpp 3 | BasedOnStyle: Google 4 | ... 5 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/.github/ISSUE_TEMPLATE/90-question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Question 3 | about: Have a question? Ask us anything! :-) 4 | title: '' 5 | labels: 'question' 6 | assignees: '' 7 | --- 8 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enables: true 2 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/CMake/abslConfig.cmake.in: -------------------------------------------------------------------------------- 1 | # absl CMake configuration file. 2 | 3 | include(CMakeFindDependencyMacro) 4 | find_dependency(Threads) 5 | 6 | @PACKAGE_INIT@ 7 | 8 | include ("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake") 9 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/WORKSPACE: -------------------------------------------------------------------------------- 1 | workspace(name = "com_google_absl") 2 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/version: -------------------------------------------------------------------------------- 1 | 2020a 2 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Abidjan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Abidjan -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Accra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Accra -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Addis_Ababa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Addis_Ababa -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Algiers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Algiers -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Asmara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Asmara -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Asmera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Asmera -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Bamako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Bamako -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Bangui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Bangui -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Banjul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Banjul -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Bissau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Bissau -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Blantyre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Blantyre -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Brazzaville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Brazzaville -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Bujumbura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Bujumbura -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Cairo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Casablanca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Casablanca -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Ceuta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Ceuta -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Conakry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Conakry -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Dakar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Dakar -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Djibouti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Djibouti -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Douala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Douala -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/El_Aaiun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/El_Aaiun -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Freetown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Freetown -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Gaborone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Gaborone -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Harare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Harare -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Johannesburg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Johannesburg -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Juba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Juba -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Kampala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Kampala -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Khartoum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Khartoum -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Kigali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Kigali -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Kinshasa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Kinshasa -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lagos -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Libreville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Libreville -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lome -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Luanda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Luanda -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lubumbashi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lubumbashi -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lusaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Lusaka -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Malabo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Malabo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Maputo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Maputo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Maseru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Maseru -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Mbabane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Mbabane -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Mogadishu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Mogadishu -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Monrovia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Monrovia -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Nairobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Nairobi -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Ndjamena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Ndjamena -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Niamey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Niamey -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Nouakchott: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Nouakchott -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Ouagadougou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Ouagadougou -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Porto-Novo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Porto-Novo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Sao_Tome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Sao_Tome -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Timbuktu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Timbuktu -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Tripoli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Tripoli -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Tunis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Tunis -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Windhoek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Africa/Windhoek -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Adak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Adak -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Anchorage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Anchorage -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Anguilla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Anguilla -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Antigua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Antigua -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Araguaina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Araguaina -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Aruba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Aruba -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Asuncion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Asuncion -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Atikokan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Atikokan -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Atka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Atka -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Bahia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Bahia -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Barbados: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Barbados -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Belem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Belem -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Belize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Belize -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Boa_Vista: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Boa_Vista -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Bogota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Bogota -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Boise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Boise -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Cancun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Cancun -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Caracas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Caracas -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Catamarca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Catamarca -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Cayenne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Cayenne -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Cayman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Cayman -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Chicago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Chicago -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Chihuahua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Chihuahua -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Cordoba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Cordoba -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Costa_Rica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Costa_Rica -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Creston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Creston -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Cuiaba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Cuiaba -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Curacao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Curacao -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Dawson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Dawson -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Denver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Denver -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Detroit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Detroit -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Dominica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Dominica -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Edmonton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Edmonton -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Eirunepe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Eirunepe -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/El_Salvador: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/El_Salvador -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Ensenada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Ensenada -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Fort_Nelson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Fort_Nelson -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Fort_Wayne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Fort_Wayne -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Fortaleza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Fortaleza -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Glace_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Glace_Bay -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Godthab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Godthab -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Goose_Bay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Goose_Bay -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Grand_Turk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Grand_Turk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Grenada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Grenada -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Guadeloupe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Guadeloupe -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Guatemala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Guatemala -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Guayaquil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Guayaquil -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Guyana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Guyana -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Halifax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Halifax -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Havana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Havana -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Hermosillo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Hermosillo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Inuvik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Inuvik -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Iqaluit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Iqaluit -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Jamaica -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Jujuy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Jujuy -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Juneau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Juneau -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Knox_IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Knox_IN -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Kralendijk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Kralendijk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/La_Paz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/La_Paz -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Lima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Lima -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Los_Angeles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Los_Angeles -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Louisville: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Louisville -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Maceio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Maceio -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Managua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Managua -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Manaus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Manaus -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Marigot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Marigot -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Martinique: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Martinique -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Matamoros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Matamoros -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Mazatlan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Mazatlan -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Mendoza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Mendoza -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Menominee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Menominee -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Merida: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Merida -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Metlakatla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Metlakatla -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Mexico_City: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Mexico_City -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Miquelon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Miquelon -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Moncton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Moncton -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Monterrey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Monterrey -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Montevideo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Montevideo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Montreal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Montreal -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Montserrat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Montserrat -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Nassau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Nassau -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/New_York: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/New_York -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Nipigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Nipigon -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Nome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Nome -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Noronha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Noronha -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Nuuk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Nuuk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Ojinaga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Ojinaga -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Panama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Panama -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Pangnirtung: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Pangnirtung -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Paramaribo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Paramaribo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Phoenix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Phoenix -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Porto_Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Porto_Acre -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Porto_Velho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Porto_Velho -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Puerto_Rico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Puerto_Rico -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Rainy_River: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Rainy_River -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Recife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Recife -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Regina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Regina -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Resolute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Resolute -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Rio_Branco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Rio_Branco -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Rosario: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Rosario -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Santarem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Santarem -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Santiago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Santiago -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Sao_Paulo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Sao_Paulo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Shiprock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Shiprock -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Sitka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Sitka -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/St_Johns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/St_Johns -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/St_Kitts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/St_Kitts -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/St_Lucia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/St_Lucia -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/St_Thomas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/St_Thomas -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/St_Vincent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/St_Vincent -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Tegucigalpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Tegucigalpa -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Thule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Thule -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Tijuana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Tijuana -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Toronto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Toronto -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Tortola: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Tortola -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Vancouver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Vancouver -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Virgin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Virgin -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Winnipeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Winnipeg -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Yakutat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/America/Yakutat -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Casey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Casey -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Davis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Davis -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Mawson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Mawson -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Palmer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Palmer -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Syowa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Syowa -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Troll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Troll -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Vostok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Antarctica/Vostok -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aden -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Almaty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Almaty -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Amman -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Anadyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Anadyr -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aqtau -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aqtobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Aqtobe -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ashgabat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ashgabat -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ashkhabad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ashkhabad -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Atyrau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Atyrau -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Baghdad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Baghdad -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Bahrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Bahrain -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Baku -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Bangkok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Bangkok -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Barnaul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Barnaul -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Beirut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Beirut -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Bishkek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Bishkek -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Brunei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Brunei -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Calcutta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Calcutta -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Chita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Chita -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Choibalsan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Choibalsan -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Chongqing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Chongqing -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Chungking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Chungking -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Colombo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Colombo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dacca -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Damascus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Damascus -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dhaka -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dili -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dubai -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dushanbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Dushanbe -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Famagusta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Famagusta -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Gaza -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Harbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Harbin -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Hebron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Hebron -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ho_Chi_Minh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ho_Chi_Minh -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Hong_Kong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Hong_Kong -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Hovd -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Irkutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Irkutsk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Istanbul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Istanbul -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Jakarta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Jakarta -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Jayapura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Jayapura -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Jerusalem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Jerusalem -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kabul -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kamchatka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kamchatka -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Karachi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Karachi -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kashgar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kashgar -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kathmandu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kathmandu -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Katmandu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Katmandu -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Khandyga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Khandyga -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kolkata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kolkata -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Krasnoyarsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Krasnoyarsk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kuala_Lumpur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kuala_Lumpur -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kuching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kuching -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kuwait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Kuwait -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Macao -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Macau -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Magadan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Magadan -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Makassar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Makassar -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Manila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Manila -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Muscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Muscat -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Nicosia -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Novokuznetsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Novokuznetsk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Novosibirsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Novosibirsk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Omsk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Oral -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Phnom_Penh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Phnom_Penh -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Pontianak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Pontianak -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Pyongyang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Pyongyang -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Qatar -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Qostanay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Qostanay -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Qyzylorda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Qyzylorda -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Rangoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Rangoon -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Riyadh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Riyadh -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Saigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Saigon -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Sakhalin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Sakhalin -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Samarkand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Samarkand -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Seoul -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Shanghai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Shanghai -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Singapore -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Taipei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Taipei -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tashkent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tashkent -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tbilisi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tbilisi -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tehran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tehran -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tel_Aviv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tel_Aviv -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Thimbu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Thimbu -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Thimphu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Thimphu -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tokyo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tomsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Tomsk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ulaanbaatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ulaanbaatar -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ulan_Bator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ulan_Bator -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Urumqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Urumqi -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ust-Nera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Ust-Nera -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Vientiane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Vientiane -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Vladivostok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Vladivostok -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Yakutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Yakutsk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Yangon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Yangon -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Yerevan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Asia/Yerevan -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Azores: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Azores -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Bermuda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Bermuda -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Canary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Canary -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Faeroe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Faeroe -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Faroe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Faroe -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Madeira: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Madeira -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Stanley: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Atlantic/Stanley -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/ACT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/ACT -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/Currie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/Currie -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/Darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/Darwin -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/Eucla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/Eucla -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/Hobart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/Hobart -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/LHI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/LHI -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/NSW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/NSW -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/North: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/North -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/Perth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/Perth -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/South: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/South -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/Sydney: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/Sydney -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Australia/West -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Brazil/Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Brazil/Acre -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Brazil/DeNoronha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Brazil/DeNoronha -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Brazil/East: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Brazil/East -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Brazil/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Brazil/West -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/CET -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/CST6CDT -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Canada/Atlantic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Canada/Atlantic -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Canada/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Canada/Central -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Canada/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Canada/Eastern -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Canada/Mountain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Canada/Mountain -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Canada/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Canada/Pacific -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Canada/Yukon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Canada/Yukon -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Chile/Continental: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Chile/Continental -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Cuba -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/EET -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/EST -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/EST5EDT -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Egypt -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Eire -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+1 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+10 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+11 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+12 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+2 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+3 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+4 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+5 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+6 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+7 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+8 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT+9 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-1: -------------------------------------------------------------------------------- 1 | TZif2+01TZif2+01 2 | <+01>-1 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-10 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-11 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-12 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-13 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-14 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-2: -------------------------------------------------------------------------------- 1 | TZif2 +02TZif2 +02 2 | <+02>-2 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-3: -------------------------------------------------------------------------------- 1 | TZif2*0+03TZif2*0+03 2 | <+03>-3 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-4: -------------------------------------------------------------------------------- 1 | TZif28@+04TZif28@+04 2 | <+04>-4 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-5: -------------------------------------------------------------------------------- 1 | TZif2FP+05TZif2FP+05 2 | <+05>-5 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-6: -------------------------------------------------------------------------------- 1 | TZif2T`+06TZif2T`+06 2 | <+06>-6 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-7: -------------------------------------------------------------------------------- 1 | TZif2bp+07TZif2bp+07 2 | <+07>-7 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-8 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT-9 -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/GMT0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/Greenwich: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/UCT: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/UTC: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/Universal: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Etc/Zulu: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Amsterdam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Amsterdam -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Andorra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Andorra -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Astrakhan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Astrakhan -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Athens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Athens -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Belfast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Belfast -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Belgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Belgrade -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Berlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Berlin -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Bratislava: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Bratislava -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Brussels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Brussels -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Bucharest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Bucharest -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Budapest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Budapest -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Busingen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Busingen -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Chisinau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Chisinau -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Copenhagen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Copenhagen -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Dublin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Dublin -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Gibraltar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Gibraltar -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Guernsey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Guernsey -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Helsinki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Helsinki -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Istanbul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Istanbul -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Jersey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Jersey -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Kiev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Kiev -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Kirov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Kirov -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Lisbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Lisbon -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Ljubljana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Ljubljana -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/London: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/London -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Luxembourg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Luxembourg -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Madrid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Madrid -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Malta -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Mariehamn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Mariehamn -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Minsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Minsk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Monaco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Monaco -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Moscow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Moscow -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Nicosia -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Oslo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Oslo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Paris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Paris -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Podgorica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Podgorica -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Prague: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Prague -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Riga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Riga -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Rome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Rome -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Samara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Samara -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/San_Marino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/San_Marino -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Sarajevo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Sarajevo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Saratov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Saratov -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Simferopol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Simferopol -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Skopje: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Skopje -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Sofia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Sofia -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Stockholm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Stockholm -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Tallinn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Tallinn -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Tirane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Tirane -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Tiraspol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Tiraspol -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Ulyanovsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Ulyanovsk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Uzhgorod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Uzhgorod -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Vaduz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Vaduz -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Vatican: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Vatican -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Vienna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Vienna -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Vilnius: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Vilnius -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Volgograd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Volgograd -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Warsaw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Warsaw -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Zagreb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Zagreb -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Zaporozhye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Zaporozhye -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Zurich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Europe/Zurich -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Factory: -------------------------------------------------------------------------------- 1 | TZif2-00TZif2-00 2 | <-00>0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/GB -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/GB-Eire -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/GMT: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/GMT+0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/GMT-0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/GMT0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Greenwich: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/HST -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Hongkong -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Iceland -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Chagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Chagos -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Christmas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Christmas -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Cocos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Cocos -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Comoro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Comoro -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Kerguelen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Kerguelen -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Mahe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Mahe -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Maldives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Maldives -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Mauritius: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Mauritius -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Mayotte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Mayotte -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Reunion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Indian/Reunion -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Iran -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Israel -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Jamaica -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Japan -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Kwajalein -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Libya -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/MET -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/MST -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/MST7MDT -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Mexico/BajaNorte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Mexico/BajaNorte -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Mexico/BajaSur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Mexico/BajaSur -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Mexico/General: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Mexico/General -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/NZ -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/NZ-CHAT -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Navajo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/PRC -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/PST8PDT -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Apia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Apia -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Auckland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Auckland -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Chatham: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Chatham -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Chuuk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Chuuk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Easter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Easter -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Efate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Efate -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Enderbury: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Enderbury -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Fakaofo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Fakaofo -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Fiji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Fiji -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Funafuti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Funafuti -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Galapagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Galapagos -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Gambier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Gambier -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Guam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Guam -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Honolulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Honolulu -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Johnston: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Johnston -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Kosrae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Kosrae -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Kwajalein -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Majuro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Majuro -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Marquesas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Marquesas -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Midway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Midway -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Nauru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Nauru -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Niue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Niue -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Norfolk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Norfolk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Noumea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Noumea -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Pago_Pago: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Pago_Pago -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Palau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Palau -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Pitcairn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Pitcairn -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Pohnpei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Pohnpei -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Ponape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Ponape -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Rarotonga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Rarotonga -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Saipan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Saipan -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Samoa -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Tahiti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Tahiti -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Tarawa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Tarawa -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Tongatapu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Tongatapu -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Truk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Truk -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Wake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Wake -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Wallis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Wallis -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Yap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Pacific/Yap -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Poland -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Portugal -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/ROC -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/ROK -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Singapore -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Turkey -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/UCT: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Alaska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Alaska -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Aleutian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Aleutian -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Arizona: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Arizona -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Central -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/East-Indiana: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/East-Indiana -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Eastern -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Hawaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Hawaii -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Indiana-Starke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Indiana-Starke -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Michigan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Michigan -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Mountain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Mountain -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Pacific -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/US/Samoa -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/UTC: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Universal: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/W-SU -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/WET -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/Zulu: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/localtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/com_google_absl/absl/time/internal/cctz/testdata/zoneinfo/localtime -------------------------------------------------------------------------------- /examples/PersonDemo/models/retina_tengine_object_detection_labelmap.txt: -------------------------------------------------------------------------------- 1 | ??? 2 | person 3 | head 4 | healmet 5 | -------------------------------------------------------------------------------- /examples/PersonDemo/models/retinaface_multi.tmfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/models/retinaface_multi.tmfile -------------------------------------------------------------------------------- /examples/PersonDemo/models/retinaface_multi_uint8.tmfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/examples/PersonDemo/models/retinaface_multi_uint8.tmfile -------------------------------------------------------------------------------- /get_pbh.sh: -------------------------------------------------------------------------------- 1 | find ./bazel-bin/mediapipe/ -name '*.pb.h' |xargs tar -cvf media_pbh.tgz 2 | find ./mediapipe/ -name '*.h' | xargs tar -cvf media_h.tgz 3 | -------------------------------------------------------------------------------- /mediapipe/calculators/audio/testdata/sine_wave_1k_44100_mono_2_sec_wav.audio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/audio/testdata/sine_wave_1k_44100_mono_2_sec_wav.audio -------------------------------------------------------------------------------- /mediapipe/calculators/audio/testdata/sine_wave_1k_44100_stereo_2_sec_aac.audio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/audio/testdata/sine_wave_1k_44100_stereo_2_sec_aac.audio -------------------------------------------------------------------------------- /mediapipe/calculators/audio/testdata/sine_wave_1k_44100_stereo_2_sec_mp3.audio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/audio/testdata/sine_wave_1k_44100_stereo_2_sec_mp3.audio -------------------------------------------------------------------------------- /mediapipe/calculators/audio/testdata/sine_wave_1k_48000_stereo_2_sec_wav.audio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/audio/testdata/sine_wave_1k_48000_stereo_2_sec_wav.audio -------------------------------------------------------------------------------- /mediapipe/calculators/tensor/testdata/add.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/tensor/testdata/add.bin -------------------------------------------------------------------------------- /mediapipe/calculators/tensor/testdata/face_detection_expected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/tensor/testdata/face_detection_expected.png -------------------------------------------------------------------------------- /mediapipe/calculators/tensor/testdata/image_to_tensor/input.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/tensor/testdata/image_to_tensor/input.jpg -------------------------------------------------------------------------------- /mediapipe/calculators/tensor/testdata/image_to_tensor/large_sub_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/tensor/testdata/image_to_tensor/large_sub_rect.png -------------------------------------------------------------------------------- /mediapipe/calculators/tensor/testdata/image_to_tensor/large_sub_rect_border_zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/tensor/testdata/image_to_tensor/large_sub_rect_border_zero.png -------------------------------------------------------------------------------- /mediapipe/calculators/tensor/testdata/image_to_tensor/large_sub_rect_keep_aspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/tensor/testdata/image_to_tensor/large_sub_rect_keep_aspect.png -------------------------------------------------------------------------------- /mediapipe/calculators/tensor/testdata/image_to_tensor/medium_sub_rect_keep_aspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/tensor/testdata/image_to_tensor/medium_sub_rect_keep_aspect.png -------------------------------------------------------------------------------- /mediapipe/calculators/tensor/testdata/image_to_tensor/medium_sub_rect_with_rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/tensor/testdata/image_to_tensor/medium_sub_rect_with_rotation.png -------------------------------------------------------------------------------- /mediapipe/calculators/tensor/testdata/image_to_tensor/noop_except_range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/tensor/testdata/image_to_tensor/noop_except_range.png -------------------------------------------------------------------------------- /mediapipe/calculators/tensor/testdata/labelmap.txt: -------------------------------------------------------------------------------- 1 | classA 2 | classB 3 | classC 4 | -------------------------------------------------------------------------------- /mediapipe/calculators/video/testdata/lenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/calculators/video/testdata/lenna.png -------------------------------------------------------------------------------- /mediapipe/docs/autoflip.md: -------------------------------------------------------------------------------- 1 | Content moved to 2 | [AutoFlip: Saliency-aware Video Cropping](https://google.github.io/mediapipe/solutions/autoflip) 3 | -------------------------------------------------------------------------------- /mediapipe/docs/face_detection_desktop.md: -------------------------------------------------------------------------------- 1 | Content moved to 2 | [MediaPipe Face Detection](https://google.github.io/mediapipe/solutions/face_detection) 3 | -------------------------------------------------------------------------------- /mediapipe/docs/face_detection_mobile_gpu.md: -------------------------------------------------------------------------------- 1 | Content moved to 2 | [MediaPipe Face Detection](https://google.github.io/mediapipe/solutions/face_detection) 3 | -------------------------------------------------------------------------------- /mediapipe/docs/hair_segmentation_mobile_gpu.md: -------------------------------------------------------------------------------- 1 | Content moved to 2 | [MediaPipe Hair Segmentation](https://google.github.io/mediapipe/solutions/hair_segmentation) 3 | -------------------------------------------------------------------------------- /mediapipe/docs/hand_tracking_desktop.md: -------------------------------------------------------------------------------- 1 | Content moved to [MediaPipe Hands](https://google.github.io/mediapipe/solutions/hands) 2 | -------------------------------------------------------------------------------- /mediapipe/docs/hand_tracking_mobile_gpu.md: -------------------------------------------------------------------------------- 1 | Content moved to [MediaPipe Hands](https://google.github.io/mediapipe/solutions/hands) 2 | -------------------------------------------------------------------------------- /mediapipe/docs/multi_hand_tracking_mobile_gpu.md: -------------------------------------------------------------------------------- 1 | Content moved to [MediaPipe Hands](https://google.github.io/mediapipe/solutions/hands) 2 | -------------------------------------------------------------------------------- /mediapipe/docs/object_detection_desktop.md: -------------------------------------------------------------------------------- 1 | Content moved to 2 | [MediaPipe Object Detection](https://google.github.io/mediapipe/solutions/object_detection) 3 | -------------------------------------------------------------------------------- /mediapipe/docs/object_detection_mobile_gpu.md: -------------------------------------------------------------------------------- 1 | Content moved to 2 | [MediaPipe Object Detection](https://google.github.io/mediapipe/solutions/object_detection) 3 | -------------------------------------------------------------------------------- /mediapipe/docs/object_tracking_mobile_gpu.md: -------------------------------------------------------------------------------- 1 | Content moved to 2 | [MediaPipe Box Tracking](https://google.github.io/mediapipe/solutions/box_tracking) 3 | -------------------------------------------------------------------------------- /mediapipe/docs/objectron_mobile_gpu.md: -------------------------------------------------------------------------------- 1 | Content moved to 2 | [MediaPipe Objectron](https://google.github.io/mediapipe/solutions/objectron) 3 | -------------------------------------------------------------------------------- /mediapipe/docs/template_matching_mobile_cpu.md: -------------------------------------------------------------------------------- 1 | Content moved to 2 | [MediaPipe KNIFT](https://google.github.io/mediapipe/solutions/knift) 3 | -------------------------------------------------------------------------------- /mediapipe/examples/desktop/README.md: -------------------------------------------------------------------------------- 1 | This directory contains MediaPipe example applications for desktop. Please see [Solutions](https://solutions.mediapipe.dev)for details. 2 | -------------------------------------------------------------------------------- /mediapipe/framework/api2/node.cc: -------------------------------------------------------------------------------- 1 | #include "mediapipe/framework/api2/node.h" 2 | 3 | namespace mediapipe { 4 | namespace api2 { 5 | 6 | Node::~Node() {} 7 | 8 | } // namespace api2 9 | } // namespace mediapipe 10 | -------------------------------------------------------------------------------- /mediapipe/framework/port/re2.h: -------------------------------------------------------------------------------- 1 | #ifndef MEDIAPIPE_FRAMEWORK_PORT_RE2_H_ 2 | #define MEDIAPIPE_FRAMEWORK_PORT_RE2_H_ 3 | 4 | #include "mediapipe/framework/deps/re2.h" 5 | 6 | #endif // MEDIAPIPE_FRAMEWORK_PORT_RE2_H_ 7 | -------------------------------------------------------------------------------- /mediapipe/framework/tool/testdata/test.pbtxt: -------------------------------------------------------------------------------- 1 | node { 2 | calculator: "PassThroughCalculator" 3 | input_stream: "in" 4 | output_stream: "out" 5 | } 6 | -------------------------------------------------------------------------------- /mediapipe/models/yolov5_object_detection_labelmap.txt: -------------------------------------------------------------------------------- 1 | ??? 2 | person 3 | head 4 | healmet 5 | -------------------------------------------------------------------------------- /mediapipe/objc/testdata/googlelogo_color_272x92dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/objc/testdata/googlelogo_color_272x92dp.png -------------------------------------------------------------------------------- /mediapipe/objc/testdata/googlelogo_color_272x92dp_luminance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/objc/testdata/googlelogo_color_272x92dp_luminance.png -------------------------------------------------------------------------------- /mediapipe/objc/testdata/sergey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/objc/testdata/sergey.png -------------------------------------------------------------------------------- /mediapipe/objc/testdata/sobel_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OAID/TengineInferPipe/a125cacc8781bafcc6c3da5d16a07066201af88d/mediapipe/objc/testdata/sobel_reference.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | absl-py 2 | attrs>=19.1.0 3 | numpy 4 | opencv-contrib-python 5 | protobuf>=3.11.4 6 | six 7 | wheel 8 | -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/Cholesky: -------------------------------------------------------------------------------- 1 | #include "Eigen/Cholesky" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/Core: -------------------------------------------------------------------------------- 1 | #include "Eigen/Core" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/Eigenvalues: -------------------------------------------------------------------------------- 1 | #include "Eigen/Eigenvalues" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/LU: -------------------------------------------------------------------------------- 1 | #include "Eigen/LU" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/OrderingMethods: -------------------------------------------------------------------------------- 1 | #include "Eigen/OrderingMethods" -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/QR: -------------------------------------------------------------------------------- 1 | #include "Eigen/QR" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/SVD: -------------------------------------------------------------------------------- 1 | #include "Eigen/SVD" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/SparseCholesky: -------------------------------------------------------------------------------- 1 | #include "Eigen/SparseCholesky" -------------------------------------------------------------------------------- /third_party/eigen3/Eigen/SparseCore: -------------------------------------------------------------------------------- 1 | #include "Eigen/SparseCore" -------------------------------------------------------------------------------- /third_party/eigen3/unsupported/Eigen/CXX11/Tensor: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/CXX11/Tensor" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/unsupported/Eigen/CXX11/ThreadPool: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/CXX11/ThreadPool" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/unsupported/Eigen/MatrixFunctions: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/MatrixFunctions" 2 | -------------------------------------------------------------------------------- /third_party/eigen3/unsupported/Eigen/SpecialFunctions: -------------------------------------------------------------------------------- 1 | #include "unsupported/Eigen/SpecialFunctions" 2 | -------------------------------------------------------------------------------- /third_party/glog_no_gflags.BUILD: -------------------------------------------------------------------------------- 1 | licenses(["notice"]) 2 | 3 | load(":bazel/glog.bzl", "glog_library") 4 | 5 | # gflags is not needed on mobile platforms, and tried to link in 6 | # -lpthread, which breaks Android builds. 7 | # TODO: upstream. 8 | glog_library(with_gflags = 0) 9 | --------------------------------------------------------------------------------